Sha256: 0beee2db48461e17455b32d4f0befda234ba628758a5bd1b7c920c2d5011a518
Contents?: true
Size: 1.59 KB
Versions: 1
Compression:
Stored size: 1.59 KB
Contents
# Unless explicitly stated otherwise all files in this repository are licensed under the BSD-3-Clause License. # This product includes software developed at Datadog (https://www.datadoghq.com/). # Copyright 2011-Present Datadog, Inc. module Dogapi class V2 # for namespacing # Dashboard List API class DashboardListService < Dogapi::APIService API_VERSION = 'v2' RESOURCE_NAME = 'dashboard/lists/manual' SUB_RESOURCE_NAME = 'dashboards' def get_items(resource_id) request( Net::HTTP::Get, "/api/#{API_VERSION}/#{RESOURCE_NAME}/#{resource_id}/#{SUB_RESOURCE_NAME}", nil, nil, false ) end def add_items(resource_id, dashboards) body = { dashboards: dashboards } request( Net::HTTP::Post, "/api/#{API_VERSION}/#{RESOURCE_NAME}/#{resource_id}/#{SUB_RESOURCE_NAME}", nil, body, true ) end def update_items(resource_id, dashboards) body = { dashboards: dashboards } request( Net::HTTP::Put, "/api/#{API_VERSION}/#{RESOURCE_NAME}/#{resource_id}/#{SUB_RESOURCE_NAME}", nil, body, true ) end def delete_items(resource_id, dashboards) body = { dashboards: dashboards } request( Net::HTTP::Delete, "/api/#{API_VERSION}/#{RESOURCE_NAME}/#{resource_id}/#{SUB_RESOURCE_NAME}", nil, body, true ) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dogapi-1.45.0 | lib/dogapi/v2/dashboard_list.rb |