All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oracle.bmc.objectstorage.ObjectStorageAsync Maven / Gradle / Ivy

Go to download

This project contains the SDK distribution used for Oracle Cloud Infrastructure, and all the dependencies that can be shaded. It also has Maven dependencies that cannot be shaded. Therefore, use this module to depend on the shaded distribution via Maven -- it will shade everything that can be shaded, and automatically pull in the other dependencies.

There is a newer version: 3.55.2
Show newest version
/**
 * Copyright (c) 2016, 2024, Oracle and/or its affiliates.  All rights reserved.
 * 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.
 */
package com.oracle.bmc.objectstorage;

import com.oracle.bmc.objectstorage.requests.*;
import com.oracle.bmc.objectstorage.responses.*;

/**
 * Use Object Storage and Archive Storage APIs to manage buckets, objects, and related resources.
 * For more information, see [Overview of Object
 * Storage](https://docs.cloud.oracle.com/Content/Object/Concepts/objectstorageoverview.htm) and
 * [Overview of Archive
 * Storage](https://docs.cloud.oracle.com/Content/Archive/Concepts/archivestorageoverview.htm).
 */
@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20160918")
public interface ObjectStorageAsync extends AutoCloseable {

    /** Rebuilds the client from scratch. Useful to refresh certificates. */
    void refreshClient();

    /**
     * Sets the endpoint to call (ex, https://www.example.com).
     *
     * @param endpoint The endpoint of the serice.
     */
    void setEndpoint(String endpoint);

    /** Gets the set endpoint for REST call (ex, https://www.example.com) */
    String getEndpoint();

    /**
     * Sets the region to call (ex, Region.US_PHOENIX_1).
     *
     * 

Note, this will call {@link #setEndpoint(String) setEndpoint} after resolving the * endpoint. If the service is not available in this region, however, an * IllegalArgumentException will be raised. * * @param region The region of the service. */ void setRegion(com.oracle.bmc.Region region); /** * Sets the region to call (ex, 'us-phoenix-1'). * *

Note, this will first try to map the region ID to a known Region and call {@link * #setRegion(Region) setRegion}. * *

If no known Region could be determined, it will create an endpoint based on the default * endpoint format ({@link com.oracle.bmc.Region#formatDefaultRegionEndpoint(Service, String)} * and then call {@link #setEndpoint(String) setEndpoint}. * * @param regionId The public region ID. */ void setRegion(String regionId); /** * Determines whether realm specific endpoint should be used or not. Set * realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm * specific endpoint template, otherwise set it to "false" * * @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint * template */ void useRealmSpecificEndpointTemplate(boolean realmSpecificEndpointTemplateEnabled); /** * Aborts an in-progress multipart upload and deletes all parts that have been uploaded. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future abortMultipartUpload( AbortMultipartUploadRequest request, com.oracle.bmc.responses.AsyncHandler< AbortMultipartUploadRequest, AbortMultipartUploadResponse> handler); /** * Cancels a work request. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future cancelWorkRequest( CancelWorkRequestRequest request, com.oracle.bmc.responses.AsyncHandler< CancelWorkRequestRequest, CancelWorkRequestResponse> handler); /** * Commits a multipart upload, which involves checking part numbers and entity tags (ETags) of * the parts, to create an aggregate object. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future commitMultipartUpload( CommitMultipartUploadRequest request, com.oracle.bmc.responses.AsyncHandler< CommitMultipartUploadRequest, CommitMultipartUploadResponse> handler); /** * Creates a request to copy an object within a region or to another region. * *

See [Object * Names](https://docs.cloud.oracle.com/Content/Object/Tasks/managingobjects.htm#namerequirements) * for object naming requirements. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future copyObject( CopyObjectRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Creates a bucket in the given namespace with a bucket name and optional user-defined * metadata. Avoid entering confidential information in bucket names. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future createBucket( CreateBucketRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Starts a new multipart upload to a specific object in the given bucket in the given * namespace. * *

See [Object * Names](https://docs.cloud.oracle.com/Content/Object/Tasks/managingobjects.htm#namerequirements) * for object naming requirements. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future createMultipartUpload( CreateMultipartUploadRequest request, com.oracle.bmc.responses.AsyncHandler< CreateMultipartUploadRequest, CreateMultipartUploadResponse> handler); /** * Creates a pre-authenticated request specific to the bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future createPreauthenticatedRequest( CreatePreauthenticatedRequestRequest request, com.oracle.bmc.responses.AsyncHandler< CreatePreauthenticatedRequestRequest, CreatePreauthenticatedRequestResponse> handler); /** * Create a PrivateEndpoint. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future createPrivateEndpoint( CreatePrivateEndpointRequest request, com.oracle.bmc.responses.AsyncHandler< CreatePrivateEndpointRequest, CreatePrivateEndpointResponse> handler); /** * Creates a replication policy for the specified bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future createReplicationPolicy( CreateReplicationPolicyRequest request, com.oracle.bmc.responses.AsyncHandler< CreateReplicationPolicyRequest, CreateReplicationPolicyResponse> handler); /** * Creates a new retention rule in the specified bucket. The new rule will take effect typically * within 30 seconds. Note that a maximum of 100 rules are supported on a bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future createRetentionRule( CreateRetentionRuleRequest request, com.oracle.bmc.responses.AsyncHandler< CreateRetentionRuleRequest, CreateRetentionRuleResponse> handler); /** * Deletes a bucket if the bucket is already empty. If the bucket is not empty, use {@link * #deleteObject(DeleteObjectRequest, Consumer, Consumer) deleteObject} first. In addition, you * cannot delete a bucket that has a multipart upload in progress or a pre-authenticated request * associated with that bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future deleteBucket( DeleteBucketRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Deletes an object. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future deleteObject( DeleteObjectRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Deletes the object lifecycle policy for the bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future deleteObjectLifecyclePolicy( DeleteObjectLifecyclePolicyRequest request, com.oracle.bmc.responses.AsyncHandler< DeleteObjectLifecyclePolicyRequest, DeleteObjectLifecyclePolicyResponse> handler); /** * Deletes the pre-authenticated request for the bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future deletePreauthenticatedRequest( DeletePreauthenticatedRequestRequest request, com.oracle.bmc.responses.AsyncHandler< DeletePreauthenticatedRequestRequest, DeletePreauthenticatedRequestResponse> handler); /** * Deletes a Private Endpoint if it exists in the given namespace. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future deletePrivateEndpoint( DeletePrivateEndpointRequest request, com.oracle.bmc.responses.AsyncHandler< DeletePrivateEndpointRequest, DeletePrivateEndpointResponse> handler); /** * Deletes the replication policy associated with the source bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future deleteReplicationPolicy( DeleteReplicationPolicyRequest request, com.oracle.bmc.responses.AsyncHandler< DeleteReplicationPolicyRequest, DeleteReplicationPolicyResponse> handler); /** * Deletes the specified rule. The deletion takes effect typically within 30 seconds. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future deleteRetentionRule( DeleteRetentionRuleRequest request, com.oracle.bmc.responses.AsyncHandler< DeleteRetentionRuleRequest, DeleteRetentionRuleResponse> handler); /** * Gets the current representation of the given bucket in the given Object Storage namespace. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future getBucket( GetBucketRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Each Oracle Cloud Infrastructure tenant is assigned one unique and uneditable Object Storage * namespace. The namespace is a system-generated string assigned during account creation. For * some older tenancies, the namespace string may be the tenancy name in all lower-case letters. * You cannot edit a namespace. * *

GetNamespace returns the name of the Object Storage namespace for the user making the * request. If an optional compartmentId query parameter is provided, GetNamespace returns the * namespace name of the corresponding tenancy, provided the user has access to it. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future getNamespace( GetNamespaceRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Gets the metadata for the Object Storage namespace, which contains defaultS3CompartmentId and * defaultSwiftCompartmentId. * *

Any user with the OBJECTSTORAGE_NAMESPACE_READ permission will be able to see the current * metadata. If you are not authorized, talk to an administrator. If you are an administrator * who needs to write policies to give users access, see [Getting Started with * Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm). * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future getNamespaceMetadata( GetNamespaceMetadataRequest request, com.oracle.bmc.responses.AsyncHandler< GetNamespaceMetadataRequest, GetNamespaceMetadataResponse> handler); /** * Gets the metadata and body of an object. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future getObject( GetObjectRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Gets the object lifecycle policy for the bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future getObjectLifecyclePolicy( GetObjectLifecyclePolicyRequest request, com.oracle.bmc.responses.AsyncHandler< GetObjectLifecyclePolicyRequest, GetObjectLifecyclePolicyResponse> handler); /** * Gets the pre-authenticated request for the bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future getPreauthenticatedRequest( GetPreauthenticatedRequestRequest request, com.oracle.bmc.responses.AsyncHandler< GetPreauthenticatedRequestRequest, GetPreauthenticatedRequestResponse> handler); /** * Gets the current representation of the given Private Endpoint in the given Object Storage * namespace. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future getPrivateEndpoint( GetPrivateEndpointRequest request, com.oracle.bmc.responses.AsyncHandler< GetPrivateEndpointRequest, GetPrivateEndpointResponse> handler); /** * Get the replication policy. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future getReplicationPolicy( GetReplicationPolicyRequest request, com.oracle.bmc.responses.AsyncHandler< GetReplicationPolicyRequest, GetReplicationPolicyResponse> handler); /** * Get the specified retention rule. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future getRetentionRule( GetRetentionRuleRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Gets the status of the work request for the given ID. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future getWorkRequest( GetWorkRequestRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Efficiently checks to see if a bucket exists and gets the current entity tag (ETag) for the * bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future headBucket( HeadBucketRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Gets the user-defined metadata and entity tag (ETag) for an object. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future headObject( HeadObjectRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Gets a list of all BucketSummary items in a compartment. A BucketSummary contains only * summary fields for the bucket and does not contain fields like the user-defined metadata. * *

ListBuckets returns a BucketSummary containing at most 1000 buckets. To paginate through * more buckets, use the returned `opc-next-page` value with the `page` request parameter. * *

To use this and other API operations, you must be authorized in an IAM policy. If you are * not authorized, talk to an administrator. If you are an administrator who needs to write * policies to give users access, see [Getting Started with * Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm). * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future listBuckets( ListBucketsRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Lists the parts of an in-progress multipart upload. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future listMultipartUploadParts( ListMultipartUploadPartsRequest request, com.oracle.bmc.responses.AsyncHandler< ListMultipartUploadPartsRequest, ListMultipartUploadPartsResponse> handler); /** * Lists all of the in-progress multipart uploads for the given bucket in the given Object * Storage namespace. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future listMultipartUploads( ListMultipartUploadsRequest request, com.oracle.bmc.responses.AsyncHandler< ListMultipartUploadsRequest, ListMultipartUploadsResponse> handler); /** * Lists the object versions in a bucket. * *

ListObjectVersions returns an ObjectVersionCollection containing at most 1000 object * versions. To paginate through more object versions, use the returned `opc-next-page` value * with the `page` request parameter. * *

To use this and other API operations, you must be authorized in an IAM policy. If you are * not authorized, talk to an administrator. If you are an administrator who needs to write * policies to give users access, see [Getting Started with * Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm). * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future listObjectVersions( ListObjectVersionsRequest request, com.oracle.bmc.responses.AsyncHandler< ListObjectVersionsRequest, ListObjectVersionsResponse> handler); /** * Lists the objects in a bucket. By default, ListObjects returns object names only. See the * `fields` parameter for other fields that you can optionally include in ListObjects response. * *

ListObjects returns at most 1000 objects. To paginate through more objects, use the * returned 'nextStartWith' value with the 'start' parameter. To filter which objects * ListObjects returns, use the 'start' and 'end' parameters. * *

To use this and other API operations, you must be authorized in an IAM policy. If you are * not authorized, talk to an administrator. If you are an administrator who needs to write * policies to give users access, see [Getting Started with * Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm). * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future listObjects( ListObjectsRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Lists pre-authenticated requests for the bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future listPreauthenticatedRequests( ListPreauthenticatedRequestsRequest request, com.oracle.bmc.responses.AsyncHandler< ListPreauthenticatedRequestsRequest, ListPreauthenticatedRequestsResponse> handler); /** * Gets a list of all PrivateEndpointSummary in a compartment associated with a namespace. To * use this and other API operations, you must be authorized in an IAM policy. If you are not * authorized, talk to an administrator. If you are an administrator who needs to write policies * to give users access, see [Getting Started with * Policies](https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm). * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future listPrivateEndpoints( ListPrivateEndpointsRequest request, com.oracle.bmc.responses.AsyncHandler< ListPrivateEndpointsRequest, ListPrivateEndpointsResponse> handler); /** * List the replication policies associated with a bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future listReplicationPolicies( ListReplicationPoliciesRequest request, com.oracle.bmc.responses.AsyncHandler< ListReplicationPoliciesRequest, ListReplicationPoliciesResponse> handler); /** * List the replication sources of a destination bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future listReplicationSources( ListReplicationSourcesRequest request, com.oracle.bmc.responses.AsyncHandler< ListReplicationSourcesRequest, ListReplicationSourcesResponse> handler); /** * List the retention rules for a bucket. The retention rules are sorted based on creation time, * with the most recently created retention rule returned first. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future listRetentionRules( ListRetentionRulesRequest request, com.oracle.bmc.responses.AsyncHandler< ListRetentionRulesRequest, ListRetentionRulesResponse> handler); /** * Lists the errors of the work request with the given ID. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future listWorkRequestErrors( ListWorkRequestErrorsRequest request, com.oracle.bmc.responses.AsyncHandler< ListWorkRequestErrorsRequest, ListWorkRequestErrorsResponse> handler); /** * Lists the logs of the work request with the given ID. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future listWorkRequestLogs( ListWorkRequestLogsRequest request, com.oracle.bmc.responses.AsyncHandler< ListWorkRequestLogsRequest, ListWorkRequestLogsResponse> handler); /** * Lists the work requests in a compartment. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future listWorkRequests( ListWorkRequestsRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Stops replication to the destination bucket and removes the replication policy. When the * replication policy was created, this destination bucket became read-only except for new and * changed objects replicated automatically from the source bucket. MakeBucketWritable removes * the replication policy. This bucket is no longer the target for replication and is now * writable, allowing users to make changes to bucket contents. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future makeBucketWritable( MakeBucketWritableRequest request, com.oracle.bmc.responses.AsyncHandler< MakeBucketWritableRequest, MakeBucketWritableResponse> handler); /** * Creates a new object or overwrites an existing object with the same name. The maximum object * size allowed by PutObject is 50 GiB. * *

See [Object * Names](https://docs.cloud.oracle.com/Content/Object/Tasks/managingobjects.htm#namerequirements) * for object naming requirements. * *

See [Special Instructions for Object Storage * PUT](https://docs.cloud.oracle.com/Content/API/Concepts/signingrequests.htm#ObjectStoragePut) * for request signature requirements. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future putObject( PutObjectRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Creates or replaces the object lifecycle policy for the bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future putObjectLifecyclePolicy( PutObjectLifecyclePolicyRequest request, com.oracle.bmc.responses.AsyncHandler< PutObjectLifecyclePolicyRequest, PutObjectLifecyclePolicyResponse> handler); /** * Re-encrypts the unique data encryption key that encrypts each object written to the bucket by * using the most recent version of the master encryption key assigned to the bucket. (All data * encryption keys are encrypted by a master encryption key. Master encryption keys are assigned * to buckets and managed by Oracle by default, but you can assign a key that you created and * control through the Oracle Cloud Infrastructure Key Management service.) The kmsKeyId * property of the bucket determines which master encryption key is assigned to the bucket. If * you assigned a different Key Management master encryption key to the bucket, you can call * this API to re-encrypt all data encryption keys with the newly assigned key. Similarly, you * might want to re-encrypt all data encryption keys if the assigned key has been rotated to a * new key version since objects were last added to the bucket. If you call this API and there * is no kmsKeyId associated with the bucket, the call will fail. * *

Calling this API starts a work request task to re-encrypt the data encryption key of all * objects in the bucket. Only objects created before the time of the API call will be * re-encrypted. The call can take a long time, depending on how many objects are in the bucket * and how big they are. This API returns a work request ID that you can use to retrieve the * status of the work request task. All the versions of objects will be re-encrypted whether * versioning is enabled or suspended at the bucket. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future reencryptBucket( ReencryptBucketRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Re-encrypts the data encryption keys that encrypt the object and its chunks. By default, when * you create a bucket, the Object Storage service manages the master encryption key used to * encrypt each object's data encryption keys. The encryption mechanism that you specify for the * bucket applies to the objects it contains. * *

You can alternatively employ one of these encryption strategies for an object: * *

- You can assign a key that you created and control through the Oracle Cloud * Infrastructure Vault service. * *

- You can encrypt an object using your own encryption key. The key you supply is known as * a customer-provided encryption key (SSE-C). * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future reencryptObject( ReencryptObjectRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Rename an object in the given Object Storage namespace. * *

See [Object * Names](https://docs.cloud.oracle.com/Content/Object/Tasks/managingobjects.htm#namerequirements) * for object naming requirements. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future renameObject( RenameObjectRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Restores the object specified by the objectName parameter. By default object will be restored * for 24 hours. Duration can be configured using the hours parameter. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future restoreObjects( RestoreObjectsRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * Performs a partial or full update of a bucket's user-defined metadata. * *

Use UpdateBucket to move a bucket from one compartment to another within the same tenancy. * Supply the compartmentID of the compartment that you want to move the bucket to. For more * information about moving resources between compartments, see [Moving Resources to a Different * Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future updateBucket( UpdateBucketRequest request, com.oracle.bmc.responses.AsyncHandler handler); /** * By default, buckets created using the Amazon S3 Compatibility API or the Swift API are * created in the root compartment of the Oracle Cloud Infrastructure tenancy. * *

You can change the default Swift/Amazon S3 compartmentId designation to a different * compartmentId. All subsequent bucket creations will use the new default compartment, but no * previously created buckets will be modified. A user must have OBJECTSTORAGE_NAMESPACE_UPDATE * permission to make changes to the default compartments for Amazon S3 and Swift. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future updateNamespaceMetadata( UpdateNamespaceMetadataRequest request, com.oracle.bmc.responses.AsyncHandler< UpdateNamespaceMetadataRequest, UpdateNamespaceMetadataResponse> handler); /** * Changes the storage tier of the object specified by the objectName parameter. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future updateObjectStorageTier( UpdateObjectStorageTierRequest request, com.oracle.bmc.responses.AsyncHandler< UpdateObjectStorageTierRequest, UpdateObjectStorageTierResponse> handler); /** * Performs a partial or full update of a user-defined data associated with the Private * Endpoint. * *

Use UpdatePrivateEndpoint to move a Private Endpoint from one compartment to another * within the same tenancy. Supply the compartmentID of the compartment that you want to move * the Private Endpoint to. Or use it to update the name, subnetId, endpointFqdn or * privateEndpointIp or accessTargets of the Private Endpoint. For more information about moving * resources between compartments, see [Moving Resources to a Different * Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). * *

This API follows replace semantics (rather than merge semantics). That means if the body * provides values for parameters and the resource has exisiting ones, this operation will * replace those existing values. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future updatePrivateEndpoint( UpdatePrivateEndpointRequest request, com.oracle.bmc.responses.AsyncHandler< UpdatePrivateEndpointRequest, UpdatePrivateEndpointResponse> handler); /** * Updates the specified retention rule. Rule changes take effect typically within 30 seconds. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future updateRetentionRule( UpdateRetentionRuleRequest request, com.oracle.bmc.responses.AsyncHandler< UpdateRetentionRuleRequest, UpdateRetentionRuleResponse> handler); /** * Uploads a single part of a multipart upload. * * @param request The request object containing the details to send * @param handler The request handler to invoke upon completion, may be null. * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, * if you provide an AsyncHandler and use the Future, some types of responses (like * java.io.InputStream) may not be able to be read in both places as the underlying stream * may only be consumed once. */ java.util.concurrent.Future uploadPart( UploadPartRequest request, com.oracle.bmc.responses.AsyncHandler handler); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy