Skip to content

Commit 1e1500a

Browse files
authored
Releasing version 1.36.3
Releasing version 1.36.3
2 parents 9c11c47 + 9d733d7 commit 1e1500a

File tree

371 files changed

+40810
-251
lines changed

Some content is hidden

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

371 files changed

+40810
-251
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.36.3 - 2021-05-04
7+
### Added
8+
- Support for the Operator Access Control service
9+
- Support for the Service Catalog service
10+
- Support for the AI Language service
11+
- Support for autonomous database on Exadata Cloud at Customer infrastructure patching in the Database service
12+
613
## 1.36.2 - 2021-04-27
714
### Added
815
- VCN id parameters were moved from being required to being optional on all list operations in the Networking 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.36.2</version>
7+
<version>1.36.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.36.2</version>
45+
<version>1.36.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.36.2</version>
8+
<version>1.36.3</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -44,7 +44,7 @@
4444
<dependency>
4545
<groupId>com.oracle.oci.sdk</groupId>
4646
<artifactId>oci-java-sdk-common</artifactId>
47-
<version>1.36.2</version>
47+
<version>1.36.3</version>
4848
</dependency>
4949
</dependencies>
5050
</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.36.2</version>
10+
<version>1.36.3</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

@@ -62,7 +62,7 @@
6262
<dependency>
6363
<groupId>com.oracle.oci.sdk</groupId>
6464
<artifactId>oci-java-sdk-common</artifactId>
65-
<version>1.36.2</version>
65+
<version>1.36.3</version>
6666
</dependency>
6767
</dependencies>
6868

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

bmc-ailanguage/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>com.oracle.oci.sdk</groupId>
6+
<artifactId>oci-java-sdk</artifactId>
7+
<version>1.36.3</version>
8+
<relativePath>../pom.xml</relativePath>
9+
</parent>
10+
<artifactId>oci-java-sdk-ailanguage</artifactId>
11+
<name>Oracle Cloud Infrastructure SDK - Ai Language</name>
12+
<description>This project contains the SDK used for Oracle Cloud Infrastructure Ai Language</description>
13+
<url>https://docs.cloud.oracle.com/Content/API/SDKDocs/javasdk.htm</url>
14+
<dependencies>
15+
<dependency>
16+
<groupId>com.oracle.oci.sdk</groupId>
17+
<artifactId>oci-java-sdk-common</artifactId>
18+
<version>1.36.3</version>
19+
</dependency>
20+
</dependencies>
21+
</project>
Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
/**
2+
* Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
3+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
4+
*/
5+
package com.oracle.bmc.ailanguage;
6+
7+
import com.oracle.bmc.ailanguage.requests.*;
8+
import com.oracle.bmc.ailanguage.responses.*;
9+
10+
/**
11+
* OCI AI Service solutions can help Enterprise customers integrate AI into their products immediately using our proven,
12+
* pre-trained and custom models or containers, without a need to set up an house team of AI and ML experts.
13+
* This allows enterprises to focus on business drivers and development work rather than AI and ML operations, which shortens the time to market.
14+
*
15+
*/
16+
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210101")
17+
public interface AIServiceLanguage extends AutoCloseable {
18+
19+
/**
20+
* Sets the endpoint to call (ex, https://www.example.com).
21+
* @param endpoint The endpoint of the service.
22+
*/
23+
void setEndpoint(String endpoint);
24+
25+
/**
26+
* Gets the set endpoint for REST call (ex, https://www.example.com)
27+
*/
28+
String getEndpoint();
29+
30+
/**
31+
* Sets the region to call (ex, Region.US_PHOENIX_1).
32+
* <p>
33+
* 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.
34+
* @param region The region of the service.
35+
*/
36+
void setRegion(com.oracle.bmc.Region region);
37+
38+
/**
39+
* Sets the region to call (ex, 'us-phoenix-1').
40+
* <p>
41+
* Note, this will first try to map the region ID to a known Region and call
42+
* {@link #setRegion(Region) setRegion}.
43+
* <p>
44+
* If no known Region could be determined, it will create an endpoint based on the
45+
* default endpoint format ({@link com.oracle.bmc.Region#formatDefaultRegionEndpoint(Service, String)}
46+
* and then call {@link #setEndpoint(String) setEndpoint}.
47+
* @param regionId The public region ID.
48+
*/
49+
void setRegion(String regionId);
50+
51+
/**
52+
* Make a detect call to language detection pre-deployed model.
53+
* @param request The request object containing the details to send
54+
* @return A response object containing details about the completed operation
55+
* @throws BmcException when an error occurs.
56+
*
57+
* <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/ailanguage/DetectDominantLanguageExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use DetectDominantLanguage API.
58+
*/
59+
DetectDominantLanguageResponse detectDominantLanguage(DetectDominantLanguageRequest request);
60+
61+
/**
62+
* Make a detect call to enitiy pre-deployed model
63+
* @param request The request object containing the details to send
64+
* @return A response object containing details about the completed operation
65+
* @throws BmcException when an error occurs.
66+
*
67+
* <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/ailanguage/DetectLanguageEntitiesExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use DetectLanguageEntities API.
68+
*/
69+
DetectLanguageEntitiesResponse detectLanguageEntities(DetectLanguageEntitiesRequest request);
70+
71+
/**
72+
* Make a detect call to the keyPhrase pre-deployed model.
73+
* @param request The request object containing the details to send
74+
* @return A response object containing details about the completed operation
75+
* @throws BmcException when an error occurs.
76+
*
77+
* <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/ailanguage/DetectLanguageKeyPhrasesExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use DetectLanguageKeyPhrases API.
78+
*/
79+
DetectLanguageKeyPhrasesResponse detectLanguageKeyPhrases(
80+
DetectLanguageKeyPhrasesRequest request);
81+
82+
/**
83+
* Make a detect call to sentiment pre-deployed model.
84+
* @param request The request object containing the details to send
85+
* @return A response object containing details about the completed operation
86+
* @throws BmcException when an error occurs.
87+
*
88+
* <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/ailanguage/DetectLanguageSentimentsExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use DetectLanguageSentiments API.
89+
*/
90+
DetectLanguageSentimentsResponse detectLanguageSentiments(
91+
DetectLanguageSentimentsRequest request);
92+
93+
/**
94+
* Make a detect call to text classification from the pre-deployed model.
95+
* @param request The request object containing the details to send
96+
* @return A response object containing details about the completed operation
97+
* @throws BmcException when an error occurs.
98+
*
99+
* <b>Example: </b>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/java-sdk-examples/latest/ailanguage/DetectLanguageTextClassificationExample.java.html" target="_blank" rel="noopener noreferrer" >here</a> to see how to use DetectLanguageTextClassification API.
100+
*/
101+
DetectLanguageTextClassificationResponse detectLanguageTextClassification(
102+
DetectLanguageTextClassificationRequest request);
103+
}
Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
/**
2+
* Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
3+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
4+
*/
5+
package com.oracle.bmc.ailanguage;
6+
7+
import com.oracle.bmc.ailanguage.requests.*;
8+
import com.oracle.bmc.ailanguage.responses.*;
9+
10+
/**
11+
* OCI AI Service solutions can help Enterprise customers integrate AI into their products immediately using our proven,
12+
* pre-trained and custom models or containers, without a need to set up an house team of AI and ML experts.
13+
* This allows enterprises to focus on business drivers and development work rather than AI and ML operations, which shortens the time to market.
14+
*
15+
*/
16+
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210101")
17+
public interface AIServiceLanguageAsync extends AutoCloseable {
18+
19+
/**
20+
* Sets the endpoint to call (ex, https://www.example.com).
21+
* @param endpoint The endpoint of the serice.
22+
*/
23+
void setEndpoint(String endpoint);
24+
25+
/**
26+
* Gets the set endpoint for REST call (ex, https://www.example.com)
27+
*/
28+
String getEndpoint();
29+
30+
/**
31+
* Sets the region to call (ex, Region.US_PHOENIX_1).
32+
* <p>
33+
* 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.
34+
* @param region The region of the service.
35+
*/
36+
void setRegion(com.oracle.bmc.Region region);
37+
38+
/**
39+
* Sets the region to call (ex, 'us-phoenix-1').
40+
* <p>
41+
* Note, this will first try to map the region ID to a known Region and call
42+
* {@link #setRegion(Region) setRegion}.
43+
* <p>
44+
* If no known Region could be determined, it will create an endpoint based on the
45+
* default endpoint format ({@link com.oracle.bmc.Region#formatDefaultRegionEndpoint(Service, String)}
46+
* and then call {@link #setEndpoint(String) setEndpoint}.
47+
* @param regionId The public region ID.
48+
*/
49+
void setRegion(String regionId);
50+
51+
/**
52+
* Make a detect call to language detection pre-deployed model.
53+
*
54+
* @param request The request object containing the details to send
55+
* @param handler The request handler to invoke upon completion, may be null.
56+
* @return A Future that can be used to get the response if no AsyncHandler was
57+
* provided. Note, if you provide an AsyncHandler and use the Future, some
58+
* types of responses (like java.io.InputStream) may not be able to be read in
59+
* both places as the underlying stream may only be consumed once.
60+
*/
61+
java.util.concurrent.Future<DetectDominantLanguageResponse> detectDominantLanguage(
62+
DetectDominantLanguageRequest request,
63+
com.oracle.bmc.responses.AsyncHandler<
64+
DetectDominantLanguageRequest, DetectDominantLanguageResponse>
65+
handler);
66+
67+
/**
68+
* Make a detect call to enitiy pre-deployed model
69+
*
70+
* @param request The request object containing the details to send
71+
* @param handler The request handler to invoke upon completion, may be null.
72+
* @return A Future that can be used to get the response if no AsyncHandler was
73+
* provided. Note, if you provide an AsyncHandler and use the Future, some
74+
* types of responses (like java.io.InputStream) may not be able to be read in
75+
* both places as the underlying stream may only be consumed once.
76+
*/
77+
java.util.concurrent.Future<DetectLanguageEntitiesResponse> detectLanguageEntities(
78+
DetectLanguageEntitiesRequest request,
79+
com.oracle.bmc.responses.AsyncHandler<
80+
DetectLanguageEntitiesRequest, DetectLanguageEntitiesResponse>
81+
handler);
82+
83+
/**
84+
* Make a detect call to the keyPhrase pre-deployed model.
85+
*
86+
* @param request The request object containing the details to send
87+
* @param handler The request handler to invoke upon completion, may be null.
88+
* @return A Future that can be used to get the response if no AsyncHandler was
89+
* provided. Note, if you provide an AsyncHandler and use the Future, some
90+
* types of responses (like java.io.InputStream) may not be able to be read in
91+
* both places as the underlying stream may only be consumed once.
92+
*/
93+
java.util.concurrent.Future<DetectLanguageKeyPhrasesResponse> detectLanguageKeyPhrases(
94+
DetectLanguageKeyPhrasesRequest request,
95+
com.oracle.bmc.responses.AsyncHandler<
96+
DetectLanguageKeyPhrasesRequest, DetectLanguageKeyPhrasesResponse>
97+
handler);
98+
99+
/**
100+
* Make a detect call to sentiment pre-deployed model.
101+
*
102+
* @param request The request object containing the details to send
103+
* @param handler The request handler to invoke upon completion, may be null.
104+
* @return A Future that can be used to get the response if no AsyncHandler was
105+
* provided. Note, if you provide an AsyncHandler and use the Future, some
106+
* types of responses (like java.io.InputStream) may not be able to be read in
107+
* both places as the underlying stream may only be consumed once.
108+
*/
109+
java.util.concurrent.Future<DetectLanguageSentimentsResponse> detectLanguageSentiments(
110+
DetectLanguageSentimentsRequest request,
111+
com.oracle.bmc.responses.AsyncHandler<
112+
DetectLanguageSentimentsRequest, DetectLanguageSentimentsResponse>
113+
handler);
114+
115+
/**
116+
* Make a detect call to text classification from the pre-deployed model.
117+
*
118+
* @param request The request object containing the details to send
119+
* @param handler The request handler to invoke upon completion, may be null.
120+
* @return A Future that can be used to get the response if no AsyncHandler was
121+
* provided. Note, if you provide an AsyncHandler and use the Future, some
122+
* types of responses (like java.io.InputStream) may not be able to be read in
123+
* both places as the underlying stream may only be consumed once.
124+
*/
125+
java.util.concurrent.Future<DetectLanguageTextClassificationResponse>
126+
detectLanguageTextClassification(
127+
DetectLanguageTextClassificationRequest request,
128+
com.oracle.bmc.responses.AsyncHandler<
129+
DetectLanguageTextClassificationRequest,
130+
DetectLanguageTextClassificationResponse>
131+
handler);
132+
}

0 commit comments

Comments
 (0)