Skip to content

Commit c60de29

Browse files
Releasing version 2.22.0
Releasing version 2.22.0
2 parents e284872 + 04c4b3e commit c60de29

File tree

294 files changed

+2454
-1206
lines changed

Some content is hidden

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

294 files changed

+2454
-1206
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ 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.22.0 - 2022-04-12
7+
### Added
8+
- Support for bringing your own IPv6 addresses in the Networking service
9+
- Support for specifying database edition and maximum CPU core count when creating or updating an autonomous database in the Database service
10+
- Support for enabling and disabling data collection options when creating or updating Exadata Cloud at Customer VM clusters in the Database service
11+
12+
### Breaking Changes
13+
- Support for retries by default on operations in the Identity service
14+
- Support for retries by default on operations in the Operations Insights service
15+
616
## 2.21.0 - 2022-04-05
717
### Added
818
- Fixed the lifecycle state values for target databases in the Data Safe service

lib/aianomalydetection/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aianomalydetection",
3-
"version": "2.21.0",
3+
"version": "2.22.0",
44
"description": "OCI NodeJS client for Ai Anomaly Detection Service",
55
"repository": {
66
"type": "git",

lib/ailanguage/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-ailanguage",
3-
"version": "2.21.0",
3+
"version": "2.22.0",
44
"description": "OCI NodeJS client for Ai Language Service",
55
"repository": {
66
"type": "git",

lib/aispeech/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aispeech",
3-
"version": "2.21.0",
3+
"version": "2.22.0",
44
"description": "OCI NodeJS client for Ai Speech Service",
55
"repository": {
66
"type": "git",

lib/aivision/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* VisionService API
3-
* A description of the VisionService API.
2+
* Vision API
3+
* Using Vision, you can upload images to detect and classify objects in them. If you have lots of images, you can process them in batch using asynchronous API endpoints. Vision's features are thematically split between Document AI for document-centric images, and Image Analysis for object and scene-based images. Pretrained models and custom models are supported.
44
* OpenAPI spec version: 20220125
55
*
66
*

lib/aivision/lib/aiservicevision-waiter.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* VisionService API
3-
* A description of the VisionService API.
2+
* Vision API
3+
* Using Vision, you can upload images to detect and classify objects in them. If you have lots of images, you can process them in batch using asynchronous API endpoints. Vision's features are thematically split between Document AI for document-centric images, and Image Analysis for object and scene-based images. Pretrained models and custom models are supported.
44
* OpenAPI spec version: 20220125
55
*
66
*

lib/aivision/lib/client.ts

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* VisionService API
3-
* A description of the VisionService API.
2+
* Vision API
3+
* Using Vision, you can upload images to detect and classify objects in them. If you have lots of images, you can process them in batch using asynchronous API endpoints. Vision's features are thematically split between Document AI for document-centric images, and Image Analysis for object and scene-based images. Pretrained models and custom models are supported.
44
* OpenAPI spec version: 20220125
55
*
66
*
@@ -287,7 +287,7 @@ export class AIServiceVisionClient {
287287
}
288288

289289
/**
290-
* Cancel a batch document job.
290+
* Cancel a document batch job.
291291
*
292292
* This operation does not retry by default if the user has not defined a retry configuration.
293293
* @param CancelDocumentJobRequest
@@ -348,7 +348,7 @@ export class AIServiceVisionClient {
348348
}
349349

350350
/**
351-
* Cancel a batch image job.
351+
* Cancel an image batch job.
352352
*
353353
* This operation does not retry by default if the user has not defined a retry configuration.
354354
* @param CancelImageJobRequest
@@ -408,7 +408,7 @@ export class AIServiceVisionClient {
408408
}
409409

410410
/**
411-
* Cancel work request with the given ID.
411+
* Cancel the work request with the given ID.
412412
* This operation does not retry by default if the user has not defined a retry configuration.
413413
* @param CancelWorkRequestRequest
414414
* @return CancelWorkRequestResponse
@@ -468,7 +468,7 @@ export class AIServiceVisionClient {
468468
}
469469

470470
/**
471-
* Moves a model from one compartment to another. When provided, If-Match is checked against ETag values of the resource.
471+
* Moves a model from one compartment to another. When provided, If-Match is checked against the ETag values of the resource.
472472
* This operation does not retry by default if the user has not defined a retry configuration.
473473
* @param ChangeModelCompartmentRequest
474474
* @return ChangeModelCompartmentResponse
@@ -533,7 +533,7 @@ export class AIServiceVisionClient {
533533
}
534534

535535
/**
536-
* Moves a project from one compartment to another. When provided, If-Match is checked against ETag values of the resource.
536+
* Move a project from one compartment to another. When provided, If-Match is checked against the ETag values of the resource.
537537
* This operation does not retry by default if the user has not defined a retry configuration.
538538
* @param ChangeProjectCompartmentRequest
539539
* @return ChangeProjectCompartmentResponse
@@ -598,7 +598,7 @@ export class AIServiceVisionClient {
598598
}
599599

600600
/**
601-
* Create a batch document analysis job
601+
* Create a document analysis batch job.
602602
*
603603
* This operation does not retry by default if the user has not defined a retry configuration.
604604
* @param CreateDocumentJobRequest
@@ -671,7 +671,7 @@ export class AIServiceVisionClient {
671671
}
672672

673673
/**
674-
* Create a batch image analysis job.
674+
* Create an image analysis batch job.
675675
*
676676
* This operation does not retry by default if the user has not defined a retry configuration.
677677
* @param CreateImageJobRequest
@@ -743,7 +743,7 @@ export class AIServiceVisionClient {
743743
}
744744

745745
/**
746-
* Creates a new model.
746+
* Create a new model.
747747
*
748748
* This operation does not retry by default if the user has not defined a retry configuration.
749749
* @param CreateModelRequest
@@ -820,7 +820,7 @@ export class AIServiceVisionClient {
820820
}
821821

822822
/**
823-
* Creates a new project.
823+
* Create a new project.
824824
*
825825
* This operation does not retry by default if the user has not defined a retry configuration.
826826
* @param CreateProjectRequest
@@ -897,7 +897,7 @@ export class AIServiceVisionClient {
897897
}
898898

899899
/**
900-
* Deletes a model by identifier.
900+
* Delete a model by identifier.
901901
* This operation does not retry by default if the user has not defined a retry configuration.
902902
* @param DeleteModelRequest
903903
* @return DeleteModelResponse
@@ -961,7 +961,7 @@ export class AIServiceVisionClient {
961961
}
962962

963963
/**
964-
* Deletes a project by identifier.
964+
* Delete a project by identifier.
965965
* This operation does not retry by default if the user has not defined a retry configuration.
966966
* @param DeleteProjectRequest
967967
* @return DeleteProjectResponse
@@ -1025,7 +1025,7 @@ export class AIServiceVisionClient {
10251025
}
10261026

10271027
/**
1028-
* Get details of a batch document job.
1028+
* Get details of a document batch job.
10291029
*
10301030
* This operation does not retry by default if the user has not defined a retry configuration.
10311031
* @param GetDocumentJobRequest
@@ -1093,7 +1093,7 @@ export class AIServiceVisionClient {
10931093
}
10941094

10951095
/**
1096-
* Get details of a batch image job.
1096+
* Get details of an image batch job.
10971097
*
10981098
* This operation does not retry by default if the user has not defined a retry configuration.
10991099
* @param GetImageJobRequest
@@ -1161,7 +1161,7 @@ export class AIServiceVisionClient {
11611161
}
11621162

11631163
/**
1164-
* Gets a model by identifier.
1164+
* Get a model by identifier.
11651165
* This operation does not retry by default if the user has not defined a retry configuration.
11661166
* @param GetModelRequest
11671167
* @return GetModelResponse
@@ -1228,7 +1228,7 @@ export class AIServiceVisionClient {
12281228
}
12291229

12301230
/**
1231-
* Gets a project by identifier.
1231+
* Get a project by identifier.
12321232
* This operation does not retry by default if the user has not defined a retry configuration.
12331233
* @param GetProjectRequest
12341234
* @return GetProjectResponse
@@ -1518,7 +1518,7 @@ export class AIServiceVisionClient {
15181518
}
15191519

15201520
/**
1521-
* Return a (paginated) list of errors for a given work request.
1521+
* Returns a (paginated) list of errors for a given work request.
15221522
*
15231523
* This operation does not retry by default if the user has not defined a retry configuration.
15241524
* @param ListWorkRequestErrorsRequest
@@ -1741,7 +1741,7 @@ export class AIServiceVisionClient {
17411741
}
17421742

17431743
/**
1744-
* Updates model metadata.
1744+
* Updates the model metadata.
17451745
* This operation does not retry by default if the user has not defined a retry configuration.
17461746
* @param UpdateModelRequest
17471747
* @return UpdateModelResponse
@@ -1810,7 +1810,7 @@ export class AIServiceVisionClient {
18101810
}
18111811

18121812
/**
1813-
* Updates project metadata.
1813+
* Update the project metadata.
18141814
* This operation does not retry by default if the user has not defined a retry configuration.
18151815
* @param UpdateProjectRequest
18161816
* @return UpdateProjectResponse

lib/aivision/lib/model/action-type.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* VisionService API
3-
* A description of the VisionService API.
2+
* Vision API
3+
* Using Vision, you can upload images to detect and classify objects in them. If you have lots of images, you can process them in batch using asynchronous API endpoints. Vision's features are thematically split between Document AI for document-centric images, and Image Analysis for object and scene-based images. Pretrained models and custom models are supported.
44
* OpenAPI spec version: 20220125
55
*
66
*

lib/aivision/lib/model/analyze-document-details.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* VisionService API
3-
* A description of the VisionService API.
2+
* Vision API
3+
* Using Vision, you can upload images to detect and classify objects in them. If you have lots of images, you can process them in batch using asynchronous API endpoints. Vision's features are thematically split between Document AI for document-centric images, and Image Analysis for object and scene-based images. Pretrained models and custom models are supported.
44
* OpenAPI spec version: 20220125
55
*
66
*
@@ -15,11 +15,11 @@ import * as model from "../model";
1515
import common = require("oci-common");
1616

1717
/**
18-
* Details about how to analyze a document.
18+
* The details of how to analyze a document.
1919
*/
2020
export interface AnalyzeDocumentDetails {
2121
/**
22-
* Types of document analysis requested.
22+
* The types of document analysis requested.
2323
*/
2424
"features": Array<model.DocumentFeature>;
2525
"document": model.ObjectStorageDocumentDetails | model.InlineDocumentDetails;
@@ -29,11 +29,11 @@ export interface AnalyzeDocumentDetails {
2929
"compartmentId"?: string;
3030
"outputLocation"?: model.OutputLocation;
3131
/**
32-
* Language of the document, abbreviated according to ISO 639-2.
32+
* The document language, abbreviated according to ISO 639-2.
3333
*/
3434
"language"?: model.DocumentLanguage;
3535
/**
36-
* The type of document.
36+
* The document type.
3737
*/
3838
"documentType"?: model.DocumentType;
3939
}

lib/aivision/lib/model/analyze-document-result.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* VisionService API
3-
* A description of the VisionService API.
2+
* Vision API
3+
* Using Vision, you can upload images to detect and classify objects in them. If you have lots of images, you can process them in batch using asynchronous API endpoints. Vision's features are thematically split between Document AI for document-centric images, and Image Analysis for object and scene-based images. Pretrained models and custom models are supported.
44
* OpenAPI spec version: 20220125
55
*
66
*
@@ -15,12 +15,12 @@ import * as model from "../model";
1515
import common = require("oci-common");
1616

1717
/**
18-
* Document analysis results.
18+
* The document analysis results.
1919
*/
2020
export interface AnalyzeDocumentResult {
2121
"documentMetadata": model.DocumentMetadata;
2222
/**
23-
* Array of Page.
23+
* The array of a Page.
2424
*/
2525
"pages": Array<model.Page>;
2626
/**
@@ -32,31 +32,31 @@ export interface AnalyzeDocumentResult {
3232
*/
3333
"detectedLanguages"?: Array<model.DetectedLanguage>;
3434
/**
35-
* Document classification model version.
35+
* The document classification model version.
3636
*/
3737
"documentClassificationModelVersion"?: string;
3838
/**
39-
* Document language classification model version.
39+
* The document language classification model version.
4040
*/
4141
"languageClassificationModelVersion"?: string;
4242
/**
43-
* Document text detection model version.
43+
* The document text detection model version.
4444
*/
4545
"textDetectionModelVersion"?: string;
4646
/**
47-
* Document keyValue detection model version.
47+
* The document keyValue detection model version.
4848
*/
4949
"keyValueDetectionModelVersion"?: string;
5050
/**
51-
* Document table detection model version.
51+
* The document table detection model version.
5252
*/
5353
"tableDetectionModelVersion"?: string;
5454
/**
55-
* Errors encountered during document analysis.
55+
* The errors encountered during document analysis.
5656
*/
5757
"errors"?: Array<model.ProcessingError>;
5858
/**
59-
* Generated searchable PDF file.
59+
* The searchable PDF file that was generated.
6060
*/
6161
"searchablePdf"?: string;
6262
}

lib/aivision/lib/model/analyze-image-details.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* VisionService API
3-
* A description of the VisionService API.
2+
* Vision API
3+
* Using Vision, you can upload images to detect and classify objects in them. If you have lots of images, you can process them in batch using asynchronous API endpoints. Vision's features are thematically split between Document AI for document-centric images, and Image Analysis for object and scene-based images. Pretrained models and custom models are supported.
44
* OpenAPI spec version: 20220125
55
*
66
*
@@ -15,16 +15,16 @@ import * as model from "../model";
1515
import common = require("oci-common");
1616

1717
/**
18-
* Details about how to analyze an image.
18+
* The details of how to analyze an image.
1919
*/
2020
export interface AnalyzeImageDetails {
2121
/**
22-
* Types of image analysis.
22+
* The types of image analysis.
2323
*/
2424
"features": Array<model.ImageFeature>;
2525
"image": model.ObjectStorageImageDetails | model.InlineImageDetails;
2626
/**
27-
* The ocid of the compartment that calls the API.
27+
* The OCID of the compartment that calls the API.
2828
*/
2929
"compartmentId"?: string;
3030
}

0 commit comments

Comments
 (0)