oci-objectstorage 2.121.1 → 2.122.1
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 +9 -0
- package/lib/client.js +67 -0
- package/lib/client.js.map +1 -1
- package/lib/model/batch-delete-object-identifier.d.ts +37 -0
- package/lib/model/batch-delete-object-identifier.js +32 -0
- package/lib/model/batch-delete-object-identifier.js.map +1 -0
- package/lib/model/batch-delete-objects-details.d.ts +37 -0
- package/lib/model/batch-delete-objects-details.js +64 -0
- package/lib/model/batch-delete-objects-details.js.map +1 -0
- package/lib/model/batch-delete-objects-result.d.ts +36 -0
- package/lib/model/batch-delete-objects-result.js +74 -0
- package/lib/model/batch-delete-objects-result.js.map +1 -0
- package/lib/model/deleted-object-result.d.ts +35 -0
- package/lib/model/deleted-object-result.js +32 -0
- package/lib/model/deleted-object-result.js.map +1 -0
- package/lib/model/failed-object-result.d.ts +41 -0
- package/lib/model/failed-object-result.js +32 -0
- package/lib/model/failed-object-result.js.map +1 -0
- package/lib/model/index.d.ts +10 -0
- package/lib/model/index.js +12 -2
- package/lib/model/index.js.map +1 -1
- package/lib/request/batch-delete-objects-request.d.ts +37 -0
- package/lib/request/batch-delete-objects-request.js +15 -0
- package/lib/request/batch-delete-objects-request.js.map +1 -0
- package/lib/request/index.d.ts +2 -0
- package/lib/request/index.js.map +1 -1
- package/lib/response/batch-delete-objects-response.d.ts +29 -0
- package/lib/response/batch-delete-objects-response.js +15 -0
- package/lib/response/batch-delete-objects-response.js.map +1 -0
- package/lib/response/index.d.ts +2 -0
- package/package.json +3 -3
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Object Storage Service API
|
|
3
|
+
* Use Object Storage and Archive Storage APIs to manage buckets, objects, and related resources.
|
|
4
|
+
For more information, see [Overview of Object Storage](https://docs.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) and
|
|
5
|
+
[Overview of Archive Storage](https://docs.oracle.com/iaas/Content/Archive/Concepts/archivestorageoverview.htm).
|
|
6
|
+
|
|
7
|
+
* OpenAPI spec version: 20160918
|
|
8
|
+
* Contact: opc_casper_users_us_grp@oracle.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*
|
|
13
|
+
* Copyright (c) 2020, 2025, 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
|
+
* Delete object details.
|
|
18
|
+
*
|
|
19
|
+
*/
|
|
20
|
+
export interface BatchDeleteObjectIdentifier {
|
|
21
|
+
/**
|
|
22
|
+
* The name of the object to delete. Avoid entering confidential information.
|
|
23
|
+
* Example: test/object1.log
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
"objectName": string;
|
|
27
|
+
/**
|
|
28
|
+
* The entity tag (ETag) to match. Avoid entering confidential information.
|
|
29
|
+
* Example: etag1
|
|
30
|
+
*
|
|
31
|
+
*/
|
|
32
|
+
"ifMatch"?: string;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace BatchDeleteObjectIdentifier {
|
|
35
|
+
function getJsonObj(obj: BatchDeleteObjectIdentifier): object;
|
|
36
|
+
function getDeserializedJsonObj(obj: BatchDeleteObjectIdentifier): object;
|
|
37
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Object Storage Service API
|
|
4
|
+
* Use Object Storage and Archive Storage APIs to manage buckets, objects, and related resources.
|
|
5
|
+
For more information, see [Overview of Object Storage](https://docs.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) and
|
|
6
|
+
[Overview of Archive Storage](https://docs.oracle.com/iaas/Content/Archive/Concepts/archivestorageoverview.htm).
|
|
7
|
+
|
|
8
|
+
* OpenAPI spec version: 20160918
|
|
9
|
+
* Contact: opc_casper_users_us_grp@oracle.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*
|
|
14
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
15
|
+
* 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.
|
|
16
|
+
*/
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.BatchDeleteObjectIdentifier = void 0;
|
|
19
|
+
var BatchDeleteObjectIdentifier;
|
|
20
|
+
(function (BatchDeleteObjectIdentifier) {
|
|
21
|
+
function getJsonObj(obj) {
|
|
22
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
23
|
+
return jsonObj;
|
|
24
|
+
}
|
|
25
|
+
BatchDeleteObjectIdentifier.getJsonObj = getJsonObj;
|
|
26
|
+
function getDeserializedJsonObj(obj) {
|
|
27
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
28
|
+
return jsonObj;
|
|
29
|
+
}
|
|
30
|
+
BatchDeleteObjectIdentifier.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
31
|
+
})(BatchDeleteObjectIdentifier = exports.BatchDeleteObjectIdentifier || (exports.BatchDeleteObjectIdentifier = {}));
|
|
32
|
+
//# sourceMappingURL=batch-delete-object-identifier.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"batch-delete-object-identifier.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/model/batch-delete-object-identifier.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AAwBH,IAAiB,2BAA2B,CAW3C;AAXD,WAAiB,2BAA2B;IAC1C,SAAgB,UAAU,CAAC,GAAgC;QACzD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,sCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAgC;QACrE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,kDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QAW3C"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Object Storage Service API
|
|
3
|
+
* Use Object Storage and Archive Storage APIs to manage buckets, objects, and related resources.
|
|
4
|
+
For more information, see [Overview of Object Storage](https://docs.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) and
|
|
5
|
+
[Overview of Archive Storage](https://docs.oracle.com/iaas/Content/Archive/Concepts/archivestorageoverview.htm).
|
|
6
|
+
|
|
7
|
+
* OpenAPI spec version: 20160918
|
|
8
|
+
* Contact: opc_casper_users_us_grp@oracle.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*
|
|
13
|
+
* Copyright (c) 2020, 2025, 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
|
+
import * as model from "../model";
|
|
17
|
+
/**
|
|
18
|
+
* Batch delete request details.
|
|
19
|
+
*
|
|
20
|
+
*/
|
|
21
|
+
export interface BatchDeleteObjectsDetails {
|
|
22
|
+
/**
|
|
23
|
+
* The list of the objects to delete.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
"objects": Array<model.BatchDeleteObjectIdentifier>;
|
|
27
|
+
/**
|
|
28
|
+
* Specifies whether to skip the details of successfully deleted objects in the response. If specified true
|
|
29
|
+
* then only the details of failed deletes will be available in the response. Defaults to false.
|
|
30
|
+
*
|
|
31
|
+
*/
|
|
32
|
+
"isSkipDeletedResult"?: boolean;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace BatchDeleteObjectsDetails {
|
|
35
|
+
function getJsonObj(obj: BatchDeleteObjectsDetails): object;
|
|
36
|
+
function getDeserializedJsonObj(obj: BatchDeleteObjectsDetails): object;
|
|
37
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Object Storage Service API
|
|
4
|
+
* Use Object Storage and Archive Storage APIs to manage buckets, objects, and related resources.
|
|
5
|
+
For more information, see [Overview of Object Storage](https://docs.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) and
|
|
6
|
+
[Overview of Archive Storage](https://docs.oracle.com/iaas/Content/Archive/Concepts/archivestorageoverview.htm).
|
|
7
|
+
|
|
8
|
+
* OpenAPI spec version: 20160918
|
|
9
|
+
* Contact: opc_casper_users_us_grp@oracle.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*
|
|
14
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
15
|
+
* 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.
|
|
16
|
+
*/
|
|
17
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
20
|
+
}) : (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
o[k2] = m[k];
|
|
23
|
+
}));
|
|
24
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
25
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
26
|
+
}) : function(o, v) {
|
|
27
|
+
o["default"] = v;
|
|
28
|
+
});
|
|
29
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
30
|
+
if (mod && mod.__esModule) return mod;
|
|
31
|
+
var result = {};
|
|
32
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
__setModuleDefault(result, mod);
|
|
34
|
+
return result;
|
|
35
|
+
};
|
|
36
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
|
+
exports.BatchDeleteObjectsDetails = void 0;
|
|
38
|
+
const model = __importStar(require("../model"));
|
|
39
|
+
var BatchDeleteObjectsDetails;
|
|
40
|
+
(function (BatchDeleteObjectsDetails) {
|
|
41
|
+
function getJsonObj(obj) {
|
|
42
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
43
|
+
"objects": obj.objects
|
|
44
|
+
? obj.objects.map(item => {
|
|
45
|
+
return model.BatchDeleteObjectIdentifier.getJsonObj(item);
|
|
46
|
+
})
|
|
47
|
+
: undefined
|
|
48
|
+
});
|
|
49
|
+
return jsonObj;
|
|
50
|
+
}
|
|
51
|
+
BatchDeleteObjectsDetails.getJsonObj = getJsonObj;
|
|
52
|
+
function getDeserializedJsonObj(obj) {
|
|
53
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
54
|
+
"objects": obj.objects
|
|
55
|
+
? obj.objects.map(item => {
|
|
56
|
+
return model.BatchDeleteObjectIdentifier.getDeserializedJsonObj(item);
|
|
57
|
+
})
|
|
58
|
+
: undefined
|
|
59
|
+
});
|
|
60
|
+
return jsonObj;
|
|
61
|
+
}
|
|
62
|
+
BatchDeleteObjectsDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
63
|
+
})(BatchDeleteObjectsDetails = exports.BatchDeleteObjectsDetails || (exports.BatchDeleteObjectsDetails = {}));
|
|
64
|
+
//# sourceMappingURL=batch-delete-objects-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"batch-delete-objects-details.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/model/batch-delete-objects-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAqBlC,IAAiB,yBAAyB,CA6BzC;AA7BD,WAAiB,yBAAyB;IACxC,SAAgB,UAAU,CAAC,GAA8B;QACvD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,SAAS,EAAE,GAAG,CAAC,OAAO;gBACpB,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACrB,OAAO,KAAK,CAAC,2BAA2B,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC5D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,oCAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA8B;QACnE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,SAAS,EAAE,GAAG,CAAC,OAAO;gBACpB,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACrB,OAAO,KAAK,CAAC,2BAA2B,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACxE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,gDAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QA6BzC"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Object Storage Service API
|
|
3
|
+
* Use Object Storage and Archive Storage APIs to manage buckets, objects, and related resources.
|
|
4
|
+
For more information, see [Overview of Object Storage](https://docs.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) and
|
|
5
|
+
[Overview of Archive Storage](https://docs.oracle.com/iaas/Content/Archive/Concepts/archivestorageoverview.htm).
|
|
6
|
+
|
|
7
|
+
* OpenAPI spec version: 20160918
|
|
8
|
+
* Contact: opc_casper_users_us_grp@oracle.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*
|
|
13
|
+
* Copyright (c) 2020, 2025, 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
|
+
import * as model from "../model";
|
|
17
|
+
/**
|
|
18
|
+
* Result of a batch delete operation.
|
|
19
|
+
*
|
|
20
|
+
*/
|
|
21
|
+
export interface BatchDeleteObjectsResult {
|
|
22
|
+
/**
|
|
23
|
+
* Details of successfully deleted objects.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
"deleted": Array<model.DeletedObjectResult>;
|
|
27
|
+
/**
|
|
28
|
+
* Details of failed delete operations.
|
|
29
|
+
*
|
|
30
|
+
*/
|
|
31
|
+
"failed"?: Array<model.FailedObjectResult>;
|
|
32
|
+
}
|
|
33
|
+
export declare namespace BatchDeleteObjectsResult {
|
|
34
|
+
function getJsonObj(obj: BatchDeleteObjectsResult): object;
|
|
35
|
+
function getDeserializedJsonObj(obj: BatchDeleteObjectsResult): object;
|
|
36
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Object Storage Service API
|
|
4
|
+
* Use Object Storage and Archive Storage APIs to manage buckets, objects, and related resources.
|
|
5
|
+
For more information, see [Overview of Object Storage](https://docs.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) and
|
|
6
|
+
[Overview of Archive Storage](https://docs.oracle.com/iaas/Content/Archive/Concepts/archivestorageoverview.htm).
|
|
7
|
+
|
|
8
|
+
* OpenAPI spec version: 20160918
|
|
9
|
+
* Contact: opc_casper_users_us_grp@oracle.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*
|
|
14
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
15
|
+
* 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.
|
|
16
|
+
*/
|
|
17
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
20
|
+
}) : (function(o, m, k, k2) {
|
|
21
|
+
if (k2 === undefined) k2 = k;
|
|
22
|
+
o[k2] = m[k];
|
|
23
|
+
}));
|
|
24
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
25
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
26
|
+
}) : function(o, v) {
|
|
27
|
+
o["default"] = v;
|
|
28
|
+
});
|
|
29
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
30
|
+
if (mod && mod.__esModule) return mod;
|
|
31
|
+
var result = {};
|
|
32
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
__setModuleDefault(result, mod);
|
|
34
|
+
return result;
|
|
35
|
+
};
|
|
36
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
|
+
exports.BatchDeleteObjectsResult = void 0;
|
|
38
|
+
const model = __importStar(require("../model"));
|
|
39
|
+
var BatchDeleteObjectsResult;
|
|
40
|
+
(function (BatchDeleteObjectsResult) {
|
|
41
|
+
function getJsonObj(obj) {
|
|
42
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
43
|
+
"deleted": obj.deleted
|
|
44
|
+
? obj.deleted.map(item => {
|
|
45
|
+
return model.DeletedObjectResult.getJsonObj(item);
|
|
46
|
+
})
|
|
47
|
+
: undefined,
|
|
48
|
+
"failed": obj.failed
|
|
49
|
+
? obj.failed.map(item => {
|
|
50
|
+
return model.FailedObjectResult.getJsonObj(item);
|
|
51
|
+
})
|
|
52
|
+
: undefined
|
|
53
|
+
});
|
|
54
|
+
return jsonObj;
|
|
55
|
+
}
|
|
56
|
+
BatchDeleteObjectsResult.getJsonObj = getJsonObj;
|
|
57
|
+
function getDeserializedJsonObj(obj) {
|
|
58
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
59
|
+
"deleted": obj.deleted
|
|
60
|
+
? obj.deleted.map(item => {
|
|
61
|
+
return model.DeletedObjectResult.getDeserializedJsonObj(item);
|
|
62
|
+
})
|
|
63
|
+
: undefined,
|
|
64
|
+
"failed": obj.failed
|
|
65
|
+
? obj.failed.map(item => {
|
|
66
|
+
return model.FailedObjectResult.getDeserializedJsonObj(item);
|
|
67
|
+
})
|
|
68
|
+
: undefined
|
|
69
|
+
});
|
|
70
|
+
return jsonObj;
|
|
71
|
+
}
|
|
72
|
+
BatchDeleteObjectsResult.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
73
|
+
})(BatchDeleteObjectsResult = exports.BatchDeleteObjectsResult || (exports.BatchDeleteObjectsResult = {}));
|
|
74
|
+
//# sourceMappingURL=batch-delete-objects-result.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"batch-delete-objects-result.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/model/batch-delete-objects-result.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAoBlC,IAAiB,wBAAwB,CAuCxC;AAvCD,WAAiB,wBAAwB;IACvC,SAAgB,UAAU,CAAC,GAA6B;QACtD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,SAAS,EAAE,GAAG,CAAC,OAAO;gBACpB,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACrB,OAAO,KAAK,CAAC,mBAAmB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACpD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YACb,QAAQ,EAAE,GAAG,CAAC,MAAM;gBAClB,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACpB,OAAO,KAAK,CAAC,kBAAkB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACnD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAlBe,mCAAU,aAkBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA6B;QAClE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,SAAS,EAAE,GAAG,CAAC,OAAO;gBACpB,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACrB,OAAO,KAAK,CAAC,mBAAmB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAChE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YACb,QAAQ,EAAE,GAAG,CAAC,MAAM;gBAClB,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACpB,OAAO,KAAK,CAAC,kBAAkB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC/D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAlBe,+CAAsB,yBAkBrC,CAAA;AACH,CAAC,EAvCgB,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAuCxC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Object Storage Service API
|
|
3
|
+
* Use Object Storage and Archive Storage APIs to manage buckets, objects, and related resources.
|
|
4
|
+
For more information, see [Overview of Object Storage](https://docs.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) and
|
|
5
|
+
[Overview of Archive Storage](https://docs.oracle.com/iaas/Content/Archive/Concepts/archivestorageoverview.htm).
|
|
6
|
+
|
|
7
|
+
* OpenAPI spec version: 20160918
|
|
8
|
+
* Contact: opc_casper_users_us_grp@oracle.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*
|
|
13
|
+
* Copyright (c) 2020, 2025, 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
|
+
* Delete object details.
|
|
18
|
+
*
|
|
19
|
+
*/
|
|
20
|
+
export interface DeletedObjectResult {
|
|
21
|
+
/**
|
|
22
|
+
* The name of the deleted object. Avoid entering confidential information.
|
|
23
|
+
* Example: test/object1.log
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
"objectName": string;
|
|
27
|
+
/**
|
|
28
|
+
* The time the object was deleted, as described in [RFC 2616](https://tools.ietf.org/html/rfc2616#section-14.29).
|
|
29
|
+
*/
|
|
30
|
+
"timeLastModified": Date;
|
|
31
|
+
}
|
|
32
|
+
export declare namespace DeletedObjectResult {
|
|
33
|
+
function getJsonObj(obj: DeletedObjectResult): object;
|
|
34
|
+
function getDeserializedJsonObj(obj: DeletedObjectResult): object;
|
|
35
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Object Storage Service API
|
|
4
|
+
* Use Object Storage and Archive Storage APIs to manage buckets, objects, and related resources.
|
|
5
|
+
For more information, see [Overview of Object Storage](https://docs.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) and
|
|
6
|
+
[Overview of Archive Storage](https://docs.oracle.com/iaas/Content/Archive/Concepts/archivestorageoverview.htm).
|
|
7
|
+
|
|
8
|
+
* OpenAPI spec version: 20160918
|
|
9
|
+
* Contact: opc_casper_users_us_grp@oracle.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*
|
|
14
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
15
|
+
* 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.
|
|
16
|
+
*/
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.DeletedObjectResult = void 0;
|
|
19
|
+
var DeletedObjectResult;
|
|
20
|
+
(function (DeletedObjectResult) {
|
|
21
|
+
function getJsonObj(obj) {
|
|
22
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
23
|
+
return jsonObj;
|
|
24
|
+
}
|
|
25
|
+
DeletedObjectResult.getJsonObj = getJsonObj;
|
|
26
|
+
function getDeserializedJsonObj(obj) {
|
|
27
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
28
|
+
return jsonObj;
|
|
29
|
+
}
|
|
30
|
+
DeletedObjectResult.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
31
|
+
})(DeletedObjectResult = exports.DeletedObjectResult || (exports.DeletedObjectResult = {}));
|
|
32
|
+
//# sourceMappingURL=deleted-object-result.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deleted-object-result.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/model/deleted-object-result.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AAsBH,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"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Object Storage Service API
|
|
3
|
+
* Use Object Storage and Archive Storage APIs to manage buckets, objects, and related resources.
|
|
4
|
+
For more information, see [Overview of Object Storage](https://docs.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) and
|
|
5
|
+
[Overview of Archive Storage](https://docs.oracle.com/iaas/Content/Archive/Concepts/archivestorageoverview.htm).
|
|
6
|
+
|
|
7
|
+
* OpenAPI spec version: 20160918
|
|
8
|
+
* Contact: opc_casper_users_us_grp@oracle.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*
|
|
13
|
+
* Copyright (c) 2020, 2025, 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
|
+
* Failed object details.
|
|
18
|
+
*
|
|
19
|
+
*/
|
|
20
|
+
export interface FailedObjectResult {
|
|
21
|
+
/**
|
|
22
|
+
* The name of the object.
|
|
23
|
+
* Example: test/object1.log
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
"objectName": string;
|
|
27
|
+
/**
|
|
28
|
+
* HTTP status code for the failure.
|
|
29
|
+
* Example: 409
|
|
30
|
+
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
31
|
+
*/
|
|
32
|
+
"statusCode": number;
|
|
33
|
+
/**
|
|
34
|
+
* Detailed error message on why the delete/update was failed.
|
|
35
|
+
*/
|
|
36
|
+
"errorMessage": string;
|
|
37
|
+
}
|
|
38
|
+
export declare namespace FailedObjectResult {
|
|
39
|
+
function getJsonObj(obj: FailedObjectResult): object;
|
|
40
|
+
function getDeserializedJsonObj(obj: FailedObjectResult): object;
|
|
41
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Object Storage Service API
|
|
4
|
+
* Use Object Storage and Archive Storage APIs to manage buckets, objects, and related resources.
|
|
5
|
+
For more information, see [Overview of Object Storage](https://docs.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) and
|
|
6
|
+
[Overview of Archive Storage](https://docs.oracle.com/iaas/Content/Archive/Concepts/archivestorageoverview.htm).
|
|
7
|
+
|
|
8
|
+
* OpenAPI spec version: 20160918
|
|
9
|
+
* Contact: opc_casper_users_us_grp@oracle.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*
|
|
14
|
+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
15
|
+
* 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.
|
|
16
|
+
*/
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.FailedObjectResult = void 0;
|
|
19
|
+
var FailedObjectResult;
|
|
20
|
+
(function (FailedObjectResult) {
|
|
21
|
+
function getJsonObj(obj) {
|
|
22
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
23
|
+
return jsonObj;
|
|
24
|
+
}
|
|
25
|
+
FailedObjectResult.getJsonObj = getJsonObj;
|
|
26
|
+
function getDeserializedJsonObj(obj) {
|
|
27
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
28
|
+
return jsonObj;
|
|
29
|
+
}
|
|
30
|
+
FailedObjectResult.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
31
|
+
})(FailedObjectResult = exports.FailedObjectResult || (exports.FailedObjectResult = {}));
|
|
32
|
+
//# sourceMappingURL=failed-object-result.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"failed-object-result.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/model/failed-object-result.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;AA4BH,IAAiB,kBAAkB,CAWlC;AAXD,WAAiB,kBAAkB;IACjC,SAAgB,UAAU,CAAC,GAAuB;QAChD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAuB;QAC5D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,yCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAWlC"}
|
package/lib/model/index.d.ts
CHANGED
|
@@ -17,6 +17,12 @@ import * as AccessTargetDetails from "./access-target-details";
|
|
|
17
17
|
export import AccessTargetDetails = AccessTargetDetails.AccessTargetDetails;
|
|
18
18
|
import * as ArchivalState from "./archival-state";
|
|
19
19
|
export import ArchivalState = ArchivalState.ArchivalState;
|
|
20
|
+
import * as BatchDeleteObjectIdentifier from "./batch-delete-object-identifier";
|
|
21
|
+
export import BatchDeleteObjectIdentifier = BatchDeleteObjectIdentifier.BatchDeleteObjectIdentifier;
|
|
22
|
+
import * as BatchDeleteObjectsDetails from "./batch-delete-objects-details";
|
|
23
|
+
export import BatchDeleteObjectsDetails = BatchDeleteObjectsDetails.BatchDeleteObjectsDetails;
|
|
24
|
+
import * as BatchDeleteObjectsResult from "./batch-delete-objects-result";
|
|
25
|
+
export import BatchDeleteObjectsResult = BatchDeleteObjectsResult.BatchDeleteObjectsResult;
|
|
20
26
|
import * as Bucket from "./bucket";
|
|
21
27
|
export import Bucket = Bucket.Bucket;
|
|
22
28
|
import * as BucketSummary from "./bucket-summary";
|
|
@@ -41,8 +47,12 @@ import * as CreateReplicationPolicyDetails from "./create-replication-policy-det
|
|
|
41
47
|
export import CreateReplicationPolicyDetails = CreateReplicationPolicyDetails.CreateReplicationPolicyDetails;
|
|
42
48
|
import * as CreateRetentionRuleDetails from "./create-retention-rule-details";
|
|
43
49
|
export import CreateRetentionRuleDetails = CreateRetentionRuleDetails.CreateRetentionRuleDetails;
|
|
50
|
+
import * as DeletedObjectResult from "./deleted-object-result";
|
|
51
|
+
export import DeletedObjectResult = DeletedObjectResult.DeletedObjectResult;
|
|
44
52
|
import * as Duration from "./duration";
|
|
45
53
|
export import Duration = Duration.Duration;
|
|
54
|
+
import * as FailedObjectResult from "./failed-object-result";
|
|
55
|
+
export import FailedObjectResult = FailedObjectResult.FailedObjectResult;
|
|
46
56
|
import * as Fqdns from "./fqdns";
|
|
47
57
|
export import Fqdns = Fqdns.Fqdns;
|
|
48
58
|
import * as ListObjects from "./list-objects";
|
package/lib/model/index.js
CHANGED
|
@@ -34,12 +34,18 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
34
34
|
return result;
|
|
35
35
|
};
|
|
36
36
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
|
-
exports.
|
|
38
|
-
exports.WorkRequestSummary = exports.WorkRequestResourceMetadataKey = exports.WorkRequestResource = exports.WorkRequestLogEntry = exports.WorkRequestError = exports.WorkRequest = void 0;
|
|
37
|
+
exports.StorageTier = exports.SSECustomerKeyDetails = exports.RetentionRuleSummary = exports.RetentionRuleDetails = exports.RetentionRuleCollection = exports.RetentionRule = exports.RestoreObjectsDetails = exports.ReplicationSource = exports.ReplicationPolicySummary = exports.ReplicationPolicy = exports.RenameObjectDetails = exports.ReencryptObjectDetails = exports.PutObjectLifecyclePolicyDetails = exports.PrivateEndpointSummary = exports.PrivateEndpoint = exports.PrefixFqdns = exports.PreauthenticatedRequestSummary = exports.PreauthenticatedRequest = exports.PatternDetails = exports.ObjectVersionSummary = exports.ObjectVersionCollection = exports.ObjectSummary = exports.ObjectNameFilter = exports.ObjectLifecycleRule = exports.ObjectLifecyclePolicy = exports.NamespaceMetadata = exports.MultipartUploadPartSummary = exports.MultipartUpload = exports.ListObjects = exports.Fqdns = exports.FailedObjectResult = exports.Duration = exports.DeletedObjectResult = exports.CreateRetentionRuleDetails = exports.CreateReplicationPolicyDetails = exports.CreatePrivateEndpointDetails = exports.CreatePreauthenticatedRequestDetails = exports.CreateMultipartUploadDetails = exports.CreateBucketDetails = exports.CopyObjectDetails = exports.CommitMultipartUploadPartDetails = exports.CommitMultipartUploadDetails = exports.ChecksumAlgorithm = exports.BucketSummary = exports.Bucket = exports.BatchDeleteObjectsResult = exports.BatchDeleteObjectsDetails = exports.BatchDeleteObjectIdentifier = exports.ArchivalState = exports.AccessTargetDetails = void 0;
|
|
38
|
+
exports.WorkRequestSummary = exports.WorkRequestResourceMetadataKey = exports.WorkRequestResource = exports.WorkRequestLogEntry = exports.WorkRequestError = exports.WorkRequest = exports.UpdateRetentionRuleDetails = exports.UpdatePrivateEndpointDetails = exports.UpdateObjectStorageTierDetails = exports.UpdateNamespaceMetadataDetails = exports.UpdateBucketDetails = void 0;
|
|
39
39
|
const AccessTargetDetails = __importStar(require("./access-target-details"));
|
|
40
40
|
exports.AccessTargetDetails = AccessTargetDetails.AccessTargetDetails;
|
|
41
41
|
const ArchivalState = __importStar(require("./archival-state"));
|
|
42
42
|
exports.ArchivalState = ArchivalState.ArchivalState;
|
|
43
|
+
const BatchDeleteObjectIdentifier = __importStar(require("./batch-delete-object-identifier"));
|
|
44
|
+
exports.BatchDeleteObjectIdentifier = BatchDeleteObjectIdentifier.BatchDeleteObjectIdentifier;
|
|
45
|
+
const BatchDeleteObjectsDetails = __importStar(require("./batch-delete-objects-details"));
|
|
46
|
+
exports.BatchDeleteObjectsDetails = BatchDeleteObjectsDetails.BatchDeleteObjectsDetails;
|
|
47
|
+
const BatchDeleteObjectsResult = __importStar(require("./batch-delete-objects-result"));
|
|
48
|
+
exports.BatchDeleteObjectsResult = BatchDeleteObjectsResult.BatchDeleteObjectsResult;
|
|
43
49
|
const Bucket = __importStar(require("./bucket"));
|
|
44
50
|
exports.Bucket = Bucket.Bucket;
|
|
45
51
|
const BucketSummary = __importStar(require("./bucket-summary"));
|
|
@@ -64,8 +70,12 @@ const CreateReplicationPolicyDetails = __importStar(require("./create-replicatio
|
|
|
64
70
|
exports.CreateReplicationPolicyDetails = CreateReplicationPolicyDetails.CreateReplicationPolicyDetails;
|
|
65
71
|
const CreateRetentionRuleDetails = __importStar(require("./create-retention-rule-details"));
|
|
66
72
|
exports.CreateRetentionRuleDetails = CreateRetentionRuleDetails.CreateRetentionRuleDetails;
|
|
73
|
+
const DeletedObjectResult = __importStar(require("./deleted-object-result"));
|
|
74
|
+
exports.DeletedObjectResult = DeletedObjectResult.DeletedObjectResult;
|
|
67
75
|
const Duration = __importStar(require("./duration"));
|
|
68
76
|
exports.Duration = Duration.Duration;
|
|
77
|
+
const FailedObjectResult = __importStar(require("./failed-object-result"));
|
|
78
|
+
exports.FailedObjectResult = FailedObjectResult.FailedObjectResult;
|
|
69
79
|
const Fqdns = __importStar(require("./fqdns"));
|
|
70
80
|
exports.Fqdns = Fqdns.Fqdns;
|
|
71
81
|
const ListObjects = __importStar(require("./list-objects"));
|
package/lib/model/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/model/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/model/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;;;;;;;;;;;;;;;;;;;;;AAEH,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,0FAA4E;AAC9D,QAAA,yBAAyB,GAAG,yBAAyB,CAAC,yBAAyB,CAAC;AAC9F,wFAA0E;AAC5D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,iDAAmC;AACrB,QAAA,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;AACrC,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,wEAA0D;AAC5C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,gGAAkF;AACpE,QAAA,4BAA4B,GAAG,4BAA4B,CAAC,4BAA4B,CAAC;AACvG,yGAA2F;AAC7E,QAAA,gCAAgC,GAAG,gCAAgC,CAAC,gCAAgC,CAAC;AACnH,yEAA2D;AAC7C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,gGAAkF;AACpE,QAAA,4BAA4B,GAAG,4BAA4B,CAAC,4BAA4B,CAAC;AACvG,gHAAkG;AACpF,QAAA,oCAAoC,GAAG,oCAAoC,CAAC,oCAAoC,CAAC;AAC/H,gGAAkF;AACpE,QAAA,4BAA4B,GAAG,4BAA4B,CAAC,4BAA4B,CAAC;AACvG,oGAAsF;AACxE,QAAA,8BAA8B,GAAG,8BAA8B,CAAC,8BAA8B,CAAC;AAC7G,4FAA8E;AAChE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,qDAAuC;AACzB,QAAA,QAAQ,GAAG,QAAQ,CAAC,QAAQ,CAAC;AAC3C,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,+CAAiC;AACnB,QAAA,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;AAClC,4DAA8C;AAChC,QAAA,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;AACpD,oEAAsD;AACxC,QAAA,eAAe,GAAG,eAAe,CAAC,eAAe,CAAC;AAChE,4FAA8E;AAChE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,wEAA0D;AAC5C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,iFAAmE;AACrD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,qFAAuE;AACzD,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,kEAAoD;AACtC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,oFAAsE;AACxD,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,mGAAqF;AACvE,QAAA,8BAA8B,GAAG,8BAA8B,CAAC,8BAA8B,CAAC;AAC7G,4DAA8C;AAChC,QAAA,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;AACpD,oEAAsD;AACxC,QAAA,eAAe,GAAG,eAAe,CAAC,eAAe,CAAC;AAChE,mFAAqE;AACvD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,uGAAyF;AAC3E,QAAA,+BAA+B,GAAG,+BAA+B,CAAC,+BAA+B,CAAC;AAChH,mFAAqE;AACvD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,wEAA0D;AAC5C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,uFAAyE;AAC3D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAC3F,wEAA0D;AAC5C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,iFAAmE;AACrD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,gEAAkD;AACpC,QAAA,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC;AAC1D,qFAAuE;AACzD,QAAA,uBAAuB,GAAG,uBAAuB,CAAC,uBAAuB,CAAC;AACxF,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,+EAAiE;AACnD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,mFAAqE;AACvD,QAAA,qBAAqB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC;AAClF,4DAA8C;AAChC,QAAA,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;AACpD,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,oGAAsF;AACxE,QAAA,8BAA8B,GAAG,8BAA8B,CAAC,8BAA8B,CAAC;AAC7G,qGAAuF;AACzE,QAAA,8BAA8B,GAAG,8BAA8B,CAAC,8BAA8B,CAAC;AAC7G,gGAAkF;AACpE,QAAA,4BAA4B,GAAG,4BAA4B,CAAC,4BAA4B,CAAC;AACvG,4FAA8E;AAChE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AACjG,4DAA8C;AAChC,QAAA,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC;AACpD,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AACnE,8EAAgE;AAClD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAC5E,qGAAuF;AACzE,QAAA,8BAA8B,GAAG,8BAA8B,CAAC,8BAA8B,CAAC;AAC7G,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20160918
|
|
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 * as model from "../model";
|
|
14
|
+
import common = require("oci-common");
|
|
15
|
+
/**
|
|
16
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/objectstorage/BatchDeleteObjects.ts.html |here} to see how to use BatchDeleteObjectsRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface BatchDeleteObjectsRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* The Object Storage namespace used for the request.
|
|
21
|
+
*/
|
|
22
|
+
"namespaceName": string;
|
|
23
|
+
/**
|
|
24
|
+
* The name of the bucket. Avoid entering confidential information.
|
|
25
|
+
* Example: {@code my-new-bucket1}
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
"bucketName": string;
|
|
29
|
+
/**
|
|
30
|
+
* Details about batch of objects to be deleted.
|
|
31
|
+
*/
|
|
32
|
+
"batchDeleteObjectsDetails": model.BatchDeleteObjectsDetails;
|
|
33
|
+
/**
|
|
34
|
+
* The client request ID for tracing.
|
|
35
|
+
*/
|
|
36
|
+
"opcClientRequestId"?: string;
|
|
37
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20160918
|
|
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=batch-delete-objects-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"batch-delete-objects-request.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/request/batch-delete-objects-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/lib/request/index.d.ts
CHANGED
|
@@ -15,6 +15,8 @@ For more information, see [Overview of Object Storage](https://docs.oracle.com/i
|
|
|
15
15
|
*/
|
|
16
16
|
import * as AbortMultipartUploadRequest from "./abort-multipart-upload-request";
|
|
17
17
|
export import AbortMultipartUploadRequest = AbortMultipartUploadRequest.AbortMultipartUploadRequest;
|
|
18
|
+
import * as BatchDeleteObjectsRequest from "./batch-delete-objects-request";
|
|
19
|
+
export import BatchDeleteObjectsRequest = BatchDeleteObjectsRequest.BatchDeleteObjectsRequest;
|
|
18
20
|
import * as CancelWorkRequestRequest from "./cancel-work-request-request";
|
|
19
21
|
export import CancelWorkRequestRequest = CancelWorkRequestRequest.CancelWorkRequestRequest;
|
|
20
22
|
import * as CommitMultipartUploadRequest from "./commit-multipart-upload-request";
|
package/lib/request/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;;;;;;;;;;;;;;;;;;;;AAsCH,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AAuBnE,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AAWzE,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC"}
|