Skip to content

Commit b2a3fd8

Browse files
Releasing version 2.49.0
Releasing version 2.49.0
2 parents 4ddfe48 + 8fc22a1 commit b2a3fd8

File tree

349 files changed

+10733
-980
lines changed

Some content is hidden

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

349 files changed

+10733
-980
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@ 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.49.0 - 2022-11-08
7+
### Added
8+
- Support for listing local and cross-region refreshable clones in the Database service
9+
- Support for adding multiple cloud VM clusters in the Database service
10+
- Support for creating rollback jobs in the Resource Manager service
11+
- Support for edge nodes in the Big Data service
12+
- Support for Single Client Access Name (SCAN) in the Data Flow service
13+
- Support for additional filters when listing application dependencies in the Application Dependency Management service
14+
- Support for additional properties when reading Vulnerability Audit resources in the Application Dependency Management service
15+
- Support for optionally passing compartment IDs when creating Vulnerability Audit resources in the Application Dependency Management service
16+
17+
### Breaking Changes
18+
- Field `certificateId` has been made mandatory in `com.oracle.bmc.resourcemanager.model.PrivateServerConfigDetails`
19+
620
## 2.48.0 - 2022-11-01
721
### Added
822
- Support for cloning from a backup from the last available timestamp in the Database 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>2.48.0</version>
7+
<version>2.49.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.48.0</version>
21+
<version>2.49.0</version>
2222
</dependency>
2323
</dependencies>
2424
</project>

bmc-addons/bmc-graalvm-addon/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>oci-java-sdk-addons</artifactId>
66
<groupId>com.oracle.oci.sdk</groupId>
7-
<version>2.48.0</version>
7+
<version>2.49.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-addons-graalvm</artifactId>
@@ -132,30 +132,30 @@
132132
<dependency>
133133
<groupId>com.oracle.oci.sdk</groupId>
134134
<artifactId>oci-java-sdk-common</artifactId>
135-
<version>2.48.0</version>
135+
<version>2.49.0</version>
136136
</dependency>
137137
<dependency>
138138
<groupId>com.oracle.oci.sdk</groupId>
139139
<artifactId>oci-java-sdk-objectstorage-extensions</artifactId>
140-
<version>2.48.0</version>
140+
<version>2.49.0</version>
141141
<scope>test</scope>
142142
</dependency>
143143
<dependency>
144144
<groupId>com.oracle.oci.sdk</groupId>
145145
<artifactId>oci-java-sdk-identity</artifactId>
146-
<version>2.48.0</version>
146+
<version>2.49.0</version>
147147
<scope>test</scope>
148148
</dependency>
149149
<dependency>
150150
<groupId>com.oracle.oci.sdk</groupId>
151151
<artifactId>oci-java-sdk-objectstorage-extensions</artifactId>
152-
<version>2.48.0</version>
152+
<version>2.49.0</version>
153153
<scope>test</scope>
154154
</dependency>
155155
<dependency>
156156
<groupId>com.oracle.oci.sdk</groupId>
157157
<artifactId>oci-java-sdk-core</artifactId>
158-
<version>2.48.0</version>
158+
<version>2.49.0</version>
159159
<scope>test</scope>
160160
</dependency>
161161
</dependencies>

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

@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>com.oracle.oci.sdk</groupId>
2727
<artifactId>oci-java-sdk-common</artifactId>
28-
<version>2.48.0</version>
28+
<version>2.49.0</version>
2929
</dependency>
3030
</dependencies>
3131
</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>2.48.0</version>
10+
<version>2.49.0</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>2.48.0</version>
65+
<version>2.49.0</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>2.48.0</version>
8+
<version>2.49.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

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

bmc-adm/src/main/java/com/oracle/bmc/adm/internal/http/ListApplicationDependencyVulnerabilitiesConverter.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,22 @@ public static com.oracle.bmc.http.internal.WrappedInvocationBuilder fromRequest(
100100
request.getSortBy().getValue()));
101101
}
102102

103+
if (request.getRootNodeId() != null) {
104+
target =
105+
target.queryParam(
106+
"rootNodeId",
107+
com.oracle.bmc.util.internal.HttpUtils.attemptEncodeQueryParam(
108+
request.getRootNodeId()));
109+
}
110+
111+
if (request.getDepth() != null) {
112+
target =
113+
target.queryParam(
114+
"depth",
115+
com.oracle.bmc.util.internal.HttpUtils.attemptEncodeQueryParam(
116+
request.getDepth()));
117+
}
118+
103119
if (request.getGav() != null) {
104120
target =
105121
target.queryParam(

bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependency.java

Lines changed: 48 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ public ApplicationDependency(
3434
@com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "")
3535
public static class Builder {
3636
/**
37-
* Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
37+
* Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
3838
**/
3939
@com.fasterxml.jackson.annotation.JsonProperty("gav")
4040
private String gav;
4141

4242
/**
43-
* Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
43+
* Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
4444
* @param gav the value to set
4545
* @return this builder
4646
**/
@@ -50,13 +50,31 @@ public Builder gav(String gav) {
5050
return this;
5151
}
5252
/**
53-
* Unique identifier of an Application Dependency node, e.g. nodeId1.
53+
* Unique identifier of an Application Dependency, for example nodeId1.
54+
* The nodeId can be generated by assigning a unique id to each application dependency
55+
* in the tree of application dependencies.
56+
* Every node, even those who share the same GAV, should have a different nodeId.
57+
* The preferred way of constructing a nodeId is to assign incremental integers
58+
* during a breadth first or depth first search.
59+
* A nodeId can be reused only it refers to the same subtree of application dependencies.
60+
* (This is not equivalent to referring to the same GAV, that is,
61+
* a GAV can have multiple transitive dependencies.)
62+
*
5463
**/
5564
@com.fasterxml.jackson.annotation.JsonProperty("nodeId")
5665
private String nodeId;
5766

5867
/**
59-
* Unique identifier of an Application Dependency node, e.g. nodeId1.
68+
* Unique identifier of an Application Dependency, for example nodeId1.
69+
* The nodeId can be generated by assigning a unique id to each application dependency
70+
* in the tree of application dependencies.
71+
* Every node, even those who share the same GAV, should have a different nodeId.
72+
* The preferred way of constructing a nodeId is to assign incremental integers
73+
* during a breadth first or depth first search.
74+
* A nodeId can be reused only it refers to the same subtree of application dependencies.
75+
* (This is not equivalent to referring to the same GAV, that is,
76+
* a GAV can have multiple transitive dependencies.)
77+
*
6078
* @param nodeId the value to set
6179
* @return this builder
6280
**/
@@ -66,13 +84,13 @@ public Builder nodeId(String nodeId) {
6684
return this;
6785
}
6886
/**
69-
* List of (Application Dependencies) node identifiers on which this node depends.
87+
* List of Application Dependencies on which this Application Dependency depends, each identified by its nodeId.
7088
**/
7189
@com.fasterxml.jackson.annotation.JsonProperty("applicationDependencyNodeIds")
7290
private java.util.List<String> applicationDependencyNodeIds;
7391

7492
/**
75-
* List of (Application Dependencies) node identifiers on which this node depends.
93+
* List of Application Dependencies on which this Application Dependency depends, each identified by its nodeId.
7694
* @param applicationDependencyNodeIds the value to set
7795
* @return this builder
7896
**/
@@ -123,41 +141,59 @@ public Builder toBuilder() {
123141
}
124142

125143
/**
126-
* Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
144+
* Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
127145
**/
128146
@com.fasterxml.jackson.annotation.JsonProperty("gav")
129147
private final String gav;
130148

131149
/**
132-
* Unique Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
150+
* Group Artifact Version (GAV) identifier (Group:Artifact:Version), e.g. org.graalvm.nativeimage:svm:21.1.0.
133151
* @return the value
134152
**/
135153
public String getGav() {
136154
return gav;
137155
}
138156

139157
/**
140-
* Unique identifier of an Application Dependency node, e.g. nodeId1.
158+
* Unique identifier of an Application Dependency, for example nodeId1.
159+
* The nodeId can be generated by assigning a unique id to each application dependency
160+
* in the tree of application dependencies.
161+
* Every node, even those who share the same GAV, should have a different nodeId.
162+
* The preferred way of constructing a nodeId is to assign incremental integers
163+
* during a breadth first or depth first search.
164+
* A nodeId can be reused only it refers to the same subtree of application dependencies.
165+
* (This is not equivalent to referring to the same GAV, that is,
166+
* a GAV can have multiple transitive dependencies.)
167+
*
141168
**/
142169
@com.fasterxml.jackson.annotation.JsonProperty("nodeId")
143170
private final String nodeId;
144171

145172
/**
146-
* Unique identifier of an Application Dependency node, e.g. nodeId1.
173+
* Unique identifier of an Application Dependency, for example nodeId1.
174+
* The nodeId can be generated by assigning a unique id to each application dependency
175+
* in the tree of application dependencies.
176+
* Every node, even those who share the same GAV, should have a different nodeId.
177+
* The preferred way of constructing a nodeId is to assign incremental integers
178+
* during a breadth first or depth first search.
179+
* A nodeId can be reused only it refers to the same subtree of application dependencies.
180+
* (This is not equivalent to referring to the same GAV, that is,
181+
* a GAV can have multiple transitive dependencies.)
182+
*
147183
* @return the value
148184
**/
149185
public String getNodeId() {
150186
return nodeId;
151187
}
152188

153189
/**
154-
* List of (Application Dependencies) node identifiers on which this node depends.
190+
* List of Application Dependencies on which this Application Dependency depends, each identified by its nodeId.
155191
**/
156192
@com.fasterxml.jackson.annotation.JsonProperty("applicationDependencyNodeIds")
157193
private final java.util.List<String> applicationDependencyNodeIds;
158194

159195
/**
160-
* List of (Application Dependencies) node identifiers on which this node depends.
196+
* List of Application Dependencies on which this Application Dependency depends, each identified by its nodeId.
161197
* @return the value
162198
**/
163199
public java.util.List<String> getApplicationDependencyNodeIds() {

bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyVulnerabilityCollection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/**
88
* Application Dependencies with Vulnerabilities.
9-
* This resource is defined by a list of Application Dependencies with are associated with eventual Vulnerabilities.
9+
* This resource is defined by a list of Application Dependencies that are associated with eventual Vulnerabilities.
1010
*
1111
* <br/>
1212
* Note: Objects should always be created or deserialized using the {@link Builder}. This model distinguishes fields

0 commit comments

Comments
 (0)