
com.azure.resourcemanager.frontdoor.models.ManagedRuleSetDefinition Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.frontdoor.models;
import com.azure.resourcemanager.frontdoor.fluent.models.ManagedRuleSetDefinitionInner;
import java.util.List;
import java.util.Map;
/**
* An immutable client-side representation of ManagedRuleSetDefinition.
*/
public interface ManagedRuleSetDefinition {
/**
* Gets the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
String id();
/**
* Gets the name property: The name of the resource.
*
* @return the name value.
*/
String name();
/**
* Gets the type property: The type of the resource.
*
* @return the type value.
*/
String type();
/**
* Gets the location property: The geo-location where the resource lives.
*
* @return the location value.
*/
String location();
/**
* Gets the tags property: Resource tags.
*
* @return the tags value.
*/
Map tags();
/**
* Gets the provisioningState property: Provisioning state of the managed rule set.
*
* @return the provisioningState value.
*/
String provisioningState();
/**
* Gets the ruleSetId property: Id of the managed rule set.
*
* @return the ruleSetId value.
*/
String ruleSetId();
/**
* Gets the ruleSetType property: Type of the managed rule set.
*
* @return the ruleSetType value.
*/
String ruleSetType();
/**
* Gets the ruleSetVersion property: Version of the managed rule set type.
*
* @return the ruleSetVersion value.
*/
String ruleSetVersion();
/**
* Gets the ruleGroups property: Rule groups of the managed rule set.
*
* @return the ruleGroups value.
*/
List ruleGroups();
/**
* Gets the inner com.azure.resourcemanager.frontdoor.fluent.models.ManagedRuleSetDefinitionInner object.
*
* @return the inner object.
*/
ManagedRuleSetDefinitionInner innerModel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy