Sha256: 13096f535b741cbc508f35cd7d7520e2247d651e7171dd4d053006eeb95c23a0
Contents?: true
Size: 809 Bytes
Versions: 19
Compression:
Stored size: 809 Bytes
Contents
# Schedule a downtime until date require "datadog_api_client" api_instance = DatadogAPIClient::V1::DowntimesAPI.new body = DatadogAPIClient::V1::Downtime.new({ message: "Example-Downtime", 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", ], notify_end_states: [ DatadogAPIClient::V1::NotifyEndState::ALERT, ], notify_end_types: [ DatadogAPIClient::V1::NotifyEndType::CANCELED, ], }) p api_instance.create_downtime(body)
Version data entries
19 entries across 19 versions & 1 rubygems