Sha256: 4854ca62f7de51d50da0672f582c143242569023fb63e22ab2fcd905226844b9

Contents?: true

Size: 911 Bytes

Versions: 19

Compression:

Stored size: 911 Bytes

Contents

# Schedule a downtime returns "OK" response

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

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

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
datadog_api_client-2.29.1 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.28.1 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.27.1 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.26.1 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.26.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.25.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.24.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.22.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.21.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.20.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.19.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.18.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.17.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.16.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.15.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.14.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.13.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.12.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.11.0 examples/v1/downtimes/CreateDowntime.rb