Skip to content

Commit 47fec44

Browse files
Releasing version 2.13.0
Releasing version 2.13.0
2 parents 3839415 + 0b64b17 commit 47fec44

File tree

363 files changed

+6371
-880
lines changed

Some content is hidden

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

363 files changed

+6371
-880
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
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.13.0 - 2022-02-08
7+
### Added
8+
- Support for managing tablespaces in the Database Management service
9+
- Support for upgrading and managing payment for subscriptions in the Account Management service
10+
- Support for listing fast launch job configurations in the Data Science service
11+
12+
### Breaking Changes
13+
- Support for retries enabled by default on all operations in the Application Performance Monitoring service
14+
- The data type of the property BillToAddress was changed from `Address` to `BillToAddress` for the Invoice model of the Account Management service
15+
616
## 2.12.1 - 2022-02-01
717
### Added
818
- Support for calling Oracle Cloud Infrastructure services in the ap-dcc-canberra-1 region

lib/aianomalydetection/lib/client.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export enum AnomalyDetectionApiKeys {}
3232
export class AnomalyDetectionClient {
3333
protected static serviceEndpointTemplate =
3434
"https://anomalydetection.aiservice.{region}.oci.{secondLevelDomain}";
35+
protected static endpointServiceName = "";
3536
protected "_endpoint": string = "";
3637
protected "_defaultHeaders": any = {};
3738
protected "_waiters": AnomalyDetectionWaiter;
@@ -102,7 +103,8 @@ export class AnomalyDetectionClient {
102103
public set region(region: common.Region) {
103104
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(
104105
AnomalyDetectionClient.serviceEndpointTemplate,
105-
region
106+
region,
107+
AnomalyDetectionClient.endpointServiceName
106108
);
107109
}
108110

@@ -117,7 +119,8 @@ export class AnomalyDetectionClient {
117119
public set regionId(regionId: string) {
118120
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(
119121
AnomalyDetectionClient.serviceEndpointTemplate,
120-
regionId
122+
regionId,
123+
AnomalyDetectionClient.endpointServiceName
121124
);
122125
}
123126

lib/aianomalydetection/package.json

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

lib/ailanguage/lib/client.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export enum AIServiceLanguageApiKeys {}
3131
export class AIServiceLanguageClient {
3232
protected static serviceEndpointTemplate =
3333
"https://language.aiservice.{region}.oci.{secondLevelDomain}";
34+
protected static endpointServiceName = "";
3435
protected "_endpoint": string = "";
3536
protected "_defaultHeaders": any = {};
3637
protected "_clientConfiguration": common.ClientConfiguration;
@@ -100,7 +101,8 @@ export class AIServiceLanguageClient {
100101
public set region(region: common.Region) {
101102
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(
102103
AIServiceLanguageClient.serviceEndpointTemplate,
103-
region
104+
region,
105+
AIServiceLanguageClient.endpointServiceName
104106
);
105107
}
106108

@@ -115,7 +117,8 @@ export class AIServiceLanguageClient {
115117
public set regionId(regionId: string) {
116118
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(
117119
AIServiceLanguageClient.serviceEndpointTemplate,
118-
regionId
120+
regionId,
121+
AIServiceLanguageClient.endpointServiceName
119122
);
120123
}
121124

lib/ailanguage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-ailanguage",
3-
"version": "2.12.1",
3+
"version": "2.13.0",
44
"description": "OCI NodeJS client for Ai Language Service",
55
"repository": {
66
"type": "git",

lib/analytics/lib/client.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export enum AnalyticsApiKeys {}
3030
*/
3131
export class AnalyticsClient {
3232
protected static serviceEndpointTemplate = "https://analytics.{region}.ocp.{secondLevelDomain}";
33+
protected static endpointServiceName = "";
3334
protected "_endpoint": string = "";
3435
protected "_defaultHeaders": any = {};
3536
protected "_waiters": AnalyticsWaiter;
@@ -100,7 +101,8 @@ export class AnalyticsClient {
100101
public set region(region: common.Region) {
101102
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(
102103
AnalyticsClient.serviceEndpointTemplate,
103-
region
104+
region,
105+
AnalyticsClient.endpointServiceName
104106
);
105107
}
106108

@@ -115,7 +117,8 @@ export class AnalyticsClient {
115117
public set regionId(regionId: string) {
116118
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(
117119
AnalyticsClient.serviceEndpointTemplate,
118-
regionId
120+
regionId,
121+
AnalyticsClient.endpointServiceName
119122
);
120123
}
121124

lib/analytics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-analytics",
3-
"version": "2.12.1",
3+
"version": "2.13.0",
44
"description": "OCI NodeJS client for Analytics Service",
55
"repository": {
66
"type": "git",

lib/announcementsservice/lib/client.ts

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export enum AnnouncementApiKeys {}
2828
*/
2929
export class AnnouncementClient {
3030
protected static serviceEndpointTemplate = "https://announcements.{region}.{secondLevelDomain}";
31+
protected static endpointServiceName = "";
3132
protected "_endpoint": string = "";
3233
protected "_defaultHeaders": any = {};
3334
protected "_clientConfiguration": common.ClientConfiguration;
@@ -97,7 +98,8 @@ export class AnnouncementClient {
9798
public set region(region: common.Region) {
9899
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(
99100
AnnouncementClient.serviceEndpointTemplate,
100-
region
101+
region,
102+
AnnouncementClient.endpointServiceName
101103
);
102104
}
103105

@@ -112,7 +114,8 @@ export class AnnouncementClient {
112114
public set regionId(regionId: string) {
113115
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(
114116
AnnouncementClient.serviceEndpointTemplate,
115-
regionId
117+
regionId,
118+
AnnouncementClient.endpointServiceName
116119
);
117120
}
118121

@@ -397,6 +400,7 @@ export enum AnnouncementsPreferencesApiKeys {}
397400
*/
398401
export class AnnouncementsPreferencesClient {
399402
protected static serviceEndpointTemplate = "https://announcements.{region}.{secondLevelDomain}";
403+
protected static endpointServiceName = "";
400404
protected "_endpoint": string = "";
401405
protected "_defaultHeaders": any = {};
402406
protected "_clientConfiguration": common.ClientConfiguration;
@@ -467,7 +471,8 @@ export class AnnouncementsPreferencesClient {
467471
public set region(region: common.Region) {
468472
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(
469473
AnnouncementsPreferencesClient.serviceEndpointTemplate,
470-
region
474+
region,
475+
AnnouncementsPreferencesClient.endpointServiceName
471476
);
472477
}
473478

@@ -482,7 +487,8 @@ export class AnnouncementsPreferencesClient {
482487
public set regionId(regionId: string) {
483488
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(
484489
AnnouncementsPreferencesClient.serviceEndpointTemplate,
485-
regionId
490+
regionId,
491+
AnnouncementsPreferencesClient.endpointServiceName
486492
);
487493
}
488494

lib/announcementsservice/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-announcementsservice",
3-
"version": "2.12.1",
3+
"version": "2.13.0",
44
"description": "OCI NodeJS client for Announcement Service",
55
"repository": {
66
"type": "git",

lib/apigateway/lib/client.ts

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export enum ApiGatewayApiKeys {}
3434
*/
3535
export class ApiGatewayClient {
3636
protected static serviceEndpointTemplate = "https://apigateway.{region}.oci.{secondLevelDomain}";
37+
protected static endpointServiceName = "";
3738
protected "_endpoint": string = "";
3839
protected "_defaultHeaders": any = {};
3940
protected "_waiters": ApiGatewayWaiter;
@@ -104,7 +105,8 @@ export class ApiGatewayClient {
104105
public set region(region: common.Region) {
105106
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(
106107
ApiGatewayClient.serviceEndpointTemplate,
107-
region
108+
region,
109+
ApiGatewayClient.endpointServiceName
108110
);
109111
}
110112

@@ -119,7 +121,8 @@ export class ApiGatewayClient {
119121
public set regionId(regionId: string) {
120122
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(
121123
ApiGatewayClient.serviceEndpointTemplate,
122-
regionId
124+
regionId,
125+
ApiGatewayClient.endpointServiceName
123126
);
124127
}
125128

@@ -1649,6 +1652,7 @@ export enum DeploymentApiKeys {}
16491652
*/
16501653
export class DeploymentClient {
16511654
protected static serviceEndpointTemplate = "https://apigateway.{region}.oci.{secondLevelDomain}";
1655+
protected static endpointServiceName = "";
16521656
protected "_endpoint": string = "";
16531657
protected "_defaultHeaders": any = {};
16541658
protected "_waiters": DeploymentWaiter;
@@ -1719,7 +1723,8 @@ export class DeploymentClient {
17191723
public set region(region: common.Region) {
17201724
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(
17211725
DeploymentClient.serviceEndpointTemplate,
1722-
region
1726+
region,
1727+
DeploymentClient.endpointServiceName
17231728
);
17241729
}
17251730

@@ -1734,7 +1739,8 @@ export class DeploymentClient {
17341739
public set regionId(regionId: string) {
17351740
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(
17361741
DeploymentClient.serviceEndpointTemplate,
1737-
regionId
1742+
regionId,
1743+
DeploymentClient.endpointServiceName
17381744
);
17391745
}
17401746

@@ -2200,6 +2206,7 @@ export enum GatewayApiKeys {}
22002206
*/
22012207
export class GatewayClient {
22022208
protected static serviceEndpointTemplate = "https://apigateway.{region}.oci.{secondLevelDomain}";
2209+
protected static endpointServiceName = "";
22032210
protected "_endpoint": string = "";
22042211
protected "_defaultHeaders": any = {};
22052212
protected "_waiters": GatewayWaiter;
@@ -2270,7 +2277,8 @@ export class GatewayClient {
22702277
public set region(region: common.Region) {
22712278
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(
22722279
GatewayClient.serviceEndpointTemplate,
2273-
region
2280+
region,
2281+
GatewayClient.endpointServiceName
22742282
);
22752283
}
22762284

@@ -2285,7 +2293,8 @@ export class GatewayClient {
22852293
public set regionId(regionId: string) {
22862294
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(
22872295
GatewayClient.serviceEndpointTemplate,
2288-
regionId
2296+
regionId,
2297+
GatewayClient.endpointServiceName
22892298
);
22902299
}
22912300

@@ -2750,6 +2759,7 @@ export enum WorkRequestsApiKeys {}
27502759
*/
27512760
export class WorkRequestsClient {
27522761
protected static serviceEndpointTemplate = "https://apigateway.{region}.oci.{secondLevelDomain}";
2762+
protected static endpointServiceName = "";
27532763
protected "_endpoint": string = "";
27542764
protected "_defaultHeaders": any = {};
27552765
protected "_waiters": WorkRequestsWaiter;
@@ -2820,7 +2830,8 @@ export class WorkRequestsClient {
28202830
public set region(region: common.Region) {
28212831
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(
28222832
WorkRequestsClient.serviceEndpointTemplate,
2823-
region
2833+
region,
2834+
WorkRequestsClient.endpointServiceName
28242835
);
28252836
}
28262837

@@ -2835,7 +2846,8 @@ export class WorkRequestsClient {
28352846
public set regionId(regionId: string) {
28362847
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(
28372848
WorkRequestsClient.serviceEndpointTemplate,
2838-
regionId
2849+
regionId,
2850+
WorkRequestsClient.endpointServiceName
28392851
);
28402852
}
28412853

0 commit comments

Comments
 (0)