com.opsmatters.newrelic.api.services.AlertPolicyChannelService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of newrelic-api Show documentation
Show all versions of newrelic-api Show documentation
Java client library for the New Relic REST APIs built using Jersey and Gson.
The library includes over 110 operations across all of the available 35 New Relic services.
It can be used by applications to automate the configuration of New Relic Monitoring, Alerting and Dashboards, but can also be used for extracting incident and metric data, executing Insights queries, and uploading plugin metrics.
/*
* Copyright 2018 Gerald Curley
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.opsmatters.newrelic.api.services;
import com.google.common.base.Optional;
import com.opsmatters.newrelic.api.NewRelicClient;
import com.opsmatters.newrelic.api.model.alerts.policies.AlertPolicyChannel;
import com.opsmatters.newrelic.api.util.QueryParameterList;
/**
* The set of operations used for alert policy channels.
*
* @author Gerald Curley (opsmatters)
*/
public class AlertPolicyChannelService extends BaseFluent
{
/**
* Constructor that takes a http context and API client.
* @param httpContext The set of HTTP operations
* @param client The client used to invoke the New Relic operations
*/
public AlertPolicyChannelService(HttpContext httpContext, NewRelicClient client)
{
super(httpContext, client);
}
/**
* Adds the given alert channel to the alert policy with the given id.
* @param policyId The id of the alert policy to add the channel to
* @param channelId The id of the alert channel to add
* @return The alert policy channel that was updated
*/
public Optional update(long policyId, long channelId)
{
QueryParameterList queryParams = new QueryParameterList();
queryParams.add("policy_id", policyId);
queryParams.add("channel_ids", channelId);
return HTTP.PUT("/v2/alerts_policy_channels.json", null, null, queryParams, ALERT_POLICY_CHANNEL);
}
/**
* Deletes the given alert channel from the alert policy with the given id.
* @param policyId The id of the alert policy from which to delete the channel
* @param channelId The id of the alert channel to delete
* @return This object
*/
public AlertPolicyChannelService delete(long policyId, long channelId)
{
QueryParameterList queryParams = new QueryParameterList();
queryParams.add("policy_id", policyId);
queryParams.add("channel_id", channelId);
HTTP.DELETE("/v2/alerts_policy_channels.json", null, queryParams);
return this;
}
}