You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+14
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file.
3
3
4
4
The format is based on [Keep a Changelog](http://keepachangelog.com/).
5
5
6
+
## 2.58.0 - 2023-04-18
7
+
### Added
8
+
- Support for private endpoints in the Digital Assistant service
9
+
- Support for canceling backups in the Database service
10
+
- Support for improved labeling of key/value pairs in the Data Labeling service
11
+
12
+
### Breaking Changes
13
+
- The property `opcRetryToken` was removed from the models `ConfigureDigitalAssistantParametersRequest`, `RotateChannelKeysRequest`, `StartChannelRequest`, `StopChannelRequest` in the Data Labeling service
14
+
- The property `lifetimeLogicalClock` was removed from the models `Record`, `Dataset` and `Annotation` in the Data Labeling service
15
+
- The property `digitalAssistantId` was renamed to `id` in the `ListDigitalAssistantsRequest` model in the Data Labeling service
16
+
- The property `isLatestSkillOnly` was renamed to `isLatestVersionOnly` in the `ListPackagesRequest` model in the Data Labeling service
17
+
- The property `skillId` was renamed to `id` in the `ListSkillsRequest` model in the Data Labeling service
18
+
- The properties `authorizationEndpointUrl` and `subjectClaim` were made optional in the `AuthenticationProvider` model in the Data Labeling service
19
+
6
20
## 2.57.0 - 2023-04-11
7
21
### Added
8
22
- Support for rotation of certificates on autonomous VM clusters on Exadata Cloud at Customer in the Database service
Copy file name to clipboardExpand all lines: lib/database/lib/client.ts
+74
Original file line number
Diff line number
Diff line change
@@ -692,6 +692,80 @@ export class DatabaseClient {
692
692
}
693
693
}
694
694
695
+
/**
696
+
* Cancel automatic/standalone full/incremental create backup workrequests specified by the backup Id.
697
+
* This operation does not retry by default if the user has not defined a retry configuration.
698
+
* @param CancelBackupRequest
699
+
* @return CancelBackupResponse
700
+
* @throws OciError when an error occurs
701
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/database/CancelBackup.ts.html |here} to see how to use CancelBackup API.
702
+
*/
703
+
public async cancelBackup(
704
+
cancelBackupRequest: requests.CancelBackupRequest
705
+
): Promise<responses.CancelBackupResponse> {
706
+
if (this.logger) this.logger.debug("Calling operation DatabaseClient#cancelBackup.");
0 commit comments