Datadog API Node.JS Client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

29 lines
500 B

var infrastructure_api = function(){
};
infrastructure_api.prototype.search = function(query, callback){
this.request('GET', '/search', query, callback);
};
infrastructure_api.prototype.all_tags = function(){
};
infrastructure_api.prototype.host_tags = function(){
};
infrastructure_api.prototype.add_tags = function(){
};
infrastructure_api.prototype.change_tags = function(){
};
infrastructure_api.prototype.detach_tags = function(){
};
return module.exports = infrastructure_api;