Skip to content

Commit e231db9

Browse files
Releasing version 2.72.0
Releasing version 2.72.0
2 parents 8d42b29 + e403644 commit e231db9

File tree

33,393 files changed

+1954526
-122173
lines changed

Some content is hidden

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

33,393 files changed

+1954526
-122173
lines changed

ApacheConnector-README.md

+7
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,13 @@ Note : If both the above Apache Connection closing strategies do not give you op
199199
An example can be found [here](https://github.com/oracle/oci-java-sdk/tree/master/bmc-examples/src/main/java/ApacheConnectorPropertiesExample.java "here")
200200

201201
## More info
202+
203+
### Idle connection monitor thread to evict idle and expired connections
204+
The SDK since version `2.66.2` by default enables an idle connection monitor thread to evict idle and expired connections in the Apache Connector. More details can be found [here](https://hc.apache.org/httpcomponents-client-4.5.x/current/tutorial/html/connmgmt.html) With this change we have also enabled connection reuse which fixes a performance regression caused in version `2.14.1`. Link to the detailed issue can be found [here](https://github.com/oracle/oci-java-sdk/issues/378). To disable the idle connection monitor thread, set the system property `oci.javasdk.apache.idle.connection.monitor.thread.enabled` to `false`. You can also configure the idle connection monitor thread by following this [example](https://github.com/oracle/oci-java-sdk/tree/master/bmc-other-examples/bmc-jersey-examples/src/main/java/ConfigureApacheIdleConnectionMonitorExample.java)
205+
206+
Note : Disabling connection monitor thread by changing the system property disables the connection reuse
207+
208+
202209

203210
### Disabling extra logs related to streams
204211
The SDK emits warnings related to streams when an API that returns streams in its response is called. To disable the logs around streams, you can set

CHANGELOG.md

+647
Large diffs are not rendered by default.

bmc-accessgovernancecp/pom.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,19 @@
44
<parent>
55
<groupId>com.oracle.oci.sdk</groupId>
66
<artifactId>oci-java-sdk</artifactId>
7-
<version>2.66.0</version>
7+
<version>2.72.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-accessgovernancecp</artifactId>
1111
<name>Oracle Cloud Infrastructure SDK - Access Governance Cp</name>
1212
<description>This project contains the SDK used for Oracle Cloud Infrastructure Access Governance Cp</description>
1313
<url>https://docs.cloud.oracle.com/Content/API/SDKDocs/javasdk.htm</url>
14+
1415
<dependencies>
1516
<dependency>
1617
<groupId>com.oracle.oci.sdk</groupId>
1718
<artifactId>oci-java-sdk-common</artifactId>
18-
<version>2.66.0</version>
19+
<version>2.72.0</version>
1920
</dependency>
2021
</dependencies>
2122
</project>

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCP.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPAsync.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPAsyncClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPClient.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp;
@@ -431,7 +431,8 @@ public AccessGovernanceCPClient build(
431431
signingStrategyRequestSignerFactories,
432432
additionalClientConfigurators,
433433
endpoint,
434-
executorService);
434+
executorService,
435+
restClientFactoryBuilder);
435436
}
436437
}
437438

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPPaginators.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPWaiters.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/SdkClientsMetadata.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/internal/http/ChangeGovernanceInstanceCompartmentConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.internal.http;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/internal/http/CreateGovernanceInstanceConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.internal.http;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/internal/http/DeleteGovernanceInstanceConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.internal.http;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/internal/http/GetGovernanceInstanceConfigurationConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.internal.http;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/internal/http/GetGovernanceInstanceConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.internal.http;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/internal/http/ListGovernanceInstancesConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.internal.http;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/internal/http/UpdateGovernanceInstanceConfigurationConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.internal.http;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/internal/http/UpdateGovernanceInstanceConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.internal.http;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/ChangeGovernanceInstanceCompartmentDetails.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/CreateGovernanceInstanceDetails.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstance.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceCollection.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceSummary.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/InstanceLifecycleState.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/LicenseType.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/SenderConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/SortOrder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateGovernanceInstanceConfigurationDetails.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateGovernanceInstanceDetails.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateSenderConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.model;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/ChangeGovernanceInstanceCompartmentRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.requests;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/CreateGovernanceInstanceRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.requests;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/DeleteGovernanceInstanceRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.requests;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/GetGovernanceInstanceConfigurationRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.requests;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/GetGovernanceInstanceRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.requests;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/ListGovernanceInstancesRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.requests;

bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/UpdateGovernanceInstanceConfigurationRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
33
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44
*/
55
package com.oracle.bmc.accessgovernancecp.requests;

0 commit comments

Comments
 (0)