
com.azure.resourcemanager.frontdoor.models.WebApplicationFirewallPolicy 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.core.management.Region;
import com.azure.core.util.Context;
import com.azure.resourcemanager.frontdoor.fluent.models.WebApplicationFirewallPolicyInner;
import java.util.List;
import java.util.Map;
/**
* An immutable client-side representation of WebApplicationFirewallPolicy.
*/
public interface WebApplicationFirewallPolicy {
/**
* 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 etag property: Gets a unique read-only string that changes whenever the resource is updated.
*
* @return the etag value.
*/
String etag();
/**
* Gets the sku property: The pricing tier of web application firewall policy. Defaults to Classic_AzureFrontDoor if
* not specified.
*
* @return the sku value.
*/
Sku sku();
/**
* Gets the policySettings property: Describes settings for the policy.
*
* @return the policySettings value.
*/
PolicySettings policySettings();
/**
* Gets the customRules property: Describes custom rules inside the policy.
*
* @return the customRules value.
*/
CustomRuleList customRules();
/**
* Gets the managedRules property: Describes managed rules inside the policy.
*
* @return the managedRules value.
*/
ManagedRuleSetList managedRules();
/**
* Gets the frontendEndpointLinks property: Describes Frontend Endpoints associated with this Web Application
* Firewall policy.
*
* @return the frontendEndpointLinks value.
*/
List frontendEndpointLinks();
/**
* Gets the routingRuleLinks property: Describes Routing Rules associated with this Web Application Firewall policy.
*
* @return the routingRuleLinks value.
*/
List routingRuleLinks();
/**
* Gets the securityPolicyLinks property: Describes Security Policy associated with this Web Application Firewall
* policy.
*
* @return the securityPolicyLinks value.
*/
List securityPolicyLinks();
/**
* Gets the provisioningState property: Provisioning state of the policy.
*
* @return the provisioningState value.
*/
String provisioningState();
/**
* Gets the resourceState property: Resource status of the policy.
*
* @return the resourceState value.
*/
PolicyResourceState resourceState();
/**
* Gets the region of the resource.
*
* @return the region of the resource.
*/
Region region();
/**
* Gets the name of the resource region.
*
* @return the name of the resource region.
*/
String regionName();
/**
* Gets the name of the resource group.
*
* @return the name of the resource group.
*/
String resourceGroupName();
/**
* Gets the inner com.azure.resourcemanager.frontdoor.fluent.models.WebApplicationFirewallPolicyInner object.
*
* @return the inner object.
*/
WebApplicationFirewallPolicyInner innerModel();
/**
* The entirety of the WebApplicationFirewallPolicy definition.
*/
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithLocation,
DefinitionStages.WithResourceGroup, DefinitionStages.WithCreate {
}
/**
* The WebApplicationFirewallPolicy definition stages.
*/
interface DefinitionStages {
/**
* The first stage of the WebApplicationFirewallPolicy definition.
*/
interface Blank extends WithLocation {
}
/**
* The stage of the WebApplicationFirewallPolicy definition allowing to specify location.
*/
interface WithLocation {
/**
* Specifies the region for the resource.
*
* @param location The geo-location where the resource lives.
* @return the next definition stage.
*/
WithResourceGroup withRegion(Region location);
/**
* Specifies the region for the resource.
*
* @param location The geo-location where the resource lives.
* @return the next definition stage.
*/
WithResourceGroup withRegion(String location);
}
/**
* The stage of the WebApplicationFirewallPolicy definition allowing to specify parent resource.
*/
interface WithResourceGroup {
/**
* Specifies resourceGroupName.
*
* @param resourceGroupName Name of the Resource group within the Azure subscription.
* @return the next definition stage.
*/
WithCreate withExistingResourceGroup(String resourceGroupName);
}
/**
* The stage of the WebApplicationFirewallPolicy definition which contains all the minimum required properties
* for the resource to be created, but also allows for any other optional properties to be specified.
*/
interface WithCreate extends DefinitionStages.WithTags, DefinitionStages.WithEtag, DefinitionStages.WithSku,
DefinitionStages.WithPolicySettings, DefinitionStages.WithCustomRules, DefinitionStages.WithManagedRules {
/**
* Executes the create request.
*
* @return the created resource.
*/
WebApplicationFirewallPolicy create();
/**
* Executes the create request.
*
* @param context The context to associate with this operation.
* @return the created resource.
*/
WebApplicationFirewallPolicy create(Context context);
}
/**
* The stage of the WebApplicationFirewallPolicy definition allowing to specify tags.
*/
interface WithTags {
/**
* Specifies the tags property: Resource tags..
*
* @param tags Resource tags.
* @return the next definition stage.
*/
WithCreate withTags(Map tags);
}
/**
* The stage of the WebApplicationFirewallPolicy definition allowing to specify etag.
*/
interface WithEtag {
/**
* Specifies the etag property: Gets a unique read-only string that changes whenever the resource is
* updated..
*
* @param etag Gets a unique read-only string that changes whenever the resource is updated.
* @return the next definition stage.
*/
WithCreate withEtag(String etag);
}
/**
* The stage of the WebApplicationFirewallPolicy definition allowing to specify sku.
*/
interface WithSku {
/**
* Specifies the sku property: The pricing tier of web application firewall policy. Defaults to
* Classic_AzureFrontDoor if not specified..
*
* @param sku The pricing tier of web application firewall policy. Defaults to Classic_AzureFrontDoor if not
* specified.
* @return the next definition stage.
*/
WithCreate withSku(Sku sku);
}
/**
* The stage of the WebApplicationFirewallPolicy definition allowing to specify policySettings.
*/
interface WithPolicySettings {
/**
* Specifies the policySettings property: Describes settings for the policy..
*
* @param policySettings Describes settings for the policy.
* @return the next definition stage.
*/
WithCreate withPolicySettings(PolicySettings policySettings);
}
/**
* The stage of the WebApplicationFirewallPolicy definition allowing to specify customRules.
*/
interface WithCustomRules {
/**
* Specifies the customRules property: Describes custom rules inside the policy..
*
* @param customRules Describes custom rules inside the policy.
* @return the next definition stage.
*/
WithCreate withCustomRules(CustomRuleList customRules);
}
/**
* The stage of the WebApplicationFirewallPolicy definition allowing to specify managedRules.
*/
interface WithManagedRules {
/**
* Specifies the managedRules property: Describes managed rules inside the policy..
*
* @param managedRules Describes managed rules inside the policy.
* @return the next definition stage.
*/
WithCreate withManagedRules(ManagedRuleSetList managedRules);
}
}
/**
* Begins update for the WebApplicationFirewallPolicy resource.
*
* @return the stage of resource update.
*/
WebApplicationFirewallPolicy.Update update();
/**
* The template for WebApplicationFirewallPolicy update.
*/
interface Update extends UpdateStages.WithTags {
/**
* Executes the update request.
*
* @return the updated resource.
*/
WebApplicationFirewallPolicy apply();
/**
* Executes the update request.
*
* @param context The context to associate with this operation.
* @return the updated resource.
*/
WebApplicationFirewallPolicy apply(Context context);
}
/**
* The WebApplicationFirewallPolicy update stages.
*/
interface UpdateStages {
/**
* The stage of the WebApplicationFirewallPolicy update allowing to specify tags.
*/
interface WithTags {
/**
* Specifies the tags property: Resource tags..
*
* @param tags Resource tags.
* @return the next definition stage.
*/
Update withTags(Map tags);
}
}
/**
* Refreshes the resource to sync with Azure.
*
* @return the refreshed resource.
*/
WebApplicationFirewallPolicy refresh();
/**
* Refreshes the resource to sync with Azure.
*
* @param context The context to associate with this operation.
* @return the refreshed resource.
*/
WebApplicationFirewallPolicy refresh(Context context);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy