Sha256: 923843f5c44c342a46cd873ff1af2e6a26295439b19f8bfa3d4d50b919201420
Contents?: true
Size: 543 Bytes
Versions: 12
Compression:
Stored size: 543 Bytes
Contents
# Schedule a downtime once a year require "datadog_api_client" api_instance = DatadogAPIClient::V1::DowntimesAPI.new body = DatadogAPIClient::V1::Downtime.new({ message: "Example-Schedule_a_downtime_once_a_year", recurrence: DatadogAPIClient::V1::DowntimeRecurrence.new({ period: 1, type: "years", }), 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