Skip to content

Commit a09ca3a

Browse files
authored
Releasing version 1.4.0
Releasing version 1.4.0
2 parents 287fb89 + 770f844 commit a09ca3a

File tree

123 files changed

+9238
-228
lines changed

Some content is hidden

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

123 files changed

+9238
-228
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
1313
### Added
1414
- N/A
1515

16+
## 1.4.0 - 2018-02-21
17+
### Added
18+
- Support for government-realm regions
19+
- Support for the Streaming service
20+
- Support for tags in the Key Management service
21+
- Support for regional subnets in the Virtual Networking service
22+
23+
### Fixed
24+
- Removed unused Announcements service `NotificationFollowupDetails` model and `getFollowups` operation
25+
1626
## 1.3.7 - 2018-02-07
1727
### Added
1828
- Support for the Web Application Acceleration and Security (WAAS) 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.3.7</version>
8+
<version>1.4.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>com.oracle.oci.sdk</groupId>
4545
<artifactId>oci-java-sdk-common</artifactId>
46-
<version>1.3.7</version>
46+
<version>1.4.0</version>
4747
</dependency>
4848
</dependencies>
4949
</project>

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

@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>com.oracle.oci.sdk</groupId>
4040
<artifactId>oci-java-sdk-common</artifactId>
41-
<version>1.3.7</version>
41+
<version>1.4.0</version>
4242
</dependency>
4343
</dependencies>
4444
</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.3.7</version>
8+
<version>1.4.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.3.7</version>
7+
<version>1.4.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.3.7</version>
20+
<version>1.4.0</version>
2121
</dependency>
2222
</dependencies>
2323
</project>

bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/Announcement.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public interface Announcement extends AutoCloseable {
3737
void setRegion(String regionId);
3838

3939
/**
40-
* Gets details about single `Announcement` object
40+
* Gets the details of a specific announcement.
4141
*
4242
* @param request The request object containing the details to send
4343
* @return A response object containing details about the completed operation
@@ -46,7 +46,7 @@ public interface Announcement extends AutoCloseable {
4646
GetAnnouncementResponse getAnnouncement(GetAnnouncementRequest request);
4747

4848
/**
49-
* Get user status of specified announcement
49+
* Gets information about whether a specific announcement was acknowledged by a user.
5050
*
5151
* @param request The request object containing the details to send
5252
* @return A response object containing details about the completed operation
@@ -56,7 +56,7 @@ GetAnnouncementUserStatusResponse getAnnouncementUserStatus(
5656
GetAnnouncementUserStatusRequest request);
5757

5858
/**
59-
* Gets a list of `Announcement` objects for the current tenancy
59+
* Gets a list of announcements for the current tenancy.
6060
*
6161
* @param request The request object containing the details to send
6262
* @return A response object containing details about the completed operation
@@ -65,7 +65,7 @@ GetAnnouncementUserStatusResponse getAnnouncementUserStatus(
6565
ListAnnouncementsResponse listAnnouncements(ListAnnouncementsRequest request);
6666

6767
/**
68-
* Update `Announcement` status with whether user has seen or supressed the announcement
68+
* Updates the status of the specified announcement with regard to whether it has been marked as read.
6969
*
7070
* @param request The request object containing the details to send
7171
* @return A response object containing details about the completed operation

bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementAsync.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public interface AnnouncementAsync extends AutoCloseable {
3737
void setRegion(String regionId);
3838

3939
/**
40-
* Gets details about single `Announcement` object
40+
* Gets the details of a specific announcement.
4141
*
4242
*
4343
* @param request The request object containing the details to send
@@ -53,7 +53,7 @@ java.util.concurrent.Future<GetAnnouncementResponse> getAnnouncement(
5353
handler);
5454

5555
/**
56-
* Get user status of specified announcement
56+
* Gets information about whether a specific announcement was acknowledged by a user.
5757
*
5858
*
5959
* @param request The request object containing the details to send
@@ -70,7 +70,7 @@ java.util.concurrent.Future<GetAnnouncementUserStatusResponse> getAnnouncementUs
7070
handler);
7171

7272
/**
73-
* Gets a list of `Announcement` objects for the current tenancy
73+
* Gets a list of announcements for the current tenancy.
7474
*
7575
*
7676
* @param request The request object containing the details to send
@@ -87,7 +87,7 @@ java.util.concurrent.Future<ListAnnouncementsResponse> listAnnouncements(
8787
handler);
8888

8989
/**
90-
* Update `Announcement` status with whether user has seen or supressed the announcement
90+
* Updates the status of the specified announcement with regard to whether it has been marked as read.
9191
*
9292
*
9393
* @param request The request object containing the details to send

bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AffectedResource.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
package com.oracle.bmc.announcementsservice.model;
55

66
/**
7-
* Descrption of a resource affected by the announcement
7+
* The resource affected by the event described in the announcement.
88
*
99
* <br/>
1010
* Note: Objects should always be created or deserialized using the {@link Builder}. This model distinguishes fields
@@ -79,19 +79,19 @@ public static Builder builder() {
7979
}
8080

8181
/**
82-
* The OCID of the resource
82+
* The OCID of the affected resource.
8383
**/
8484
@com.fasterxml.jackson.annotation.JsonProperty("resourceId")
8585
String resourceId;
8686

8787
/**
88-
* User-friendly name of the resource
88+
* The friendly name of the resource.
8989
**/
9090
@com.fasterxml.jackson.annotation.JsonProperty("resourceName")
9191
String resourceName;
9292

9393
/**
94-
* Region where this resource belongs to
94+
* The region where the affected resource exists.
9595
**/
9696
@com.fasterxml.jackson.annotation.JsonProperty("region")
9797
String region;

bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Announcement.java

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
package com.oracle.bmc.announcementsservice.model;
55

66
/**
7-
* An announcement object which represents a message targetted to a specific tenant
7+
* A message about an impactful operational event.
88
*
99
* <br/>
1010
* Note: Objects should always be created or deserialized using the {@link Builder}. This model distinguishes fields
@@ -173,15 +173,6 @@ public Builder additionalInformation(String additionalInformation) {
173173
return this;
174174
}
175175

176-
@com.fasterxml.jackson.annotation.JsonProperty("followups")
177-
private java.util.List<NotificationFollowupDetails> followups;
178-
179-
public Builder followups(java.util.List<NotificationFollowupDetails> followups) {
180-
this.followups = followups;
181-
this.__explicitlySet__.add("followups");
182-
return this;
183-
}
184-
185176
@com.fasterxml.jackson.annotation.JsonProperty("affectedResources")
186177
private java.util.List<AffectedResource> affectedResources;
187178

@@ -213,7 +204,6 @@ public Announcement build() {
213204
timeUpdated,
214205
description,
215206
additionalInformation,
216-
followups,
217207
affectedResources);
218208
__instance__.__explicitlySet__.addAll(__explicitlySet__);
219209
return __instance__;
@@ -238,7 +228,6 @@ public Builder copy(Announcement o) {
238228
.timeUpdated(o.getTimeUpdated())
239229
.description(o.getDescription())
240230
.additionalInformation(o.getAdditionalInformation())
241-
.followups(o.getFollowups())
242231
.affectedResources(o.getAffectedResources());
243232

244233
copiedBuilder.__explicitlySet__.retainAll(o.__explicitlySet__);
@@ -271,7 +260,6 @@ public Announcement(
271260
java.util.Date timeUpdated,
272261
String description,
273262
String additionalInformation,
274-
java.util.List<NotificationFollowupDetails> followups,
275263
java.util.List<AffectedResource> affectedResources) {
276264
super(
277265
id,
@@ -290,27 +278,28 @@ public Announcement(
290278
timeUpdated);
291279
this.description = description;
292280
this.additionalInformation = additionalInformation;
293-
this.followups = followups;
294281
this.affectedResources = affectedResources;
295282
}
296283

297284
/**
298-
* A more detailed explanation of the notification. A markdown format input
285+
* A detailed explanation of the event, expressed by using Markdown language. Avoid entering
286+
* confidential information.
287+
*
299288
**/
300289
@com.fasterxml.jackson.annotation.JsonProperty("description")
301290
String description;
302291

303292
/**
304-
* A markdown format input that forms e.g. the FAQ section of a notification
293+
* Additional information about the event, expressed by using Markdown language and included in the
294+
* details view of an announcement. Additional information might include remediation steps or
295+
* answers to frequently asked questions. Avoid entering confidential information.
296+
*
305297
**/
306298
@com.fasterxml.jackson.annotation.JsonProperty("additionalInformation")
307299
String additionalInformation;
308300

309-
@com.fasterxml.jackson.annotation.JsonProperty("followups")
310-
java.util.List<NotificationFollowupDetails> followups;
311-
312301
/**
313-
* List of resources (possibly empty) affected by this announcement
302+
* The list of resources, if any, affected by the event described in the announcement.
314303
**/
315304
@com.fasterxml.jackson.annotation.JsonProperty("affectedResources")
316305
java.util.List<AffectedResource> affectedResources;

bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSummary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
package com.oracle.bmc.announcementsservice.model;
55

66
/**
7-
* An announcement summary object which is returned by List API
7+
* Summary representation of an announcement.
88
*
99
* <br/>
1010
* Note: Objects should always be created or deserialized using the {@link Builder}. This model distinguishes fields

0 commit comments

Comments
 (0)