Partilhar via


CompressionSettings Class

  • java.lang.Object
    • com.azure.resourcemanager.cdn.models.CompressionSettings

Implements

public final class CompressionSettings
implements JsonSerializable<CompressionSettings>

settings for compression.

Constructor Summary

Constructor Description
CompressionSettings()

Creates an instance of CompressionSettings class.

Method Summary

Modifier and Type Method and Description
List<String> contentTypesToCompress()

Get the contentTypesToCompress property: List of content types on which compression applies.

static CompressionSettings fromJson(JsonReader jsonReader)

Reads an instance of CompressionSettings from the JsonReader.

Boolean isCompressionEnabled()

Get the isCompressionEnabled property: Indicates whether content compression is enabled on AzureFrontDoor.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

CompressionSettings withContentTypesToCompress(List<String> contentTypesToCompress)

Set the contentTypesToCompress property: List of content types on which compression applies.

CompressionSettings withIsCompressionEnabled(Boolean isCompressionEnabled)

Set the isCompressionEnabled property: Indicates whether content compression is enabled on AzureFrontDoor.

Methods inherited from java.lang.Object

Constructor Details

CompressionSettings

public CompressionSettings()

Creates an instance of CompressionSettings class.

Method Details

contentTypesToCompress

public List<String> contentTypesToCompress()

Get the contentTypesToCompress property: List of content types on which compression applies. The value should be a valid MIME type.

Returns:

the contentTypesToCompress value.

fromJson

public static CompressionSettings fromJson(JsonReader jsonReader)

Reads an instance of CompressionSettings from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of CompressionSettings if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If an error occurs while reading the CompressionSettings.

isCompressionEnabled

public Boolean isCompressionEnabled()

Get the isCompressionEnabled property: Indicates whether content compression is enabled on AzureFrontDoor. Default value is false. If compression is enabled, content will be served as compressed if user requests for a compressed version. Content won't be compressed on AzureFrontDoor when requested content is smaller than 1 byte or larger than 1 MB.

Returns:

the isCompressionEnabled value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

withContentTypesToCompress

public CompressionSettings withContentTypesToCompress(List<String> contentTypesToCompress)

Set the contentTypesToCompress property: List of content types on which compression applies. The value should be a valid MIME type.

Parameters:

contentTypesToCompress - the contentTypesToCompress value to set.

Returns:

the CompressionSettings object itself.

withIsCompressionEnabled

public CompressionSettings withIsCompressionEnabled(Boolean isCompressionEnabled)

Set the isCompressionEnabled property: Indicates whether content compression is enabled on AzureFrontDoor. Default value is false. If compression is enabled, content will be served as compressed if user requests for a compressed version. Content won't be compressed on AzureFrontDoor when requested content is smaller than 1 byte or larger than 1 MB.

Parameters:

isCompressionEnabled - the isCompressionEnabled value to set.

Returns:

the CompressionSettings object itself.

Applies to