Sha256: 1ceb5edce3651275fd8fa080fda07084b7d833f02738c2ef4a4445305acb32f7

Contents?: true

Size: 638 Bytes

Versions: 12

Compression:

Stored size: 638 Bytes

Contents

# Schedule a downtime with until occurrences

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

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

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
datadog_api_client-2.9.0 examples/v1/downtimes/CreateDowntime_1393233946.rb
datadog_api_client-2.8.0 examples/v1/downtimes/CreateDowntime_1393233946.rb
datadog_api_client-2.7.0 examples/v1/downtimes/CreateDowntime_1393233946.rb
datadog_api_client-2.6.0 examples/v1/downtimes/CreateDowntime_1393233946.rb
datadog_api_client-2.5.0 examples/v1/downtimes/CreateDowntime_1393233946.rb
datadog_api_client-2.4.0 examples/v1/downtimes/CreateDowntime_1393233946.rb
datadog_api_client-2.3.0 examples/v1/downtimes/CreateDowntime_1393233946.rb
datadog_api_client-2.2.0 examples/v1/downtimes/CreateDowntime_1393233946.rb
datadog_api_client-2.1.0 examples/v1/downtimes/CreateDowntime_1393233946.rb
datadog_api_client-2.0.2 examples/v1/downtimes/CreateDowntime_1393233946.rb
datadog_api_client-2.0.1 examples/v1/downtimes/CreateDowntime_1393233946.rb
datadog_api_client-2.0.0 examples/v1/downtimes/CreateDowntime_1393233946.rb