Class OrganizationDevicesPacketCaptureFileSchedule
Schedule of the packet capture
[DataContract]
public class OrganizationDevicesPacketCaptureFileSchedule
- Inheritance
-
OrganizationDevicesPacketCaptureFileSchedule
- Inherited Members
Constructors
OrganizationDevicesPacketCaptureFileSchedule()
public OrganizationDevicesPacketCaptureFileSchedule()
Properties
EndTs
End date of the recurring schedule entry
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "endTs")]
public string EndTs { get; set; }
Property Value
Frequency
Frequency of the recurring schedule entry ex. hour|week|month|day|minute
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "frequency")]
public string Frequency { get; set; }
Property Value
Name
Name of the schedule
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "name")]
public string Name { get; set; }
Property Value
NextCaptureTs
The datetime at which next capture will occur
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "nextCaptureTs")]
public string NextCaptureTs { get; set; }
Property Value
Recurrence
The number of frequency units between each occurrence. For example, 1 means 'every [frequency]', 2 means 'every other [frequency]', etc. Used in conjunction with the 'frequency' field.
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "recurrence")]
public int Recurrence { get; set; }
Property Value
StartTs
Start date of the recurring schedule entry
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "startTs")]
public string StartTs { get; set; }
Property Value
Weekdays
The days of the week for the recurring schedule in string form. Multiple days can be combined.
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "weekdays")]
public List<string> Weekdays { get; set; }