Sha256: 10ce9a8c991f344a0fce9315adf57c4679970721d6c208ab1578e9021e2f20be
Contents?: true
Size: 676 Bytes
Versions: 12
Compression:
Stored size: 676 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", mute_first_recovery_notification: true, monitor_tags: [ "tag0", ], }) p api_instance.create_downtime(body)
Version data entries
12 entries across 12 versions & 1 rubygems