Sha256: 0bc82758250ebaede2c26200b888a23751c568bb49f0508aa970453a206627dd
Contents?: true
Size: 508 Bytes
Versions: 2
Compression:
Stored size: 508 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, }) p api_instance.create_downtime(body)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
datadog_api_client-1.11.0 | examples/v1/downtimes/CreateDowntime_3059354445.rb |
datadog_api_client-1.10.0 | examples/v1/downtimes/CreateDowntime_3059354445.rb |