Class PresignedUrlCreateResponse.Builder
-
- All Implemented Interfaces:
public final class PresignedUrlCreateResponse.BuilderA builder for PresignedUrlCreateResponse.
-
-
Method Summary
-
-
Method Detail
-
storageUri
final PresignedUrlCreateResponse.Builder storageUri(String storageUri)
The storage URI to send back to the backend after the upload was completed.
-
storageUri
final PresignedUrlCreateResponse.Builder storageUri(JsonField<String> storageUri)
Sets Builder.storageUri to an arbitrary JSON value.
You should usually call Builder.storageUri with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
url
final PresignedUrlCreateResponse.Builder url(String url)
The presigned url.
-
url
final PresignedUrlCreateResponse.Builder url(JsonField<String> url)
Sets Builder.url to an arbitrary JSON value.
You should usually call Builder.url with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
fields
final PresignedUrlCreateResponse.Builder fields(JsonValue fields)
Fields to include in the body of the upload. Only needed by s3
-
additionalProperties
final PresignedUrlCreateResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final PresignedUrlCreateResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final PresignedUrlCreateResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final PresignedUrlCreateResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final PresignedUrlCreateResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final PresignedUrlCreateResponse build()
Returns an immutable instance of PresignedUrlCreateResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.storageUri() .url()
-
-
-
-