PacketCaptureFilter.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Filter that is applied to packet capture request. Multiple filters can be applied. */
@Fluent
public final class PacketCaptureFilter {
@JsonIgnore private final ClientLogger logger = new ClientLogger(PacketCaptureFilter.class);
/*
* Protocol to be filtered on.
*/
@JsonProperty(value = "protocol")
private PcProtocol protocol;
/*
* Local IP Address to be filtered on. Notation: "127.0.0.1" for single
* address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5"?
* for multiple entries. Multiple ranges not currently supported. Mixing
* ranges with multiple entries not currently supported. Default = null.
*/
@JsonProperty(value = "localIPAddress")
private String localIpAddress;
/*
* Local IP Address to be filtered on. Notation: "127.0.0.1" for single
* address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5;"
* for multiple entries. Multiple ranges not currently supported. Mixing
* ranges with multiple entries not currently supported. Default = null.
*/
@JsonProperty(value = "remoteIPAddress")
private String remoteIpAddress;
/*
* Local port to be filtered on. Notation: "80" for single port
* entry."80-85" for range. "80;443;" for multiple entries. Multiple ranges
* not currently supported. Mixing ranges with multiple entries not
* currently supported. Default = null.
*/
@JsonProperty(value = "localPort")
private String localPort;
/*
* Remote port to be filtered on. Notation: "80" for single port
* entry."80-85" for range. "80;443;" for multiple entries. Multiple ranges
* not currently supported. Mixing ranges with multiple entries not
* currently supported. Default = null.
*/
@JsonProperty(value = "remotePort")
private String remotePort;
/**
* Get the protocol property: Protocol to be filtered on.
*
* @return the protocol value.
*/
public PcProtocol protocol() {
return this.protocol;
}
/**
* Set the protocol property: Protocol to be filtered on.
*
* @param protocol the protocol value to set.
* @return the PacketCaptureFilter object itself.
*/
public PacketCaptureFilter withProtocol(PcProtocol protocol) {
this.protocol = protocol;
return this;
}
/**
* Get the localIpAddress property: Local IP Address to be filtered on. Notation: "127.0.0.1" for single address
* entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5"? for multiple entries. Multiple ranges not
* currently supported. Mixing ranges with multiple entries not currently supported. Default = null.
*
* @return the localIpAddress value.
*/
public String localIpAddress() {
return this.localIpAddress;
}
/**
* Set the localIpAddress property: Local IP Address to be filtered on. Notation: "127.0.0.1" for single address
* entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5"? for multiple entries. Multiple ranges not
* currently supported. Mixing ranges with multiple entries not currently supported. Default = null.
*
* @param localIpAddress the localIpAddress value to set.
* @return the PacketCaptureFilter object itself.
*/
public PacketCaptureFilter withLocalIpAddress(String localIpAddress) {
this.localIpAddress = localIpAddress;
return this;
}
/**
* Get the remoteIpAddress property: Local IP Address to be filtered on. Notation: "127.0.0.1" for single address
* entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5;" for multiple entries. Multiple ranges not
* currently supported. Mixing ranges with multiple entries not currently supported. Default = null.
*
* @return the remoteIpAddress value.
*/
public String remoteIpAddress() {
return this.remoteIpAddress;
}
/**
* Set the remoteIpAddress property: Local IP Address to be filtered on. Notation: "127.0.0.1" for single address
* entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5;" for multiple entries. Multiple ranges not
* currently supported. Mixing ranges with multiple entries not currently supported. Default = null.
*
* @param remoteIpAddress the remoteIpAddress value to set.
* @return the PacketCaptureFilter object itself.
*/
public PacketCaptureFilter withRemoteIpAddress(String remoteIpAddress) {
this.remoteIpAddress = remoteIpAddress;
return this;
}
/**
* Get the localPort property: Local port to be filtered on. Notation: "80" for single port entry."80-85" for range.
* "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not
* currently supported. Default = null.
*
* @return the localPort value.
*/
public String localPort() {
return this.localPort;
}
/**
* Set the localPort property: Local port to be filtered on. Notation: "80" for single port entry."80-85" for range.
* "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not
* currently supported. Default = null.
*
* @param localPort the localPort value to set.
* @return the PacketCaptureFilter object itself.
*/
public PacketCaptureFilter withLocalPort(String localPort) {
this.localPort = localPort;
return this;
}
/**
* Get the remotePort property: Remote port to be filtered on. Notation: "80" for single port entry."80-85" for
* range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple
* entries not currently supported. Default = null.
*
* @return the remotePort value.
*/
public String remotePort() {
return this.remotePort;
}
/**
* Set the remotePort property: Remote port to be filtered on. Notation: "80" for single port entry."80-85" for
* range. "80;443;" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple
* entries not currently supported. Default = null.
*
* @param remotePort the remotePort value to set.
* @return the PacketCaptureFilter object itself.
*/
public PacketCaptureFilter withRemotePort(String remotePort) {
this.remotePort = remotePort;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}