Skip to content

Commit 666ab76

Browse files
committed
Releasing version 1.9.0
1 parent 1190d44 commit 666ab76

File tree

252 files changed

+4805
-697
lines changed

Some content is hidden

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

252 files changed

+4805
-697
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22
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/).
5+
## 1.9.0 - 2019-10-08
6+
### Added
7+
- Support for the new schema for events in the Audit service
8+
- Support for entitlements in the Data Transfer service
9+
- Support for custom scheduled backup policies on volumes in the Block Storage service
10+
- Support for specifying the network type when launching virtual machine instances in the Compute service
11+
- Support for Monitoring service integration in the Health Checks service
12+
13+
### Breaking changes
14+
- For `com.oracle.bmc.dts.model.TransferApplianceEntitlement`:
15+
- The `Status` enum has been removed and replaced with `LifecycleState`
16+
- The `tenantId` parameter has been renamed as `id`
17+
- The `eTag` parameter has been removed from `com.oracle.bmc.healthchecks.responses.ChangeHttpMonitorCompartmentResponse`
18+
- The Audit service version to support the new schema was increased to 20190901. Older versions of the SDK (< 1.9.0) will continue to function to support Audit service version 20160918
19+
520
## 1.8.2 - 2019-10-01
621
### Added
722
- Support for required tags in the Identity service

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

Lines changed: 2 additions & 2 deletions
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>1.8.2</version>
8+
<version>1.9.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>com.oracle.oci.sdk</groupId>
4848
<artifactId>oci-java-sdk-common</artifactId>
49-
<version>1.8.2</version>
49+
<version>1.9.0</version>
5050
</dependency>
5151

5252
<!-- Explicitly pull in this version of httpclient and its httpcore dependency to address:

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

Lines changed: 2 additions & 2 deletions
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>1.8.2</version>
8+
<version>1.9.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -36,7 +36,7 @@
3636
<dependency>
3737
<groupId>com.oracle.oci.sdk</groupId>
3838
<artifactId>oci-java-sdk-common</artifactId>
39-
<version>1.8.2</version>
39+
<version>1.9.0</version>
4040
</dependency>
4141
</dependencies>
4242
</project>

bmc-addons/pom.xml

Lines changed: 1 addition & 1 deletion
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>1.8.2</version>
8+
<version>1.9.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

bmc-announcementsservice/pom.xml

Lines changed: 2 additions & 2 deletions
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>1.8.2</version>
7+
<version>1.9.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-announcementsservice</artifactId>
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>com.oracle.oci.sdk</groupId>
1919
<artifactId>oci-java-sdk-common</artifactId>
20-
<version>1.8.2</version>
20+
<version>1.9.0</version>
2121
</dependency>
2222
</dependencies>
2323
</project>

bmc-audit/pom.xml

Lines changed: 2 additions & 2 deletions
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>1.8.2</version>
8+
<version>1.9.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>com.oracle.oci.sdk</groupId>
2121
<artifactId>oci-java-sdk-common</artifactId>
22-
<version>1.8.2</version>
22+
<version>1.9.0</version>
2323
</dependency>
2424
</dependencies>
2525

bmc-audit/src/main/java/com/oracle/bmc/audit/Audit.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import com.oracle.bmc.audit.requests.*;
77
import com.oracle.bmc.audit.responses.*;
88

9-
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20160918")
9+
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190901")
1010
public interface Audit extends AutoCloseable {
1111

1212
/**
@@ -45,7 +45,9 @@ public interface Audit extends AutoCloseable {
4545
GetConfigurationResponse getConfiguration(GetConfigurationRequest request);
4646

4747
/**
48-
* Returns all audit events for the specified compartment that were processed within the specified time range.
48+
* Returns all the audit events processed for the specified compartment within the specified
49+
* time range.
50+
*
4951
* @param request The request object containing the details to send
5052
* @return A response object containing details about the completed operation
5153
* @throws BmcException when an error occurs.

bmc-audit/src/main/java/com/oracle/bmc/audit/AuditAsync.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import com.oracle.bmc.audit.requests.*;
77
import com.oracle.bmc.audit.responses.*;
88

9-
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20160918")
9+
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190901")
1010
public interface AuditAsync extends AutoCloseable {
1111

1212
/**
@@ -52,7 +52,9 @@ java.util.concurrent.Future<GetConfigurationResponse> getConfiguration(
5252
handler);
5353

5454
/**
55-
* Returns all audit events for the specified compartment that were processed within the specified time range.
55+
* Returns all the audit events processed for the specified compartment within the specified
56+
* time range.
57+
*
5658
*
5759
* @param request The request object containing the details to send
5860
* @param handler The request handler to invoke upon completion, may be null.

bmc-audit/src/main/java/com/oracle/bmc/audit/AuditAsyncClient.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* Future.isDone/isCancelled.<br/>
2222
* Please refer to https://github.com/oracle/oci-java-sdk/blob/master/bmc-examples/src/main/java/ResteasyClientWithObjectStorageExample.java
2323
*/
24-
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20160918")
24+
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190901")
2525
@lombok.extern.slf4j.Slf4j
2626
public class AuditAsyncClient implements AuditAsync {
2727
/**
@@ -31,6 +31,7 @@ public class AuditAsyncClient implements AuditAsync {
3131
com.oracle.bmc.Services.serviceBuilder()
3232
.serviceName("AUDIT")
3333
.serviceEndpointPrefix("audit")
34+
.serviceEndpointTemplate("https://audit.{region}.oraclecloud.com")
3435
.build();
3536

3637
@lombok.Getter(value = lombok.AccessLevel.PACKAGE)

bmc-audit/src/main/java/com/oracle/bmc/audit/AuditClient.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import com.oracle.bmc.audit.requests.*;
99
import com.oracle.bmc.audit.responses.*;
1010

11-
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20160918")
11+
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190901")
1212
@lombok.extern.slf4j.Slf4j
1313
public class AuditClient implements Audit {
1414
/**
@@ -18,6 +18,7 @@ public class AuditClient implements Audit {
1818
com.oracle.bmc.Services.serviceBuilder()
1919
.serviceName("AUDIT")
2020
.serviceEndpointPrefix("audit")
21+
.serviceEndpointTemplate("https://audit.{region}.oraclecloud.com")
2122
.build();
2223
// attempt twice if it's instance principals, immediately failures will try to refresh the token
2324
private static final int MAX_IMMEDIATE_RETRIES_IF_USING_INSTANCE_PRINCIPALS = 2;

0 commit comments

Comments
 (0)