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 com.fasterxml.jackson.annotation.JsonProperty;
Describes a managed rule definition.
/** * Describes a managed rule definition. */
public class ManagedRuleDefinition {
Identifier for the managed rule.
/** * Identifier for the managed rule. */
@JsonProperty(value = "ruleId", access = JsonProperty.Access.WRITE_ONLY) private String ruleId;
Describes the functionality of the managed rule.
/** * Describes the functionality of the managed rule. */
@JsonProperty(value = "description", access = JsonProperty.Access.WRITE_ONLY) private String description;
Get identifier for the managed rule.
Returns:the ruleId value
/** * Get identifier for the managed rule. * * @return the ruleId value */
public String ruleId() { return this.ruleId; }
Get describes the functionality of the managed rule.
Returns:the description value
/** * Get describes the functionality of the managed rule. * * @return the description value */
public String description() { return this.description; } }