Class OriginResponse.AzureBlob.Builder
-
- All Implemented Interfaces:
public final class OriginResponse.AzureBlob.BuilderA builder for AzureBlob.
-
-
Method Summary
-
-
Method Detail
-
id
final OriginResponse.AzureBlob.Builder id(String id)
Unique identifier for the origin. This is generated by ImageKit when you create a new origin.
-
id
final OriginResponse.AzureBlob.Builder id(JsonField<String> id)
Sets Builder.id to an arbitrary JSON value.
You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
accountName
final OriginResponse.AzureBlob.Builder accountName(String accountName)
-
accountName
final OriginResponse.AzureBlob.Builder accountName(JsonField<String> accountName)
Sets Builder.accountName to an arbitrary JSON value.
You should usually call Builder.accountName with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
container
final OriginResponse.AzureBlob.Builder container(String container)
-
container
final OriginResponse.AzureBlob.Builder container(JsonField<String> container)
Sets Builder.container to an arbitrary JSON value.
You should usually call Builder.container with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
includeCanonicalHeader
final OriginResponse.AzureBlob.Builder includeCanonicalHeader(Boolean includeCanonicalHeader)
Whether to send a Canonical header.
-
includeCanonicalHeader
final OriginResponse.AzureBlob.Builder includeCanonicalHeader(JsonField<Boolean> includeCanonicalHeader)
Sets Builder.includeCanonicalHeader to an arbitrary JSON value.
You should usually call Builder.includeCanonicalHeader with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
name
final OriginResponse.AzureBlob.Builder name(String name)
Display name of the origin.
-
name
final OriginResponse.AzureBlob.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
prefix
final OriginResponse.AzureBlob.Builder prefix(String prefix)
-
prefix
final OriginResponse.AzureBlob.Builder prefix(JsonField<String> prefix)
Sets Builder.prefix to an arbitrary JSON value.
You should usually call Builder.prefix with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final OriginResponse.AzureBlob.Builder type(JsonValue type)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("AZURE_BLOB")This method is primarily for setting the field to an undocumented or not yet supported value.
-
baseUrlForCanonicalHeader
final OriginResponse.AzureBlob.Builder baseUrlForCanonicalHeader(String baseUrlForCanonicalHeader)
URL used in the Canonical header (if enabled).
-
baseUrlForCanonicalHeader
final OriginResponse.AzureBlob.Builder baseUrlForCanonicalHeader(JsonField<String> baseUrlForCanonicalHeader)
Sets Builder.baseUrlForCanonicalHeader to an arbitrary JSON value.
You should usually call Builder.baseUrlForCanonicalHeader with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final OriginResponse.AzureBlob.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final OriginResponse.AzureBlob.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final OriginResponse.AzureBlob.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final OriginResponse.AzureBlob.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final OriginResponse.AzureBlob.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final OriginResponse.AzureBlob build()
Returns an immutable instance of AzureBlob.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .accountName() .container() .includeCanonicalHeader() .name() .prefix()
-
-
-
-