Sha256: 9e63621ec1738ccf2d9455da9435d96513d9113a6bad9943e92000ebde003ab5

Contents?: true

Size: 628 Bytes

Versions: 19

Compression:

Stored size: 628 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-Schedule_a_downtime_returns_OK_response",
  start: Time.now.to_i,
  timezone: "Etc/UTC",
  scope: [
    "test:examplescheduleadowntimereturnsokresponse",
  ],
  recurrence: DatadogAPIClient::V1::DowntimeRecurrence.new({
    type: "weeks",
    period: 1,
    week_days: [
      "Mon",
      "Tue",
      "Wed",
      "Thu",
      "Fri",
    ],
    until_date: (Time.now + 21 * 86400).to_i,
  }),
})
p api_instance.create_downtime(body)

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
datadog_api_client-2.9.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.8.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.7.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.6.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.5.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.4.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.3.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.2.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.1.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.0.2 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.0.1 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-2.0.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-1.11.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-1.10.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-1.9.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-1.8.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-1.7.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-1.6.0 examples/v1/downtimes/CreateDowntime.rb
datadog_api_client-1.5.0 examples/v1/downtimes/CreateDowntime.rb