Class PacketCaptureParameters
- java.lang.Object
-
- com.microsoft.azure.management.network.PacketCaptureParameters
-
public class PacketCaptureParameters extends Object
Parameters that define the create packet capture operation.
-
-
Constructor Summary
Constructors Constructor Description PacketCaptureParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegerbytesToCapturePerPacket()Get the bytesToCapturePerPacket value.List<PacketCaptureFilter>filters()Get the filters value.PacketCaptureStorageLocationstorageLocation()Get the storageLocation value.Stringtarget()Get the target value.IntegertimeLimitInSeconds()Get the timeLimitInSeconds value.IntegertotalBytesPerSession()Get the totalBytesPerSession value.PacketCaptureParameterswithBytesToCapturePerPacket(Integer bytesToCapturePerPacket)Set the bytesToCapturePerPacket value.PacketCaptureParameterswithFilters(List<PacketCaptureFilter> filters)Set the filters value.PacketCaptureParameterswithStorageLocation(PacketCaptureStorageLocation storageLocation)Set the storageLocation value.PacketCaptureParameterswithTarget(String target)Set the target value.PacketCaptureParameterswithTimeLimitInSeconds(Integer timeLimitInSeconds)Set the timeLimitInSeconds value.PacketCaptureParameterswithTotalBytesPerSession(Integer totalBytesPerSession)Set the totalBytesPerSession value.
-
-
-
Method Detail
-
target
public String target()
Get the target value.- Returns:
- the target value
-
withTarget
public PacketCaptureParameters withTarget(String target)
Set the target value.- Parameters:
target- the target value to set- Returns:
- the PacketCaptureParameters object itself.
-
bytesToCapturePerPacket
public Integer bytesToCapturePerPacket()
Get the bytesToCapturePerPacket value.- Returns:
- the bytesToCapturePerPacket value
-
withBytesToCapturePerPacket
public PacketCaptureParameters withBytesToCapturePerPacket(Integer bytesToCapturePerPacket)
Set the bytesToCapturePerPacket value.- Parameters:
bytesToCapturePerPacket- the bytesToCapturePerPacket value to set- Returns:
- the PacketCaptureParameters object itself.
-
totalBytesPerSession
public Integer totalBytesPerSession()
Get the totalBytesPerSession value.- Returns:
- the totalBytesPerSession value
-
withTotalBytesPerSession
public PacketCaptureParameters withTotalBytesPerSession(Integer totalBytesPerSession)
Set the totalBytesPerSession value.- Parameters:
totalBytesPerSession- the totalBytesPerSession value to set- Returns:
- the PacketCaptureParameters object itself.
-
timeLimitInSeconds
public Integer timeLimitInSeconds()
Get the timeLimitInSeconds value.- Returns:
- the timeLimitInSeconds value
-
withTimeLimitInSeconds
public PacketCaptureParameters withTimeLimitInSeconds(Integer timeLimitInSeconds)
Set the timeLimitInSeconds value.- Parameters:
timeLimitInSeconds- the timeLimitInSeconds value to set- Returns:
- the PacketCaptureParameters object itself.
-
storageLocation
public PacketCaptureStorageLocation storageLocation()
Get the storageLocation value.- Returns:
- the storageLocation value
-
withStorageLocation
public PacketCaptureParameters withStorageLocation(PacketCaptureStorageLocation storageLocation)
Set the storageLocation value.- Parameters:
storageLocation- the storageLocation value to set- Returns:
- the PacketCaptureParameters object itself.
-
filters
public List<PacketCaptureFilter> filters()
Get the filters value.- Returns:
- the filters value
-
withFilters
public PacketCaptureParameters withFilters(List<PacketCaptureFilter> filters)
Set the filters value.- Parameters:
filters- the filters value to set- Returns:
- the PacketCaptureParameters object itself.
-
-