Skip to content

Commit 964d7e1

Browse files
authored
Releasing version 1.23.3
Releasing version 1.23.3
2 parents 1cf984a + e30b6b9 commit 964d7e1

File tree

429 files changed

+4814
-411
lines changed

Some content is hidden

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

429 files changed

+4814
-411
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ 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+
## 1.23.3 - 2020-09-22
7+
### Added
8+
- Support for software keys in the Key Management service
9+
- Support for customer contacts on Exadata Cloud at Customer in the Database service
10+
- Support for updating open modes and permission levels of autonomous databases in the Database service
11+
- Support for flexible memory on VM instances in the Compute and Compute Management services
12+
613
## 1.23.2 - 2020-09-15
714
### Added
815
- Support for the Cloud Guard service

bmc-addons/bmc-apache-connector-provider/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-addons</artifactId>
7-
<version>1.23.2</version>
7+
<version>1.23.3</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>com.oracle.oci.sdk</groupId>
4444
<artifactId>oci-java-sdk-common</artifactId>
45-
<version>1.23.2</version>
45+
<version>1.23.3</version>
4646
</dependency>
4747

4848
<!-- 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.23.2</version>
8+
<version>1.23.3</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.23.2</version>
39+
<version>1.23.3</version>
4040
</dependency>
4141
</dependencies>
4242
</project>

bmc-addons/bmc-sasl/pom.xml

Lines changed: 2 additions & 2 deletions
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>1.23.2</version>
10+
<version>1.23.3</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>com.oracle.oci.sdk</groupId>
6363
<artifactId>oci-java-sdk-common</artifactId>
64-
<version>1.23.2</version>
64+
<version>1.23.3</version>
6565
</dependency>
6666
</dependencies>
6767

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.23.2</version>
8+
<version>1.23.3</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

bmc-analytics/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.23.2</version>
7+
<version>1.23.3</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-analytics</artifactId>
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.oracle.oci.sdk</groupId>
1717
<artifactId>oci-java-sdk-common</artifactId>
18-
<version>1.23.2</version>
18+
<version>1.23.3</version>
1919
</dependency>
2020
</dependencies>
2121
</project>

bmc-analytics/src/main/java/com/oracle/bmc/analytics/Analytics.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ public interface Analytics extends AutoCloseable {
2020
*/
2121
void setEndpoint(String endpoint);
2222

23+
/**
24+
* Gets the set endpoint for REST call (ex, https://www.example.com)
25+
*/
26+
String getEndpoint();
27+
2328
/**
2429
* Sets the region to call (ex, Region.US_PHOENIX_1).
2530
* <p>

bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsAsync.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ public interface AnalyticsAsync extends AutoCloseable {
2020
*/
2121
void setEndpoint(String endpoint);
2222

23+
/**
24+
* Gets the set endpoint for REST call (ex, https://www.example.com)
25+
*/
26+
String getEndpoint();
27+
2328
/**
2429
* Sets the region to call (ex, Region.US_PHOENIX_1).
2530
* <p>

bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsAsyncClient.java

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,11 +193,11 @@ public AnalyticsAsyncClient(
193193
this.authenticationDetailsProvider)
194194
.getClientConfigurators());
195195
}
196+
additionalClientConfigurators.addAll(authenticationDetailsConfigurators);
196197
com.oracle.bmc.http.internal.RestClientFactory restClientFactory =
197198
com.oracle.bmc.http.internal.RestClientFactoryBuilder.builder()
198199
.clientConfigurator(clientConfigurator)
199200
.additionalClientConfigurators(additionalClientConfigurators)
200-
.additionalClientConfigurators(authenticationDetailsConfigurators)
201201
.build();
202202
com.oracle.bmc.http.signing.RequestSigner defaultRequestSigner =
203203
defaultRequestSignerFactory.createRequestSigner(
@@ -284,6 +284,16 @@ public void setEndpoint(String endpoint) {
284284
client.setEndpoint(endpoint);
285285
}
286286

287+
@Override
288+
public String getEndpoint() {
289+
String endpoint = null;
290+
java.net.URI uri = client.getBaseTarget().getUri();
291+
if (uri != null) {
292+
endpoint = uri.toString();
293+
}
294+
return endpoint;
295+
}
296+
287297
@Override
288298
public void setRegion(com.oracle.bmc.Region region) {
289299
com.google.common.base.Optional<String> endpoint = region.getEndpoint(SERVICE);

bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsClient.java

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,11 +266,11 @@ protected AnalyticsClient(
266266
this.authenticationDetailsProvider)
267267
.getClientConfigurators());
268268
}
269+
additionalClientConfigurators.addAll(authenticationDetailsConfigurators);
269270
com.oracle.bmc.http.internal.RestClientFactory restClientFactory =
270271
restClientFactoryBuilder
271272
.clientConfigurator(clientConfigurator)
272273
.additionalClientConfigurators(additionalClientConfigurators)
273-
.additionalClientConfigurators(authenticationDetailsConfigurators)
274274
.build();
275275
com.oracle.bmc.http.signing.RequestSigner defaultRequestSigner =
276276
defaultRequestSignerFactory.createRequestSigner(
@@ -400,6 +400,16 @@ public void setEndpoint(String endpoint) {
400400
client.setEndpoint(endpoint);
401401
}
402402

403+
@Override
404+
public String getEndpoint() {
405+
String endpoint = null;
406+
java.net.URI uri = client.getBaseTarget().getUri();
407+
if (uri != null) {
408+
endpoint = uri.toString();
409+
}
410+
return endpoint;
411+
}
412+
403413
@Override
404414
public void setRegion(com.oracle.bmc.Region region) {
405415
com.google.common.base.Optional<String> endpoint = region.getEndpoint(SERVICE);

0 commit comments

Comments
 (0)