oci-mysql 2.109.1 → 2.111.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +10 -0
- package/lib/client.js +63 -0
- package/lib/client.js.map +1 -1
- package/lib/model/backup-policy.d.ts +6 -0
- package/lib/model/backup-policy.js.map +1 -1
- package/lib/model/backup-summary.d.ts +10 -0
- package/lib/model/backup-summary.js.map +1 -1
- package/lib/model/backup.d.ts +7 -0
- package/lib/model/backup.js +1 -0
- package/lib/model/backup.js.map +1 -1
- package/lib/model/create-backup-details.d.ts +7 -0
- package/lib/model/create-backup-details.js.map +1 -1
- package/lib/model/create-backup-policy-details.d.ts +6 -0
- package/lib/model/create-backup-policy-details.js.map +1 -1
- package/lib/model/create-db-system-details.d.ts +1 -0
- package/lib/model/create-db-system-details.js +2 -0
- package/lib/model/create-db-system-details.js.map +1 -1
- package/lib/model/create-rest-details.d.ts +31 -0
- package/lib/model/create-rest-details.js +29 -0
- package/lib/model/create-rest-details.js.map +1 -0
- package/lib/model/db-system-snapshot.d.ts +1 -0
- package/lib/model/db-system-snapshot.js +2 -0
- package/lib/model/db-system-snapshot.js.map +1 -1
- package/lib/model/db-system-summary.d.ts +1 -0
- package/lib/model/db-system-summary.js +2 -0
- package/lib/model/db-system-summary.js.map +1 -1
- package/lib/model/db-system.d.ts +1 -0
- package/lib/model/db-system.js +2 -0
- package/lib/model/db-system.js.map +1 -1
- package/lib/model/index.d.ts +10 -0
- package/lib/model/index.js +13 -3
- package/lib/model/index.js.map +1 -1
- package/lib/model/rest-configuration-type.d.ts +29 -0
- package/lib/model/rest-configuration-type.js +40 -0
- package/lib/model/rest-configuration-type.js.map +1 -0
- package/lib/model/rest-details.d.ts +31 -0
- package/lib/model/rest-details.js +29 -0
- package/lib/model/rest-details.js.map +1 -0
- package/lib/model/soft-delete.d.ts +35 -0
- package/lib/model/soft-delete.js +46 -0
- package/lib/model/soft-delete.js.map +1 -0
- package/lib/model/update-backup-details.d.ts +7 -0
- package/lib/model/update-backup-details.js.map +1 -1
- package/lib/model/update-backup-policy-details.d.ts +6 -0
- package/lib/model/update-backup-policy-details.js.map +1 -1
- package/lib/model/update-db-system-details.d.ts +1 -0
- package/lib/model/update-db-system-details.js +2 -0
- package/lib/model/update-db-system-details.js.map +1 -1
- package/lib/model/update-rest-details.d.ts +31 -0
- package/lib/model/update-rest-details.js +29 -0
- package/lib/model/update-rest-details.js.map +1 -0
- package/lib/request/cancel-backup-deletion-request.d.ts +48 -0
- package/lib/request/cancel-backup-deletion-request.js +15 -0
- package/lib/request/cancel-backup-deletion-request.js.map +1 -0
- package/lib/request/index.d.ts +2 -0
- package/lib/request/index.js.map +1 -1
- package/lib/request/list-backups-request.d.ts +5 -0
- package/lib/request/list-backups-request.js.map +1 -1
- package/lib/response/cancel-backup-deletion-response.d.ts +25 -0
- package/lib/response/cancel-backup-deletion-response.js +15 -0
- package/lib/response/cancel-backup-deletion-response.js.map +1 -0
- package/lib/response/index.d.ts +2 -0
- package/package.json +3 -3
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* MySQL Database Service API
|
|
4
|
+
* The API for the MySQL Database Service
|
|
5
|
+
* OpenAPI spec version: 20190415
|
|
6
|
+
* Contact: mysql-cloud-dev_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* 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.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.RestDetails = void 0;
|
|
16
|
+
var RestDetails;
|
|
17
|
+
(function (RestDetails) {
|
|
18
|
+
function getJsonObj(obj) {
|
|
19
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
20
|
+
return jsonObj;
|
|
21
|
+
}
|
|
22
|
+
RestDetails.getJsonObj = getJsonObj;
|
|
23
|
+
function getDeserializedJsonObj(obj) {
|
|
24
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
25
|
+
return jsonObj;
|
|
26
|
+
}
|
|
27
|
+
RestDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
28
|
+
})(RestDetails = exports.RestDetails || (exports.RestDetails = {}));
|
|
29
|
+
//# sourceMappingURL=rest-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rest-details.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/rest-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAoBH,IAAiB,WAAW,CAW3B;AAXD,WAAiB,WAAW;IAC1B,SAAgB,UAAU,CAAC,GAAgB;QACzC,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,sBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAgB;QACrD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,kCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAW3B"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MySQL Database Service API
|
|
3
|
+
* The API for the MySQL Database Service
|
|
4
|
+
* OpenAPI spec version: 20190415
|
|
5
|
+
* Contact: mysql-cloud-dev_ww_grp@oracle.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* 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.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED
|
|
15
|
+
* state for 7 days before permanently deleting it.
|
|
16
|
+
* <p>
|
|
17
|
+
If soft delete is enabled, then it retains the backup in DELETE SCHEDULED state for
|
|
18
|
+
* 7 days before permanently deleting it.
|
|
19
|
+
* <p>
|
|
20
|
+
If soft delete is disabled, then it permanently deletes the backup immediately.
|
|
21
|
+
*
|
|
22
|
+
**/
|
|
23
|
+
export declare enum SoftDelete {
|
|
24
|
+
Enabled = "ENABLED",
|
|
25
|
+
Disabled = "DISABLED",
|
|
26
|
+
/**
|
|
27
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
28
|
+
* version of the SDK.
|
|
29
|
+
*/
|
|
30
|
+
UnknownValue = "UNKNOWN_VALUE"
|
|
31
|
+
}
|
|
32
|
+
export declare namespace SoftDelete {
|
|
33
|
+
function getJsonObj(obj: SoftDelete): SoftDelete;
|
|
34
|
+
function getDeserializedJsonObj(obj: SoftDelete): SoftDelete;
|
|
35
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* MySQL Database Service API
|
|
4
|
+
* The API for the MySQL Database Service
|
|
5
|
+
* OpenAPI spec version: 20190415
|
|
6
|
+
* Contact: mysql-cloud-dev_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* 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.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.SoftDelete = void 0;
|
|
16
|
+
/**
|
|
17
|
+
* Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED
|
|
18
|
+
* state for 7 days before permanently deleting it.
|
|
19
|
+
* <p>
|
|
20
|
+
If soft delete is enabled, then it retains the backup in DELETE SCHEDULED state for
|
|
21
|
+
* 7 days before permanently deleting it.
|
|
22
|
+
* <p>
|
|
23
|
+
If soft delete is disabled, then it permanently deletes the backup immediately.
|
|
24
|
+
*
|
|
25
|
+
**/
|
|
26
|
+
var SoftDelete;
|
|
27
|
+
(function (SoftDelete) {
|
|
28
|
+
SoftDelete["Enabled"] = "ENABLED";
|
|
29
|
+
SoftDelete["Disabled"] = "DISABLED";
|
|
30
|
+
/**
|
|
31
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
32
|
+
* version of the SDK.
|
|
33
|
+
*/
|
|
34
|
+
SoftDelete["UnknownValue"] = "UNKNOWN_VALUE";
|
|
35
|
+
})(SoftDelete = exports.SoftDelete || (exports.SoftDelete = {}));
|
|
36
|
+
(function (SoftDelete) {
|
|
37
|
+
function getJsonObj(obj) {
|
|
38
|
+
return obj;
|
|
39
|
+
}
|
|
40
|
+
SoftDelete.getJsonObj = getJsonObj;
|
|
41
|
+
function getDeserializedJsonObj(obj) {
|
|
42
|
+
return obj;
|
|
43
|
+
}
|
|
44
|
+
SoftDelete.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
45
|
+
})(SoftDelete = exports.SoftDelete || (exports.SoftDelete = {}));
|
|
46
|
+
//# sourceMappingURL=soft-delete.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"soft-delete.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/soft-delete.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAKH;;;;;;;;;GASG;AACH,IAAY,UASX;AATD,WAAY,UAAU;IACpB,iCAAmB,CAAA;IACnB,mCAAqB,CAAA;IAErB;;;OAGG;IACH,4CAA8B,CAAA;AAChC,CAAC,EATW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QASrB;AAED,WAAiB,UAAU;IACzB,SAAgB,UAAU,CAAC,GAAe;QACxC,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,qBAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAe;QACpD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,iCAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAO1B"}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
11
11
|
* 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.
|
|
12
12
|
*/
|
|
13
|
+
import * as model from "../model";
|
|
13
14
|
/**
|
|
14
15
|
* The Backup metadata which can be updated.
|
|
15
16
|
*
|
|
@@ -23,6 +24,12 @@ export interface UpdateBackupDetails {
|
|
|
23
24
|
* A user-supplied description for the backup.
|
|
24
25
|
*/
|
|
25
26
|
"description"?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED
|
|
29
|
+
* state for 7 days before permanently deleting it.
|
|
30
|
+
*
|
|
31
|
+
*/
|
|
32
|
+
"softDelete"?: model.SoftDelete;
|
|
26
33
|
/**
|
|
27
34
|
* The number of days backups are retained.
|
|
28
35
|
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-backup-details.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/update-backup-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;
|
|
1
|
+
{"version":3,"file":"update-backup-details.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/update-backup-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AA2CH,IAAiB,mBAAmB,CAWnC;AAXD,WAAiB,mBAAmB;IAClC,SAAgB,UAAU,CAAC,GAAwB;QACjD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,8BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAwB;QAC7D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,0CAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAWnC"}
|
|
@@ -21,6 +21,12 @@ export interface UpdateBackupPolicyDetails {
|
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
23
|
"isEnabled"?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Retains the backup to be deleted due to the retention policy in DELETE SCHEDULED
|
|
26
|
+
* state for 7 days before permanently deleting it.
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
"softDelete"?: model.SoftDelete;
|
|
24
30
|
/**
|
|
25
31
|
* List of policies of a DB system to schedule cross-region DB system backup copy.
|
|
26
32
|
* <p>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-backup-policy-details.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/update-backup-policy-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"update-backup-policy-details.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/update-backup-policy-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA+DlC,IAAiB,yBAAyB,CAmCzC;AAnCD,WAAiB,yBAAyB;IACxC,SAAgB,UAAU,CAAC,GAA8B;QACvD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC1B,OAAO,KAAK,CAAC,UAAU,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC3C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YAEb,YAAY,EAAE,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,UAAU,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,SAAS;SACvF,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAfe,oCAAU,aAezB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA8B;QACnE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC1B,OAAO,KAAK,CAAC,UAAU,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACvD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YAEb,YAAY,EAAE,GAAG,CAAC,UAAU;gBAC1B,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,sBAAsB,CAAC,GAAG,CAAC,UAAU,CAAC;gBACzD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAjBe,gDAAsB,yBAiBrC,CAAA;AACH,CAAC,EAnCgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAmCzC"}
|
|
@@ -37,6 +37,7 @@ var UpdateDbSystemDetails;
|
|
|
37
37
|
(function (UpdateDbSystemDetails) {
|
|
38
38
|
function getJsonObj(obj) {
|
|
39
39
|
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
40
|
+
"rest": obj.rest ? model.UpdateRestDetails.getJsonObj(obj.rest) : undefined,
|
|
40
41
|
"dataStorage": obj.dataStorage
|
|
41
42
|
? model.DataStorageDetails.getJsonObj(obj.dataStorage)
|
|
42
43
|
: undefined,
|
|
@@ -66,6 +67,7 @@ var UpdateDbSystemDetails;
|
|
|
66
67
|
UpdateDbSystemDetails.getJsonObj = getJsonObj;
|
|
67
68
|
function getDeserializedJsonObj(obj) {
|
|
68
69
|
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
70
|
+
"rest": obj.rest ? model.UpdateRestDetails.getDeserializedJsonObj(obj.rest) : undefined,
|
|
69
71
|
"dataStorage": obj.dataStorage
|
|
70
72
|
? model.DataStorageDetails.getDeserializedJsonObj(obj.dataStorage)
|
|
71
73
|
: undefined,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-db-system-details.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/update-db-system-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"update-db-system-details.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/update-db-system-details.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MySQL Database Service API
|
|
3
|
+
* The API for the MySQL Database Service
|
|
4
|
+
* OpenAPI spec version: 20190415
|
|
5
|
+
* Contact: mysql-cloud-dev_ww_grp@oracle.com
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* 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.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
/**
|
|
15
|
+
* Details required to configure REST while updating a DB System.
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateRestDetails {
|
|
19
|
+
/**
|
|
20
|
+
* Select how REST is configured across the DB System instances.
|
|
21
|
+
*/
|
|
22
|
+
"configuration": model.RestConfigurationType;
|
|
23
|
+
/**
|
|
24
|
+
* The port for REST to listen on. Supported port numbers are 443 and from 1024 to 65535. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
25
|
+
*/
|
|
26
|
+
"port"?: number;
|
|
27
|
+
}
|
|
28
|
+
export declare namespace UpdateRestDetails {
|
|
29
|
+
function getJsonObj(obj: UpdateRestDetails): object;
|
|
30
|
+
function getDeserializedJsonObj(obj: UpdateRestDetails): object;
|
|
31
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* MySQL Database Service API
|
|
4
|
+
* The API for the MySQL Database Service
|
|
5
|
+
* OpenAPI spec version: 20190415
|
|
6
|
+
* Contact: mysql-cloud-dev_ww_grp@oracle.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* 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.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.UpdateRestDetails = void 0;
|
|
16
|
+
var UpdateRestDetails;
|
|
17
|
+
(function (UpdateRestDetails) {
|
|
18
|
+
function getJsonObj(obj) {
|
|
19
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
20
|
+
return jsonObj;
|
|
21
|
+
}
|
|
22
|
+
UpdateRestDetails.getJsonObj = getJsonObj;
|
|
23
|
+
function getDeserializedJsonObj(obj) {
|
|
24
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
25
|
+
return jsonObj;
|
|
26
|
+
}
|
|
27
|
+
UpdateRestDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
28
|
+
})(UpdateRestDetails = exports.UpdateRestDetails || (exports.UpdateRestDetails = {}));
|
|
29
|
+
//# sourceMappingURL=update-rest-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-rest-details.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/model/update-rest-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAoBH,IAAiB,iBAAiB,CAWjC;AAXD,WAAiB,iBAAiB;IAChC,SAAgB,UAAU,CAAC,GAAsB;QAC/C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,4BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAsB;QAC3D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,wCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAWjC"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20190415
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* 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.
|
|
12
|
+
*/
|
|
13
|
+
import common = require("oci-common");
|
|
14
|
+
/**
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/CancelBackupDeletion.ts.html |here} to see how to use CancelBackupDeletionRequest.
|
|
16
|
+
*/
|
|
17
|
+
export interface CancelBackupDeletionRequest extends common.BaseRequest {
|
|
18
|
+
/**
|
|
19
|
+
* The OCID of the Backup
|
|
20
|
+
*/
|
|
21
|
+
"backupId": string;
|
|
22
|
+
/**
|
|
23
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a
|
|
24
|
+
* resource, set the {@code If-Match} header to the value of the etag from a
|
|
25
|
+
* previous GET or POST response for that resource. The resource will be
|
|
26
|
+
* updated or deleted only if the etag you provide matches the resource's
|
|
27
|
+
* current etag value.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
"ifMatch"?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Customer-defined unique identifier for the request. If you need to
|
|
33
|
+
* contact Oracle about a specific request, please provide the request
|
|
34
|
+
* ID that you supplied in this header with the request.
|
|
35
|
+
*
|
|
36
|
+
*/
|
|
37
|
+
"opcRequestId"?: string;
|
|
38
|
+
/**
|
|
39
|
+
* A token that uniquely identifies a request so it can be retried in case
|
|
40
|
+
* of a timeout or server error without risk of executing that same action
|
|
41
|
+
* again. Retry tokens expire after 24 hours, but can be invalidated before
|
|
42
|
+
* then due to conflicting operations (for example, if a resource has been
|
|
43
|
+
* deleted and purged from the system, then a retry of the original
|
|
44
|
+
* creation request may be rejected).
|
|
45
|
+
*
|
|
46
|
+
*/
|
|
47
|
+
"opcRetryToken"?: string;
|
|
48
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20190415
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* 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.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=cancel-backup-deletion-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cancel-backup-deletion-request.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/request/cancel-backup-deletion-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/lib/request/index.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ import * as ResumeChannelRequest from "./resume-channel-request";
|
|
|
24
24
|
export import ResumeChannelRequest = ResumeChannelRequest.ResumeChannelRequest;
|
|
25
25
|
import * as UpdateChannelRequest from "./update-channel-request";
|
|
26
26
|
export import UpdateChannelRequest = UpdateChannelRequest.UpdateChannelRequest;
|
|
27
|
+
import * as CancelBackupDeletionRequest from "./cancel-backup-deletion-request";
|
|
28
|
+
export import CancelBackupDeletionRequest = CancelBackupDeletionRequest.CancelBackupDeletionRequest;
|
|
27
29
|
import * as ChangeBackupCompartmentRequest from "./change-backup-compartment-request";
|
|
28
30
|
export import ChangeBackupCompartmentRequest = ChangeBackupCompartmentRequest.ChangeBackupCompartmentRequest;
|
|
29
31
|
import * as CopyBackupRequest from "./copy-backup-request";
|
package/lib/request/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAQH,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAQH,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAmB5E,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AAmBzE,gFAAkE;AACpD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAuB/E,yFAA2E;AAC7D,QAAA,yBAAyB,GAAG,yBAAyB,CAAC,yBAAyB,CAAC;AAC9F,yEAA2D;AAC7C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AAWtE,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAS5E,sFAAwE;AAC1D,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC"}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
11
11
|
* 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.
|
|
12
12
|
*/
|
|
13
|
+
import * as model from "../model";
|
|
13
14
|
import common = require("oci-common");
|
|
14
15
|
/**
|
|
15
16
|
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/mysql/ListBackups.ts.html |here} to see how to use ListBackupsRequest.
|
|
@@ -42,6 +43,10 @@ export interface ListBackupsRequest extends common.BaseRequest {
|
|
|
42
43
|
* A filter to return only the resource matching the given display name exactly.
|
|
43
44
|
*/
|
|
44
45
|
"displayName"?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Backup Soft Delete
|
|
48
|
+
*/
|
|
49
|
+
"softDelete"?: model.SoftDelete;
|
|
45
50
|
/**
|
|
46
51
|
* Backup creationType
|
|
47
52
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-backups-request.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/request/list-backups-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;
|
|
1
|
+
{"version":3,"file":"list-backups-request.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/request/list-backups-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAoEH,IAAiB,kBAAkB,CAWlC;AAXD,WAAiB,kBAAkB;IACjC,IAAY,MAIX;IAJD,WAAY,MAAM;QAChB,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;IAC7B,CAAC,EAJW,MAAM,GAAN,yBAAM,KAAN,yBAAM,QAIjB;IAED,IAAY,SAGX;IAHD,WAAY,SAAS;QACnB,wBAAW,CAAA;QACX,0BAAa,CAAA;IACf,CAAC,EAHW,SAAS,GAAT,4BAAS,KAAT,4BAAS,QAGpB;AACH,CAAC,EAXgB,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAWlC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20190415
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* 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.
|
|
12
|
+
*/
|
|
13
|
+
export interface CancelBackupDeletionResponse {
|
|
14
|
+
/**
|
|
15
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact
|
|
16
|
+
* Oracle about a particular request, please provide the request ID.
|
|
17
|
+
*
|
|
18
|
+
*/
|
|
19
|
+
"opcRequestId": string;
|
|
20
|
+
/**
|
|
21
|
+
* Unique Oracle-assigned identifier for the asynchronous request. You can use this to query status of the asynchronous operation.
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
"opcWorkRequestId": string;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20190415
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* 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.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=cancel-backup-deletion-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cancel-backup-deletion-response.js","sourceRoot":"","sources":["../../../../../lib/mysql/lib/response/cancel-backup-deletion-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/lib/response/index.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ import * as ResumeChannelResponse from "./resume-channel-response";
|
|
|
24
24
|
export import ResumeChannelResponse = ResumeChannelResponse.ResumeChannelResponse;
|
|
25
25
|
import * as UpdateChannelResponse from "./update-channel-response";
|
|
26
26
|
export import UpdateChannelResponse = UpdateChannelResponse.UpdateChannelResponse;
|
|
27
|
+
import * as CancelBackupDeletionResponse from "./cancel-backup-deletion-response";
|
|
28
|
+
export import CancelBackupDeletionResponse = CancelBackupDeletionResponse.CancelBackupDeletionResponse;
|
|
27
29
|
import * as ChangeBackupCompartmentResponse from "./change-backup-compartment-response";
|
|
28
30
|
export import ChangeBackupCompartmentResponse = ChangeBackupCompartmentResponse.ChangeBackupCompartmentResponse;
|
|
29
31
|
import * as CopyBackupResponse from "./copy-backup-response";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-mysql",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.111.0",
|
|
4
4
|
"description": "OCI NodeJS client for Mysql ",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "(UPL-1.0 OR Apache-2.0)",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"oci-common": "2.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.111.0",
|
|
19
|
+
"oci-workrequests": "2.111.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|