oci-objectstorage 2.92.0 → 2.94.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.
Files changed (82) hide show
  1. package/lib/client.d.ts +94 -2
  2. package/lib/client.js +411 -2
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/access-target-details.d.ts +39 -0
  5. package/lib/model/access-target-details.js +32 -0
  6. package/lib/model/access-target-details.js.map +1 -0
  7. package/lib/model/create-private-endpoint-details.d.ts +96 -0
  8. package/lib/model/create-private-endpoint-details.js +64 -0
  9. package/lib/model/create-private-endpoint-details.js.map +1 -0
  10. package/lib/model/fqdns.d.ts +34 -0
  11. package/lib/model/fqdns.js +65 -0
  12. package/lib/model/fqdns.js.map +1 -0
  13. package/lib/model/index.d.ts +14 -0
  14. package/lib/model/index.js +16 -1
  15. package/lib/model/index.js.map +1 -1
  16. package/lib/model/prefix-fqdns.d.ts +40 -0
  17. package/lib/model/prefix-fqdns.js +32 -0
  18. package/lib/model/prefix-fqdns.js.map +1 -0
  19. package/lib/model/private-endpoint-summary.d.ts +70 -0
  20. package/lib/model/private-endpoint-summary.js +56 -0
  21. package/lib/model/private-endpoint-summary.js.map +1 -0
  22. package/lib/model/private-endpoint.d.ts +140 -0
  23. package/lib/model/private-endpoint.js +81 -0
  24. package/lib/model/private-endpoint.js.map +1 -0
  25. package/lib/model/update-private-endpoint-details.d.ts +62 -0
  26. package/lib/model/update-private-endpoint-details.js +64 -0
  27. package/lib/model/update-private-endpoint-details.js.map +1 -0
  28. package/lib/model/work-request-resource-metadata-key.d.ts +2 -1
  29. package/lib/model/work-request-resource-metadata-key.js +1 -0
  30. package/lib/model/work-request-resource-metadata-key.js.map +1 -1
  31. package/lib/model/work-request-summary.d.ts +3 -0
  32. package/lib/model/work-request-summary.js +3 -0
  33. package/lib/model/work-request-summary.js.map +1 -1
  34. package/lib/model/work-request.d.ts +3 -0
  35. package/lib/model/work-request.js +3 -0
  36. package/lib/model/work-request.js.map +1 -1
  37. package/lib/objectstorage-waiter.d.ts +9 -0
  38. package/lib/objectstorage-waiter.js +32 -0
  39. package/lib/objectstorage-waiter.js.map +1 -1
  40. package/lib/request/create-private-endpoint-request.d.ts +31 -0
  41. package/lib/request/create-private-endpoint-request.js +15 -0
  42. package/lib/request/create-private-endpoint-request.js.map +1 -0
  43. package/lib/request/delete-private-endpoint-request.d.ts +39 -0
  44. package/lib/request/delete-private-endpoint-request.js +15 -0
  45. package/lib/request/delete-private-endpoint-request.js.map +1 -0
  46. package/lib/request/get-private-endpoint-request.d.ts +46 -0
  47. package/lib/request/get-private-endpoint-request.js +15 -0
  48. package/lib/request/get-private-endpoint-request.js.map +1 -0
  49. package/lib/request/index.d.ts +10 -0
  50. package/lib/request/index.js +3 -1
  51. package/lib/request/index.js.map +1 -1
  52. package/lib/request/list-object-versions-request.d.ts +3 -3
  53. package/lib/request/list-objects-request.d.ts +3 -3
  54. package/lib/request/list-private-endpoints-request.d.ts +60 -0
  55. package/lib/request/list-private-endpoints-request.js +23 -0
  56. package/lib/request/list-private-endpoints-request.js.map +1 -0
  57. package/lib/request/list-work-requests-request.d.ts +4 -0
  58. package/lib/request/put-object-request.d.ts +1 -1
  59. package/lib/request/restore-objects-request.d.ts +1 -1
  60. package/lib/request/update-private-endpoint-request.d.ts +44 -0
  61. package/lib/request/update-private-endpoint-request.js +15 -0
  62. package/lib/request/update-private-endpoint-request.js.map +1 -0
  63. package/lib/request/upload-part-request.d.ts +1 -1
  64. package/lib/response/commit-multipart-upload-response.d.ts +1 -1
  65. package/lib/response/create-private-endpoint-response.d.ts +30 -0
  66. package/lib/response/create-private-endpoint-response.js +15 -0
  67. package/lib/response/create-private-endpoint-response.js.map +1 -0
  68. package/lib/response/delete-private-endpoint-response.d.ts +30 -0
  69. package/lib/response/delete-private-endpoint-response.js +15 -0
  70. package/lib/response/delete-private-endpoint-response.js.map +1 -0
  71. package/lib/response/get-private-endpoint-response.d.ts +40 -0
  72. package/lib/response/get-private-endpoint-response.js +15 -0
  73. package/lib/response/get-private-endpoint-response.js.map +1 -0
  74. package/lib/response/index.d.ts +10 -0
  75. package/lib/response/list-private-endpoints-response.d.ts +40 -0
  76. package/lib/response/list-private-endpoints-response.js +15 -0
  77. package/lib/response/list-private-endpoints-response.js.map +1 -0
  78. package/lib/response/put-object-response.d.ts +1 -1
  79. package/lib/response/update-private-endpoint-response.d.ts +30 -0
  80. package/lib/response/update-private-endpoint-response.js +15 -0
  81. package/lib/response/update-private-endpoint-response.js.map +1 -0
  82. package/package.json +3 -3
@@ -0,0 +1,46 @@
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, 2024, 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.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/objectstorage/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpointRequest.
16
+ */
17
+ export interface GetPrivateEndpointRequest extends common.BaseRequest {
18
+ /**
19
+ * The Object Storage namespace used for the request.
20
+ */
21
+ "namespaceName": string;
22
+ /**
23
+ * The name of the private endpoint. Avoid entering confidential information.
24
+ * Example: {@code my-new-pe-1}
25
+ *
26
+ */
27
+ "peName": string;
28
+ /**
29
+ * The entity tag (ETag) to match with the ETag of an existing resource. If the specified ETag matches the ETag of
30
+ * the existing resource, GET and HEAD requests will return the resource and PUT and POST requests will upload
31
+ * the resource.
32
+ *
33
+ */
34
+ "ifMatch"?: string;
35
+ /**
36
+ * The entity tag (ETag) to avoid matching. Wildcards ('*') are not allowed. If the specified ETag does not
37
+ * match the ETag of the existing resource, the request returns the expected response. If the ETag matches
38
+ * the ETag of the existing resource, the request returns an HTTP 304 status without a response body.
39
+ *
40
+ */
41
+ "ifNoneMatch"?: string;
42
+ /**
43
+ * The client request ID for tracing.
44
+ */
45
+ "opcClientRequestId"?: string;
46
+ }
@@ -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, 2024, 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=get-private-endpoint-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-private-endpoint-request.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/request/get-private-endpoint-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -27,6 +27,8 @@ import * as CreateMultipartUploadRequest from "./create-multipart-upload-request
27
27
  export import CreateMultipartUploadRequest = CreateMultipartUploadRequest.CreateMultipartUploadRequest;
28
28
  import * as CreatePreauthenticatedRequestRequest from "./create-preauthenticated-request-request";
29
29
  export import CreatePreauthenticatedRequestRequest = CreatePreauthenticatedRequestRequest.CreatePreauthenticatedRequestRequest;
30
+ import * as CreatePrivateEndpointRequest from "./create-private-endpoint-request";
31
+ export import CreatePrivateEndpointRequest = CreatePrivateEndpointRequest.CreatePrivateEndpointRequest;
30
32
  import * as CreateReplicationPolicyRequest from "./create-replication-policy-request";
31
33
  export import CreateReplicationPolicyRequest = CreateReplicationPolicyRequest.CreateReplicationPolicyRequest;
32
34
  import * as CreateRetentionRuleRequest from "./create-retention-rule-request";
@@ -39,6 +41,8 @@ import * as DeleteObjectLifecyclePolicyRequest from "./delete-object-lifecycle-p
39
41
  export import DeleteObjectLifecyclePolicyRequest = DeleteObjectLifecyclePolicyRequest.DeleteObjectLifecyclePolicyRequest;
40
42
  import * as DeletePreauthenticatedRequestRequest from "./delete-preauthenticated-request-request";
41
43
  export import DeletePreauthenticatedRequestRequest = DeletePreauthenticatedRequestRequest.DeletePreauthenticatedRequestRequest;
44
+ import * as DeletePrivateEndpointRequest from "./delete-private-endpoint-request";
45
+ export import DeletePrivateEndpointRequest = DeletePrivateEndpointRequest.DeletePrivateEndpointRequest;
42
46
  import * as DeleteReplicationPolicyRequest from "./delete-replication-policy-request";
43
47
  export import DeleteReplicationPolicyRequest = DeleteReplicationPolicyRequest.DeleteReplicationPolicyRequest;
44
48
  import * as DeleteRetentionRuleRequest from "./delete-retention-rule-request";
@@ -55,6 +59,8 @@ import * as GetObjectLifecyclePolicyRequest from "./get-object-lifecycle-policy-
55
59
  export import GetObjectLifecyclePolicyRequest = GetObjectLifecyclePolicyRequest.GetObjectLifecyclePolicyRequest;
56
60
  import * as GetPreauthenticatedRequestRequest from "./get-preauthenticated-request-request";
57
61
  export import GetPreauthenticatedRequestRequest = GetPreauthenticatedRequestRequest.GetPreauthenticatedRequestRequest;
62
+ import * as GetPrivateEndpointRequest from "./get-private-endpoint-request";
63
+ export import GetPrivateEndpointRequest = GetPrivateEndpointRequest.GetPrivateEndpointRequest;
58
64
  import * as GetReplicationPolicyRequest from "./get-replication-policy-request";
59
65
  export import GetReplicationPolicyRequest = GetReplicationPolicyRequest.GetReplicationPolicyRequest;
60
66
  import * as GetRetentionRuleRequest from "./get-retention-rule-request";
@@ -77,6 +83,8 @@ import * as ListObjectsRequest from "./list-objects-request";
77
83
  export import ListObjectsRequest = ListObjectsRequest.ListObjectsRequest;
78
84
  import * as ListPreauthenticatedRequestsRequest from "./list-preauthenticated-requests-request";
79
85
  export import ListPreauthenticatedRequestsRequest = ListPreauthenticatedRequestsRequest.ListPreauthenticatedRequestsRequest;
86
+ import * as ListPrivateEndpointsRequest from "./list-private-endpoints-request";
87
+ export import ListPrivateEndpointsRequest = ListPrivateEndpointsRequest.ListPrivateEndpointsRequest;
80
88
  import * as ListReplicationPoliciesRequest from "./list-replication-policies-request";
81
89
  export import ListReplicationPoliciesRequest = ListReplicationPoliciesRequest.ListReplicationPoliciesRequest;
82
90
  import * as ListReplicationSourcesRequest from "./list-replication-sources-request";
@@ -109,6 +117,8 @@ import * as UpdateNamespaceMetadataRequest from "./update-namespace-metadata-req
109
117
  export import UpdateNamespaceMetadataRequest = UpdateNamespaceMetadataRequest.UpdateNamespaceMetadataRequest;
110
118
  import * as UpdateObjectStorageTierRequest from "./update-object-storage-tier-request";
111
119
  export import UpdateObjectStorageTierRequest = UpdateObjectStorageTierRequest.UpdateObjectStorageTierRequest;
120
+ import * as UpdatePrivateEndpointRequest from "./update-private-endpoint-request";
121
+ export import UpdatePrivateEndpointRequest = UpdatePrivateEndpointRequest.UpdatePrivateEndpointRequest;
112
122
  import * as UpdateRetentionRuleRequest from "./update-retention-rule-request";
113
123
  export import UpdateRetentionRuleRequest = UpdateRetentionRuleRequest.UpdateRetentionRuleRequest;
114
124
  import * as UploadPartRequest from "./upload-part-request";
@@ -34,9 +34,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
34
34
  return result;
35
35
  };
36
36
  Object.defineProperty(exports, "__esModule", { value: true });
37
- exports.ListBucketsRequest = exports.GetBucketRequest = void 0;
37
+ exports.ListPrivateEndpointsRequest = exports.ListBucketsRequest = exports.GetBucketRequest = void 0;
38
38
  const GetBucketRequest = __importStar(require("./get-bucket-request"));
39
39
  exports.GetBucketRequest = GetBucketRequest.GetBucketRequest;
40
40
  const ListBucketsRequest = __importStar(require("./list-buckets-request"));
41
41
  exports.ListBucketsRequest = ListBucketsRequest.ListBucketsRequest;
42
+ const ListPrivateEndpointsRequest = __importStar(require("./list-private-endpoints-request"));
43
+ exports.ListPrivateEndpointsRequest = ListPrivateEndpointsRequest.ListPrivateEndpointsRequest;
42
44
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;;;;;;;;;;;;;;;;;;;;AAgCH,uEAAyD;AAC3C,QAAA,gBAAgB,GAAG,gBAAgB,CAAC,gBAAgB,CAAC;AAqBnE,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;;;;;;;;;;;;;;;;;;;;;AAoCH,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"}
@@ -30,11 +30,11 @@ export interface ListObjectVersionsRequest extends common.BaseRequest {
30
30
  */
31
31
  "prefix"?: string;
32
32
  /**
33
- * Object names returned by a list query must be greater or equal to this parameter.
33
+ * Returns object names which are lexicographically greater than or equal to this parameter.
34
34
  */
35
35
  "start"?: string;
36
36
  /**
37
- * Object names returned by a list query must be strictly less than this parameter.
37
+ * Returns object names which are lexicographically strictly less than this parameter.
38
38
  */
39
39
  "end"?: string;
40
40
  /**
@@ -67,7 +67,7 @@ export interface ListObjectVersionsRequest extends common.BaseRequest {
67
67
  */
68
68
  "opcClientRequestId"?: string;
69
69
  /**
70
- * Object names returned by a list query must be greater than this parameter.
70
+ * Returns object names which are lexicographically strictly greater than this parameter.
71
71
  */
72
72
  "startAfter"?: string;
73
73
  /**
@@ -30,11 +30,11 @@ export interface ListObjectsRequest extends common.BaseRequest {
30
30
  */
31
31
  "prefix"?: string;
32
32
  /**
33
- * Object names returned by a list query must be greater or equal to this parameter.
33
+ * Returns object names which are lexicographically greater than or equal to this parameter.
34
34
  */
35
35
  "start"?: string;
36
36
  /**
37
- * Object names returned by a list query must be strictly less than this parameter.
37
+ * Returns object names which are lexicographically strictly less than this parameter.
38
38
  */
39
39
  "end"?: string;
40
40
  /**
@@ -67,7 +67,7 @@ export interface ListObjectsRequest extends common.BaseRequest {
67
67
  */
68
68
  "opcClientRequestId"?: string;
69
69
  /**
70
- * Object names returned by a list query must be greater than this parameter.
70
+ * Returns object names which are lexicographically strictly greater than this parameter.
71
71
  */
72
72
  "startAfter"?: string;
73
73
  }
@@ -0,0 +1,60 @@
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, 2024, 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.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/objectstorage/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpointsRequest.
16
+ */
17
+ export interface ListPrivateEndpointsRequest extends common.BaseRequest {
18
+ /**
19
+ * The Object Storage namespace used for the request.
20
+ */
21
+ "namespaceName": string;
22
+ /**
23
+ * The ID of the compartment in which to list buckets.
24
+ */
25
+ "compartmentId": string;
26
+ /**
27
+ * For list pagination. The maximum number of results per page, or items to return in a paginated
28
+ * \"List\" call. For important details about how pagination works, see
29
+ * [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
30
+ *
31
+ */
32
+ "limit"?: number;
33
+ /**
34
+ * For list pagination. The value of the {@code opc-next-page} response header from the previous \"List\" call. For important
35
+ * details about how pagination works, see [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
36
+ *
37
+ */
38
+ "page"?: string;
39
+ /**
40
+ * PrivateEndpoint summary in list of PrivateEndpoints includes the 'namespace', 'name', 'compartmentId',
41
+ * 'createdBy', 'timeCreated', 'timeModified' and 'etag' fields.
42
+ * This parameter can also include 'tags' (freeformTags and definedTags).
43
+ * The only supported value of this parameter is 'tags' for now. Example 'tags'.
44
+ *
45
+ */
46
+ "fields"?: Array<ListPrivateEndpointsRequest.Fields>;
47
+ /**
48
+ * The client request ID for tracing.
49
+ */
50
+ "opcClientRequestId"?: string;
51
+ /**
52
+ * The lifecycle state of the Private Endpoint
53
+ */
54
+ "lifecycleState"?: string;
55
+ }
56
+ export declare namespace ListPrivateEndpointsRequest {
57
+ enum Fields {
58
+ Tags = "tags"
59
+ }
60
+ }
@@ -0,0 +1,23 @@
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, 2024, 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.ListPrivateEndpointsRequest = void 0;
16
+ var ListPrivateEndpointsRequest;
17
+ (function (ListPrivateEndpointsRequest) {
18
+ let Fields;
19
+ (function (Fields) {
20
+ Fields["Tags"] = "tags";
21
+ })(Fields = ListPrivateEndpointsRequest.Fields || (ListPrivateEndpointsRequest.Fields = {}));
22
+ })(ListPrivateEndpointsRequest = exports.ListPrivateEndpointsRequest || (exports.ListPrivateEndpointsRequest = {}));
23
+ //# sourceMappingURL=list-private-endpoints-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-private-endpoints-request.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/request/list-private-endpoints-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAgDH,IAAiB,2BAA2B,CAI3C;AAJD,WAAiB,2BAA2B;IAC1C,IAAY,MAEX;IAFD,WAAY,MAAM;QAChB,uBAAa,CAAA;IACf,CAAC,EAFW,MAAM,GAAN,kCAAM,KAAN,kCAAM,QAEjB;AACH,CAAC,EAJgB,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QAI3C"}
@@ -19,6 +19,10 @@ export interface ListWorkRequestsRequest extends common.BaseRequest {
19
19
  * The ID of the compartment in which to list buckets.
20
20
  */
21
21
  "compartmentId": string;
22
+ /**
23
+ * The name of the privateEndpoint for which to list work requests.
24
+ */
25
+ "privateEndpointName"?: string;
22
26
  /**
23
27
  * The client request ID for tracing.
24
28
  */
@@ -67,7 +67,7 @@ export interface PutObjectRequest extends common.BaseRequest {
67
67
  */
68
68
  "expect"?: string;
69
69
  /**
70
- * The optional base-64 header that defines the encoded MD5 hash of the body. If the optional Content-MD5 header is present, Object
70
+ * The optional header that defines the base64-encoded MD5 hash of the body. If the optional Content-MD5 header is present, Object
71
71
  * Storage performs an integrity check on the body of the HTTP request by computing the MD5 hash for the body and comparing it to the
72
72
  * MD5 hash supplied in the header. If the two hashes do not match, the object is rejected and an HTTP-400 Unmatched Content MD5 error
73
73
  * is returned with the message:
@@ -27,7 +27,7 @@ export interface RestoreObjectsRequest extends common.BaseRequest {
27
27
  */
28
28
  "bucketName": string;
29
29
  /**
30
- * Request to restore objects.
30
+ * Request to restore object.
31
31
  */
32
32
  "restoreObjectsDetails": model.RestoreObjectsDetails;
33
33
  /**
@@ -0,0 +1,44 @@
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, 2024, 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.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/objectstorage/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpointRequest.
17
+ */
18
+ export interface UpdatePrivateEndpointRequest extends common.BaseRequest {
19
+ /**
20
+ * The Object Storage namespace used for the request.
21
+ */
22
+ "namespaceName": string;
23
+ /**
24
+ * The name of the private endpoint. Avoid entering confidential information.
25
+ * Example: {@code my-new-pe-1}
26
+ *
27
+ */
28
+ "peName": string;
29
+ /**
30
+ * Request object for updating the Private Endpoint.
31
+ */
32
+ "updatePrivateEndpointDetails": model.UpdatePrivateEndpointDetails;
33
+ /**
34
+ * The client request ID for tracing.
35
+ */
36
+ "opcClientRequestId"?: string;
37
+ /**
38
+ * The entity tag (ETag) to match with the ETag of an existing resource. If the specified ETag matches the ETag of
39
+ * the existing resource, GET and HEAD requests will return the resource and PUT and POST requests will upload
40
+ * the resource.
41
+ *
42
+ */
43
+ "ifMatch"?: string;
44
+ }
@@ -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, 2024, 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=update-private-endpoint-request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-private-endpoint-request.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/request/update-private-endpoint-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -74,7 +74,7 @@ export interface UploadPartRequest extends common.BaseRequest {
74
74
  */
75
75
  "expect"?: string;
76
76
  /**
77
- * The optional base-64 header that defines the encoded MD5 hash of the body. If the optional Content-MD5 header is present, Object
77
+ * The optional header that defines the base64-encoded MD5 hash of the body. If the optional Content-MD5 header is present, Object
78
78
  * Storage performs an integrity check on the body of the HTTP request by computing the MD5 hash for the body and comparing it to the
79
79
  * MD5 hash supplied in the header. If the two hashes do not match, the object is rejected and an HTTP-400 Unmatched Content MD5 error
80
80
  * is returned with the message:
@@ -22,7 +22,7 @@ export interface CommitMultipartUploadResponse {
22
22
  */
23
23
  "opcRequestId": string;
24
24
  /**
25
- * Base-64 representation of the multipart object hash.
25
+ * Base-64 representation of the multipart object MD5 hash.
26
26
  * The multipart object hash is calculated by taking the MD5 hashes of the parts passed to this call,
27
27
  * concatenating the binary representation of those hashes in order of their part numbers,
28
28
  * and then calculating the MD5 hash of the concatenated values. The multipart object hash is followed
@@ -0,0 +1,30 @@
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, 2024, 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 CreatePrivateEndpointResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the asynchronous request. If you need to contact Oracle about a
16
+ * particular request, provide this request ID.
17
+ *
18
+ */
19
+ "opcWorkRequestId": string;
20
+ /**
21
+ * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular
22
+ * request, provide this request ID.
23
+ *
24
+ */
25
+ "opcRequestId": string;
26
+ /**
27
+ * Echoes back the value passed in the opc-client-request-id header, for use by clients when debugging.
28
+ */
29
+ "opcClientRequestId": string;
30
+ }
@@ -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, 2024, 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=create-private-endpoint-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-private-endpoint-response.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/response/create-private-endpoint-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,30 @@
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, 2024, 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 DeletePrivateEndpointResponse {
14
+ /**
15
+ * Unique Oracle-assigned identifier for the asynchronous request. If you need to contact Oracle about a
16
+ * particular request, provide this request ID.
17
+ *
18
+ */
19
+ "opcWorkRequestId": string;
20
+ /**
21
+ * Echoes back the value passed in the opc-client-request-id header, for use by clients when debugging.
22
+ */
23
+ "opcClientRequestId": string;
24
+ /**
25
+ * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular
26
+ * request, provide this request ID.
27
+ *
28
+ */
29
+ "opcRequestId": string;
30
+ }
@@ -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, 2024, 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=delete-private-endpoint-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-private-endpoint-response.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/response/delete-private-endpoint-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -0,0 +1,40 @@
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, 2024, 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
+ export interface GetPrivateEndpointResponse {
15
+ /**
16
+ * Echoes back the value passed in the opc-client-request-id header, for use by clients when debugging.
17
+ */
18
+ "opcClientRequestId": string;
19
+ /**
20
+ * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular
21
+ * request, provide this request ID.
22
+ *
23
+ */
24
+ "opcRequestId": string;
25
+ /**
26
+ * The entity tag (ETag) for the Private Endpoint.
27
+ */
28
+ "eTag": string;
29
+ /**
30
+ * The returned model.PrivateEndpoint instance, or null if {@link #isNotModified()} is true.
31
+ */
32
+ "privateEndpoint": model.PrivateEndpoint;
33
+ /**
34
+ * Flag to indicate whether or not the object was modified. If this is true,
35
+ * the getter for the object itself will return null. Callers should check this
36
+ * if they specified one of the request params that might result in a conditional
37
+ * response (like 'if-match'/'if-none-match').
38
+ */
39
+ "isNotModified": boolean;
40
+ }
@@ -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, 2024, 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=get-private-endpoint-response.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-private-endpoint-response.js","sourceRoot":"","sources":["../../../../../lib/objectstorage/lib/response/get-private-endpoint-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
@@ -27,6 +27,8 @@ import * as CreateMultipartUploadResponse from "./create-multipart-upload-respon
27
27
  export import CreateMultipartUploadResponse = CreateMultipartUploadResponse.CreateMultipartUploadResponse;
28
28
  import * as CreatePreauthenticatedRequestResponse from "./create-preauthenticated-request-response";
29
29
  export import CreatePreauthenticatedRequestResponse = CreatePreauthenticatedRequestResponse.CreatePreauthenticatedRequestResponse;
30
+ import * as CreatePrivateEndpointResponse from "./create-private-endpoint-response";
31
+ export import CreatePrivateEndpointResponse = CreatePrivateEndpointResponse.CreatePrivateEndpointResponse;
30
32
  import * as CreateReplicationPolicyResponse from "./create-replication-policy-response";
31
33
  export import CreateReplicationPolicyResponse = CreateReplicationPolicyResponse.CreateReplicationPolicyResponse;
32
34
  import * as CreateRetentionRuleResponse from "./create-retention-rule-response";
@@ -39,6 +41,8 @@ import * as DeleteObjectLifecyclePolicyResponse from "./delete-object-lifecycle-
39
41
  export import DeleteObjectLifecyclePolicyResponse = DeleteObjectLifecyclePolicyResponse.DeleteObjectLifecyclePolicyResponse;
40
42
  import * as DeletePreauthenticatedRequestResponse from "./delete-preauthenticated-request-response";
41
43
  export import DeletePreauthenticatedRequestResponse = DeletePreauthenticatedRequestResponse.DeletePreauthenticatedRequestResponse;
44
+ import * as DeletePrivateEndpointResponse from "./delete-private-endpoint-response";
45
+ export import DeletePrivateEndpointResponse = DeletePrivateEndpointResponse.DeletePrivateEndpointResponse;
42
46
  import * as DeleteReplicationPolicyResponse from "./delete-replication-policy-response";
43
47
  export import DeleteReplicationPolicyResponse = DeleteReplicationPolicyResponse.DeleteReplicationPolicyResponse;
44
48
  import * as DeleteRetentionRuleResponse from "./delete-retention-rule-response";
@@ -55,6 +59,8 @@ import * as GetObjectLifecyclePolicyResponse from "./get-object-lifecycle-policy
55
59
  export import GetObjectLifecyclePolicyResponse = GetObjectLifecyclePolicyResponse.GetObjectLifecyclePolicyResponse;
56
60
  import * as GetPreauthenticatedRequestResponse from "./get-preauthenticated-request-response";
57
61
  export import GetPreauthenticatedRequestResponse = GetPreauthenticatedRequestResponse.GetPreauthenticatedRequestResponse;
62
+ import * as GetPrivateEndpointResponse from "./get-private-endpoint-response";
63
+ export import GetPrivateEndpointResponse = GetPrivateEndpointResponse.GetPrivateEndpointResponse;
58
64
  import * as GetReplicationPolicyResponse from "./get-replication-policy-response";
59
65
  export import GetReplicationPolicyResponse = GetReplicationPolicyResponse.GetReplicationPolicyResponse;
60
66
  import * as GetRetentionRuleResponse from "./get-retention-rule-response";
@@ -77,6 +83,8 @@ import * as ListObjectsResponse from "./list-objects-response";
77
83
  export import ListObjectsResponse = ListObjectsResponse.ListObjectsResponse;
78
84
  import * as ListPreauthenticatedRequestsResponse from "./list-preauthenticated-requests-response";
79
85
  export import ListPreauthenticatedRequestsResponse = ListPreauthenticatedRequestsResponse.ListPreauthenticatedRequestsResponse;
86
+ import * as ListPrivateEndpointsResponse from "./list-private-endpoints-response";
87
+ export import ListPrivateEndpointsResponse = ListPrivateEndpointsResponse.ListPrivateEndpointsResponse;
80
88
  import * as ListReplicationPoliciesResponse from "./list-replication-policies-response";
81
89
  export import ListReplicationPoliciesResponse = ListReplicationPoliciesResponse.ListReplicationPoliciesResponse;
82
90
  import * as ListReplicationSourcesResponse from "./list-replication-sources-response";
@@ -109,6 +117,8 @@ import * as UpdateNamespaceMetadataResponse from "./update-namespace-metadata-re
109
117
  export import UpdateNamespaceMetadataResponse = UpdateNamespaceMetadataResponse.UpdateNamespaceMetadataResponse;
110
118
  import * as UpdateObjectStorageTierResponse from "./update-object-storage-tier-response";
111
119
  export import UpdateObjectStorageTierResponse = UpdateObjectStorageTierResponse.UpdateObjectStorageTierResponse;
120
+ import * as UpdatePrivateEndpointResponse from "./update-private-endpoint-response";
121
+ export import UpdatePrivateEndpointResponse = UpdatePrivateEndpointResponse.UpdatePrivateEndpointResponse;
112
122
  import * as UpdateRetentionRuleResponse from "./update-retention-rule-response";
113
123
  export import UpdateRetentionRuleResponse = UpdateRetentionRuleResponse.UpdateRetentionRuleResponse;
114
124
  import * as UploadPartResponse from "./upload-part-response";
@@ -0,0 +1,40 @@
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, 2024, 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
+ export interface ListPrivateEndpointsResponse {
15
+ /**
16
+ * Echoes back the value passed in the opc-client-request-id header, for use by clients when debugging.
17
+ */
18
+ "opcClientRequestId": string;
19
+ /**
20
+ * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular
21
+ * request, provide this request ID.
22
+ *
23
+ */
24
+ "opcRequestId": string;
25
+ /**
26
+ * For paginating a list of PEs.
27
+ * In the GET request, set the limit to the number of Private Endpoint items that you want returned in the response.
28
+ * If the {@code opc-next-page} header appears in the response, then this is a partial list and there are additional
29
+ * Private Endpoint's to get. Include the header's value as the {@code page} parameter in the subsequent GET request to get the
30
+ * next batch of PEs. Repeat this process to retrieve the entire list of Private Endpoint's.
31
+ * By default, the page limit is set to 25 Private Endpoint's per page, but you can specify a value from 1 to 1000.
32
+ * For more details about how pagination works, see [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
33
+ *
34
+ */
35
+ "opcNextPage": string;
36
+ /**
37
+ * A list of PrivateEndpointSummary instances.
38
+ */
39
+ "items": model.PrivateEndpointSummary[];
40
+ }