Skip to content

Commit 8c227ab

Browse files
committed
Releasing version 2.15.0
1 parent a1fed71 commit 8c227ab

File tree

295 files changed

+14290
-830
lines changed

Some content is hidden

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

295 files changed

+14290
-830
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/).
55

6+
## 2.15.0 - 2022-02-08
7+
### Added
8+
- Support for managing tablespaces in the Database Management service
9+
- Support for upgrading and managing payment for subscriptions in the Account Management service
10+
- Support for listing fast launch job configurations in the Data Science service
11+
12+
### Breaking Changes
13+
- Support for retries enabled by default on all operations in the Application Performance Monitoring service
14+
- Class `com.oracle.bmc.ospgateway.model.Address` has been removed from the Account Management service
15+
- Return type of the method `com.oracle.bmc.ospgateway.model.Address getBillToAddress()` has been changed to `com.oracle.bmc.ospgateway.model.BillToAddress` in the model `com.oracle.bmc.ospgateway.model.Invoice` in the Account Management service
16+
617
## 2.14.1 - 2022-02-01
718
### Added
819
- Support for calling Oracle Cloud Infrastructure services in the ap-dcc-canberra-1 region

bmc-addons/bmc-apache-connector-provider/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.oracle.oci.sdk</groupId>
66
<artifactId>oci-java-sdk-addons</artifactId>
7-
<version>2.14.1</version>
7+
<version>2.15.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>com.oracle.oci.sdk</groupId>
2020
<artifactId>oci-java-sdk-common</artifactId>
21-
<version>2.14.1</version>
21+
<version>2.15.0</version>
2222
</dependency>
2323
</dependencies>
2424
</project>

bmc-addons/bmc-resteasy-client-configurator/pom.xml

+4-8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.oracle.oci.sdk</groupId>
77
<artifactId>oci-java-sdk-addons</artifactId>
8-
<version>2.14.1</version>
8+
<version>2.15.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -14,23 +14,19 @@
1414
<description>This project adds support for the RestEasyClientConfigurator for the Java SDK</description>
1515
<url>https://docs.cloud.oracle.com/Content/API/SDKDocs/javasdk.htm</url>
1616

17-
<properties>
18-
<resteasy.version>3.15.1.Final</resteasy.version>
19-
</properties>
20-
2117

2218
<dependencies>
2319
<!-- https://mvnrepository.com/artifact/org.jboss.resteasy/resteasy-client -->
2420
<dependency>
2521
<groupId>org.jboss.resteasy</groupId>
2622
<artifactId>resteasy-client</artifactId>
27-
<version>${resteasy.version}</version>
23+
<version>4.5.7.Final</version>
2824
</dependency>
2925

3026
<dependency>
3127
<groupId>org.jboss.resteasy</groupId>
3228
<artifactId>resteasy-jaxrs</artifactId>
33-
<version>${resteasy.version}</version>
29+
<version>3.15.1.Final</version>
3430
</dependency>
3531

3632
<!-- Resteasy-JaxRs transitive dependencies that are resolved to a newer version to fix
@@ -44,7 +40,7 @@
4440
<dependency>
4541
<groupId>com.oracle.oci.sdk</groupId>
4642
<artifactId>oci-java-sdk-common</artifactId>
47-
<version>2.14.1</version>
43+
<version>2.15.0</version>
4844
</dependency>
4945
</dependencies>
5046
</project>

bmc-addons/bmc-sasl/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>oci-java-sdk-addons</artifactId>
99
<groupId>com.oracle.oci.sdk</groupId>
10-
<version>2.14.1</version>
10+
<version>2.15.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

@@ -57,12 +57,12 @@
5757
<dependency>
5858
<groupId>com.google.protobuf</groupId>
5959
<artifactId>protobuf-java</artifactId>
60-
<version>3.11.1</version>
60+
<version>3.16.1</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>com.oracle.oci.sdk</groupId>
6464
<artifactId>oci-java-sdk-common</artifactId>
65-
<version>2.14.1</version>
65+
<version>2.15.0</version>
6666
</dependency>
6767
</dependencies>
6868

bmc-addons/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.oracle.oci.sdk</groupId>
77
<artifactId>oci-java-sdk</artifactId>
8-
<version>2.14.1</version>
8+
<version>2.15.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

bmc-aianomalydetection/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.oracle.oci.sdk</groupId>
66
<artifactId>oci-java-sdk</artifactId>
7-
<version>2.14.1</version>
7+
<version>2.15.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-aianomalydetection</artifactId>
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.oracle.oci.sdk</groupId>
1717
<artifactId>oci-java-sdk-common</artifactId>
18-
<version>2.14.1</version>
18+
<version>2.15.0</version>
1919
</dependency>
2020
</dependencies>
2121
</project>

bmc-ailanguage/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.oracle.oci.sdk</groupId>
66
<artifactId>oci-java-sdk</artifactId>
7-
<version>2.14.1</version>
7+
<version>2.15.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-ailanguage</artifactId>
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.oracle.oci.sdk</groupId>
1717
<artifactId>oci-java-sdk-common</artifactId>
18-
<version>2.14.1</version>
18+
<version>2.15.0</version>
1919
</dependency>
2020
</dependencies>
2121
</project>

bmc-analytics/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.oracle.oci.sdk</groupId>
66
<artifactId>oci-java-sdk</artifactId>
7-
<version>2.14.1</version>
7+
<version>2.15.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-analytics</artifactId>
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>com.oracle.oci.sdk</groupId>
1919
<artifactId>oci-java-sdk-common</artifactId>
20-
<version>2.14.1</version>
20+
<version>2.15.0</version>
2121
</dependency>
2222
</dependencies>
2323
</project>

bmc-announcementsservice/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.oracle.oci.sdk</groupId>
66
<artifactId>oci-java-sdk</artifactId>
7-
<version>2.14.1</version>
7+
<version>2.15.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-announcementsservice</artifactId>
@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>com.oracle.oci.sdk</groupId>
2020
<artifactId>oci-java-sdk-common</artifactId>
21-
<version>2.14.1</version>
21+
<version>2.15.0</version>
2222
</dependency>
2323
</dependencies>
2424
</project>

bmc-apigateway/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.oracle.oci.sdk</groupId>
66
<artifactId>oci-java-sdk</artifactId>
7-
<version>2.14.1</version>
7+
<version>2.15.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-apigateway</artifactId>
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>com.oracle.oci.sdk</groupId>
1919
<artifactId>oci-java-sdk-common</artifactId>
20-
<version>2.14.1</version>
20+
<version>2.15.0</version>
2121
</dependency>
2222
</dependencies>
2323
</project>

bmc-apmconfig/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.oracle.oci.sdk</groupId>
66
<artifactId>oci-java-sdk</artifactId>
7-
<version>2.14.1</version>
7+
<version>2.15.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-apmconfig</artifactId>
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.oracle.oci.sdk</groupId>
1717
<artifactId>oci-java-sdk-common</artifactId>
18-
<version>2.14.1</version>
18+
<version>2.15.0</version>
1919
</dependency>
2020
</dependencies>
2121
</project>

bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/Config.java

+13-11
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
import com.oracle.bmc.apmconfig.responses.*;
99

1010
/**
11-
* An API for the APM Configuration service. Use this API to query and set APM configuration.
11+
* Use the Application Performance Monitoring Configuration API to query and set Application Performance Monitoring
12+
* configuration. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
13+
*
1214
* This service client uses CircuitBreakerUtils.DEFAULT_CIRCUIT_BREAKER for all the operations by default if no circuit breaker configuration is defined by the user.
1315
*/
1416
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210201")
@@ -47,59 +49,59 @@ public interface Config extends AutoCloseable {
4749
void setRegion(String regionId);
4850

4951
/**
50-
* Creates a new Configuration item.
52+
* Creates a new configuration item.
5153
* @param request The request object containing the details to send
5254
* @return A response object containing details about the completed operation
5355
* @throws BmcException when an error occurs.
54-
* This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it.
56+
* This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided.
5557
* 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
5658
*
5759
* <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/apmconfig/CreateConfigExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use CreateConfig API.
5860
*/
5961
CreateConfigResponse createConfig(CreateConfigRequest request);
6062

6163
/**
62-
* Deletes the specified configuration item
64+
* Deletes the configuration item identified by the OCID.
6365
* @param request The request object containing the details to send
6466
* @return A response object containing details about the completed operation
6567
* @throws BmcException when an error occurs.
66-
* This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it.
68+
* This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided.
6769
* 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
6870
*
6971
* <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/apmconfig/DeleteConfigExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use DeleteConfig API.
7072
*/
7173
DeleteConfigResponse deleteConfig(DeleteConfigRequest request);
7274

7375
/**
74-
* Get the configuration of the item identified by the OCID.
76+
* Gets the configuration item identified by the OCID.
7577
* @param request The request object containing the details to send
7678
* @return A response object containing details about the completed operation
7779
* @throws BmcException when an error occurs.
78-
* This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it.
80+
* This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided.
7981
* 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
8082
*
8183
* <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/apmconfig/GetConfigExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use GetConfig API.
8284
*/
8385
GetConfigResponse getConfig(GetConfigRequest request);
8486

8587
/**
86-
* Returns all configured items optionally filtered by configuration type
88+
* Returns all configuration items, which can optionally be filtered by configuration type.
8789
* @param request The request object containing the details to send
8890
* @return A response object containing details about the completed operation
8991
* @throws BmcException when an error occurs.
90-
* This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it.
92+
* This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided.
9193
* 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
9294
*
9395
* <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/apmconfig/ListConfigsExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use ListConfigs API.
9496
*/
9597
ListConfigsResponse listConfigs(ListConfigsRequest request);
9698

9799
/**
98-
* Updates the item.
100+
* Updates the details of the configuration item identified by the OCID.
99101
* @param request The request object containing the details to send
100102
* @return A response object containing details about the completed operation
101103
* @throws BmcException when an error occurs.
102-
* This operation will not retry by default, users can also use RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION provided by the SDK to enable retries for it.
104+
* This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided.
103105
* 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
104106
*
105107
* <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/apmconfig/UpdateConfigExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use UpdateConfig API.

bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigAsync.java

+8-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
import com.oracle.bmc.apmconfig.responses.*;
99

1010
/**
11-
* An API for the APM Configuration service. Use this API to query and set APM configuration.
11+
* Use the Application Performance Monitoring Configuration API to query and set Application Performance Monitoring
12+
* configuration. For more information, see [Application Performance Monitoring](https://docs.oracle.com/iaas/application-performance-monitoring/index.html).
13+
*
1214
*/
1315
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210201")
1416
public interface ConfigAsync extends AutoCloseable {
@@ -46,7 +48,7 @@ public interface ConfigAsync extends AutoCloseable {
4648
void setRegion(String regionId);
4749

4850
/**
49-
* Creates a new Configuration item.
51+
* Creates a new configuration item.
5052
*
5153
* @param request The request object containing the details to send
5254
* @param handler The request handler to invoke upon completion, may be null.
@@ -61,7 +63,7 @@ java.util.concurrent.Future<CreateConfigResponse> createConfig(
6163
handler);
6264

6365
/**
64-
* Deletes the specified configuration item
66+
* Deletes the configuration item identified by the OCID.
6567
*
6668
* @param request The request object containing the details to send
6769
* @param handler The request handler to invoke upon completion, may be null.
@@ -76,7 +78,7 @@ java.util.concurrent.Future<DeleteConfigResponse> deleteConfig(
7678
handler);
7779

7880
/**
79-
* Get the configuration of the item identified by the OCID.
81+
* Gets the configuration item identified by the OCID.
8082
*
8183
* @param request The request object containing the details to send
8284
* @param handler The request handler to invoke upon completion, may be null.
@@ -90,7 +92,7 @@ java.util.concurrent.Future<GetConfigResponse> getConfig(
9092
com.oracle.bmc.responses.AsyncHandler<GetConfigRequest, GetConfigResponse> handler);
9193

9294
/**
93-
* Returns all configured items optionally filtered by configuration type
95+
* Returns all configuration items, which can optionally be filtered by configuration type.
9496
*
9597
* @param request The request object containing the details to send
9698
* @param handler The request handler to invoke upon completion, may be null.
@@ -104,7 +106,7 @@ java.util.concurrent.Future<ListConfigsResponse> listConfigs(
104106
com.oracle.bmc.responses.AsyncHandler<ListConfigsRequest, ListConfigsResponse> handler);
105107

106108
/**
107-
* Updates the item.
109+
* Updates the details of the configuration item identified by the OCID.
108110
*
109111
* @param request The request object containing the details to send
110112
* @param handler The request handler to invoke upon completion, may be null.

0 commit comments

Comments
 (0)