Class OriginResponse.AzureBlob
-
- All Implemented Interfaces:
public final class OriginResponse.AzureBlob
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classOriginResponse.AzureBlob.BuilderA builder for AzureBlob.
-
Method Summary
Modifier and Type Method Description final Stringid()Unique identifier for the origin. final StringaccountName()final Stringcontainer()final BooleanincludeCanonicalHeader()Whether to send a Canonical header. final Stringname()Display name of the origin. final Stringprefix()final JsonValue_type()Expected to always return the following:
However, this method can be useful for debugging and logging (e.g.JsonValue.from("AZURE_BLOB")final Optional<String>baseUrlForCanonicalHeader()URL used in the Canonical header (if enabled). final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<String>_accountName()Returns the raw JSON value of accountName. final JsonField<String>_container()Returns the raw JSON value of container. final JsonField<Boolean>_includeCanonicalHeader()Returns the raw JSON value of includeCanonicalHeader. final JsonField<String>_name()Returns the raw JSON value of name. final JsonField<String>_prefix()Returns the raw JSON value of prefix. final JsonField<String>_baseUrlForCanonicalHeader()Returns the raw JSON value of baseUrlForCanonicalHeader. final Map<String, JsonValue>_additionalProperties()final OriginResponse.AzureBlob.BuildertoBuilder()final OriginResponse.AzureBlobvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static OriginResponse.AzureBlob.Builderbuilder()Returns a mutable builder for constructing an instance of AzureBlob. -
-
Method Detail
-
id
final String id()
Unique identifier for the origin. This is generated by ImageKit when you create a new origin.
-
accountName
final String accountName()
-
includeCanonicalHeader
final Boolean includeCanonicalHeader()
Whether to send a Canonical header.
-
_type
final JsonValue _type()
Expected to always return the following:
JsonValue.from("AZURE_BLOB")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
baseUrlForCanonicalHeader
final Optional<String> baseUrlForCanonicalHeader()
URL used in the Canonical header (if enabled).
-
_id
final JsonField<String> _id()
Returns the raw JSON value of id.
Unlike id, this method doesn't throw if the JSON field has an unexpected type.
-
_accountName
final JsonField<String> _accountName()
Returns the raw JSON value of accountName.
Unlike accountName, this method doesn't throw if the JSON field has an unexpected type.
-
_container
final JsonField<String> _container()
Returns the raw JSON value of container.
Unlike container, this method doesn't throw if the JSON field has an unexpected type.
-
_includeCanonicalHeader
final JsonField<Boolean> _includeCanonicalHeader()
Returns the raw JSON value of includeCanonicalHeader.
Unlike includeCanonicalHeader, this method doesn't throw if the JSON field has an unexpected type.
-
_name
final JsonField<String> _name()
Returns the raw JSON value of name.
Unlike name, this method doesn't throw if the JSON field has an unexpected type.
-
_prefix
final JsonField<String> _prefix()
Returns the raw JSON value of prefix.
Unlike prefix, this method doesn't throw if the JSON field has an unexpected type.
-
_baseUrlForCanonicalHeader
final JsonField<String> _baseUrlForCanonicalHeader()
Returns the raw JSON value of baseUrlForCanonicalHeader.
Unlike baseUrlForCanonicalHeader, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final OriginResponse.AzureBlob.Builder toBuilder()
-
validate
final OriginResponse.AzureBlob validate()
-
builder
final static OriginResponse.AzureBlob.Builder builder()
Returns a mutable builder for constructing an instance of AzureBlob.
The following fields are required:
.id() .accountName() .container() .includeCanonicalHeader() .name() .prefix()
-
-
-
-