Sha256: e782909695b9b2cd71e2ffea08926fb7cb5865fc41506d5a76ca8d6a540eacfb

Contents?: true

Size: 599 Bytes

Versions: 4

Compression:

Stored size: 599 Bytes

Contents

# Schedule a downtime until date

require "datadog_api_client"
api_instance = DatadogAPIClient::V1::DowntimesAPI.new

body = DatadogAPIClient::V1::Downtime.new({
  message: "Example-Schedule_a_downtime_until_date",
  recurrence: DatadogAPIClient::V1::DowntimeRecurrence.new({
    period: 1,
    type: "weeks",
    until_date: (Time.now + 21 * 86400).to_i,
    week_days: [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
    ],
  }),
  scope: [
    "*",
  ],
  start: Time.now.to_i,
  _end: (Time.now + 1 * 3600).to_i,
  timezone: "Etc/UTC",
})
p api_instance.create_downtime(body)

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
datadog_api_client-1.9.0 examples/v1/downtimes/CreateDowntime_2908359488.rb
datadog_api_client-1.8.0 examples/v1/downtimes/CreateDowntime_2908359488.rb
datadog_api_client-1.7.0 examples/v1/downtimes/CreateDowntime_2908359488.rb
datadog_api_client-1.6.0 examples/v1/downtimes/CreateDowntime_2908359488.rb