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.network.implementation; import java.util.List; import com.microsoft.azure.management.network.ProvisioningState; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten; import com.microsoft.rest.SkipParentValidation; import com.microsoft.azure.Resource;
Route Filter Resource.
/** * Route Filter Resource. */
@JsonFlatten @SkipParentValidation public class RouteFilterInner extends Resource {
Collection of RouteFilterRules contained within a route filter.
/** * Collection of RouteFilterRules contained within a route filter. */
@JsonProperty(value = "properties.rules") private List<RouteFilterRuleInner> rules;
A collection of references to express route circuit peerings.
/** * A collection of references to express route circuit peerings. */
@JsonProperty(value = "properties.peerings", access = JsonProperty.Access.WRITE_ONLY) private List<ExpressRouteCircuitPeeringInner> peerings;
A collection of references to express route circuit ipv6 peerings.
/** * A collection of references to express route circuit ipv6 peerings. */
@JsonProperty(value = "properties.ipv6Peerings", access = JsonProperty.Access.WRITE_ONLY) private List<ExpressRouteCircuitPeeringInner> ipv6Peerings;
The provisioning state of the route filter resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'.
/** * The provisioning state of the route filter resource. Possible values * include: 'Succeeded', 'Updating', 'Deleting', 'Failed'. */
@JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY) private ProvisioningState provisioningState;
A unique read-only string that changes whenever the resource is updated.
/** * A unique read-only string that changes whenever the resource is updated. */
@JsonProperty(value = "etag", access = JsonProperty.Access.WRITE_ONLY) private String etag;
Resource ID.
/** * Resource ID. */
@JsonProperty(value = "id") private String id;
Get collection of RouteFilterRules contained within a route filter.
Returns:the rules value
/** * Get collection of RouteFilterRules contained within a route filter. * * @return the rules value */
public List<RouteFilterRuleInner> rules() { return this.rules; }
Set collection of RouteFilterRules contained within a route filter.
Params:
  • rules – the rules value to set
Returns:the RouteFilterInner object itself.
/** * Set collection of RouteFilterRules contained within a route filter. * * @param rules the rules value to set * @return the RouteFilterInner object itself. */
public RouteFilterInner withRules(List<RouteFilterRuleInner> rules) { this.rules = rules; return this; }
Get a collection of references to express route circuit peerings.
Returns:the peerings value
/** * Get a collection of references to express route circuit peerings. * * @return the peerings value */
public List<ExpressRouteCircuitPeeringInner> peerings() { return this.peerings; }
Get a collection of references to express route circuit ipv6 peerings.
Returns:the ipv6Peerings value
/** * Get a collection of references to express route circuit ipv6 peerings. * * @return the ipv6Peerings value */
public List<ExpressRouteCircuitPeeringInner> ipv6Peerings() { return this.ipv6Peerings; }
Get the provisioning state of the route filter resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'.
Returns:the provisioningState value
/** * Get the provisioning state of the route filter resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'. * * @return the provisioningState value */
public ProvisioningState provisioningState() { return this.provisioningState; }
Get a unique read-only string that changes whenever the resource is updated.
Returns:the etag value
/** * Get a unique read-only string that changes whenever the resource is updated. * * @return the etag value */
public String etag() { return this.etag; }
Get resource ID.
Returns:the id value
/** * Get resource ID. * * @return the id value */
public String id() { return this.id; }
Set resource ID.
Params:
  • id – the id value to set
Returns:the RouteFilterInner object itself.
/** * Set resource ID. * * @param id the id value to set * @return the RouteFilterInner object itself. */
public RouteFilterInner withId(String id) { this.id = id; return this; } }