Class CompressionSettings

java.lang.Object
com.azure.resourcemanager.cdn.models.CompressionSettings
All Implemented Interfaces:
com.azure.json.JsonSerializable<CompressionSettings>

public final class CompressionSettings extends Object implements com.azure.json.JsonSerializable<CompressionSettings>
settings for compression.
  • 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.
    • 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.
    • 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.
    • 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.
    • validate

      public void validate()
      Validates the instance.
      Throws:
      IllegalArgumentException - thrown if the instance is not valid.
    • toJson

      public com.azure.json.JsonWriter toJson(com.azure.json.JsonWriter jsonWriter) throws IOException
      Specified by:
      toJson in interface com.azure.json.JsonSerializable<CompressionSettings>
      Throws:
      IOException
    • fromJson

      public static CompressionSettings fromJson(com.azure.json.JsonReader jsonReader) throws IOException
      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.