Class PutObject.Request
- java.lang.Object
-
- io.helidon.integrations.common.rest.ApiJsonBuilder<T>
-
- io.helidon.integrations.common.rest.ApiJsonRequest<T>
-
- io.helidon.integrations.oci.connect.OciRequestBase<T>
-
- io.helidon.integrations.oci.objectstorage.ObjectRequest<PutObject.Request>
-
- io.helidon.integrations.oci.objectstorage.PutObject.Request
-
- All Implemented Interfaces:
ApiRequest<PutObject.Request>
- Enclosing class:
- PutObject
public static class PutObject.Request extends ObjectRequest<PutObject.Request>
Request object. Can be configured with additional headers, query parameters etc.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PutObject.Request
builder()
Fluent API builder for configuring a request.long
contentLength()
Content lenght configured on this request.PutObject.Request
contentLength(long contentLength)
The content length of the body (number of bytes in the request entity).Optional<JsonObject>
toJson(JsonBuilderFactory factory)
Create a JSON object from this builder.-
Methods inherited from class io.helidon.integrations.oci.objectstorage.ObjectRequest
bucket, bucket, namespace, namespace, objectName, objectName
-
Methods inherited from class io.helidon.integrations.oci.connect.OciRequestBase
add, endpoint, endpoint, hostFormat, hostPrefix, retryToken
-
Methods inherited from class io.helidon.integrations.common.rest.ApiJsonRequest
addHeader, addQueryParam, headers, queryParams, requestId, requestId, requestMediaType, requestMediaType, responseMediaType, responseMediaType
-
Methods inherited from class io.helidon.integrations.common.rest.ApiJsonBuilder
add, add, add, add, add, add, addBase64, addToArray, addToArray, addToArray, addToArray, addToArray, addToArray, addToObject, addToObject, addToObject, addToObject, addToObject, emptyArray, me, postBuild, preBuild
-
-
-
-
Method Detail
-
builder
public static PutObject.Request builder()
Fluent API builder for configuring a request. The request builder is passed as is, without a build method. The equivalent of a build method istoJson(javax.json.JsonBuilderFactory)
used by theRestApi
.- Returns:
- new request builder
-
contentLength
public PutObject.Request contentLength(long contentLength)
The content length of the body (number of bytes in the request entity). Required.- Parameters:
contentLength
- content length- Returns:
- updated request
-
contentLength
public long contentLength()
Content lenght configured on this request.- Returns:
- content lenght, must be preset
-
toJson
public Optional<JsonObject> toJson(JsonBuilderFactory factory)
Description copied from class:ApiJsonBuilder
Create a JSON object from this builder.- Specified by:
toJson
in interfaceApiRequest<PutObject.Request>
- Overrides:
toJson
in classApiJsonBuilder<PutObject.Request>
- Parameters:
factory
- builder factory to create objects- Returns:
- JSON object or empty
-
-