Skip to content

Commit b669956

Browse files
authored
Releasing version 1.19.3
Releasing version 1.19.3
2 parents 6db8218 + 0906afb commit b669956

File tree

300 files changed

+13979
-104
lines changed

Some content is hidden

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

300 files changed

+13979
-104
lines changed

CHANGELOG.md

+7
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.19.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.19.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

index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,6 @@ export import goldengate = require("oci-goldengate");
158158
export import networkloadbalancer = require("oci-networkloadbalancer");
159159
export import vulnerabilityscanning = require("oci-vulnerabilityscanning");
160160
export import databasemigration = require("oci-databasemigration");
161+
export import ailanguage = require("oci-ailanguage");
162+
export import operatoraccesscontrol = require("oci-operatoraccesscontrol");
163+
export import servicecatalog = require("oci-servicecatalog");

lib/ailanguage/README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
# OCI NodeJS client for Ai Language Service
3+
4+
This module enables you to write code to manage resources for Ai Language Service.
5+
6+
## Requirements
7+
8+
To use this module, you must have the following:
9+
10+
- An Oracle Cloud Infrastructure account.
11+
- A user created in that account, in a group with a policy that grants the desired permissions. This can be a user for yourself, or another person/system that needs to call the API. For an example of how to set up a new user, group, compartment, and policy, see [Adding Users](https://docs.cloud.oracle.com/en-us/iaas/Content/GSG/Tasks/addingusers.htm). For a list of typical policies you may want to use, see [Common Policies](https://docs.cloud.oracle.com/en-us/iaas/Content/Identity/Concepts/commonpolicies.htm).
12+
- A key pair used for signing API requests, with the public key uploaded to Oracle. Only the user calling the API should be in possession of the private key. For more information, see [Configuring Credentials](https://docs.cloud.oracle.com/en-us/iaas/Content/API/SDKDocs/typescriptsdkgettingstarted.htm#Configure)
13+
14+
## Installing
15+
16+
Use the following command to install this module:
17+
18+
```
19+
npm install oci-ailanguage
20+
```
21+
22+
Alternatively you can git clone this repo.

lib/ailanguage/index.ts

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/**
2+
* Oracle Cloud Infrastructure Artificial Intelligence Services API
3+
* OCI AI Service solutions can help Enterprise customers integrate AI into their products immediately using our proven,
4+
pre-trained and custom models or containers, without a need to set up an house team of AI and ML experts.
5+
This allows enterprises to focus on business drivers and development work rather than AI and ML operations, which shortens the time to market.
6+
7+
* OpenAPI spec version: 20210101
8+
*
9+
*
10+
* NOTE: This class is auto generated by OracleSDKGenerator.
11+
* Do not edit the class manually.
12+
*
13+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
14+
* 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.
15+
*/
16+
17+
import * as requests from "./lib/request";
18+
import * as models from "./lib/model";
19+
import * as responses from "./lib/response";
20+
import * as client from "./lib/client";
21+
22+
export { models };
23+
export { requests };
24+
export { responses };
25+
export import AIServiceLanguageClient = client.AIServiceLanguageClient;

0 commit comments

Comments
 (0)