NSX-T Data Center REST API

WeeklyTelemetrySchedule (type)

{
  "extends": {
    "$ref": "TelemetrySchedule"
  },
  "id": "WeeklyTelemetrySchedule",
  "module_id": "TelemetryConfig",
  "polymorphic-type-descriptor": {
    "type-identifier": "WeeklyTelemetrySchedule"
  },
  "properties": {
    "day_of_week": {
      "description": "Day of week on which data will be collected. Specify one of SUNDAY through SATURDAY.",
      "enum": [
        "SUNDAY",
        "MONDAY",
        "TUESDAY",
        "WEDNESDAY",
        "THURSDAY",
        "FRIDAY",
        "SATURDAY"
      ],
      "required": true,
      "title": "Day of week on which data will be collected",
      "type": "string"
    },
    "frequency_type": {
      "description": "Specify one of DailyTelemetrySchedule, WeeklyTelemetrySchedule, or MonthlyTelemetrySchedule.",
      "required": true,
      "title": "Frequency at which data will be collected",
      "type": "string"
    },
    "hour_of_day": {
      "description": "Hour at which data will be collected. Specify a value between 0 through 23.",
      "maximum": 23,
      "minimum": 0,
      "required": true,
      "title": "Hour at which data will be collected",
      "type": "integer"
    },
    "minutes": {
      "default": 0,
      "description": "Minute at which data will be collected. Specify a value between 0 through 59.",
      "maximum": 59,
      "minimum": 0,
      "required": false,
      "title": "Minute at which data will be collected",
      "type": "integer"
    }
  },
  "type": "object"
}