Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.cdn; import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty;
Parameters required for content purge.
/** * Parameters required for content purge. */
public class PurgeParameters {
The path to the content to be purged. Can describe a file path or a wild card directory.
/** * The path to the content to be purged. Can describe a file path or a wild * card directory. */
@JsonProperty(value = "contentPaths", required = true) private List<String> contentPaths;
Get the path to the content to be purged. Can describe a file path or a wild card directory.
Returns:the contentPaths value
/** * Get the path to the content to be purged. Can describe a file path or a wild card directory. * * @return the contentPaths value */
public List<String> contentPaths() { return this.contentPaths; }
Set the path to the content to be purged. Can describe a file path or a wild card directory.
Params:
  • contentPaths – the contentPaths value to set
Returns:the PurgeParameters object itself.
/** * Set the path to the content to be purged. Can describe a file path or a wild card directory. * * @param contentPaths the contentPaths value to set * @return the PurgeParameters object itself. */
public PurgeParameters withContentPaths(List<String> contentPaths) { this.contentPaths = contentPaths; return this; } }