class OpsgenieSdk::ForwardingRuleApi

Attributes

api_client[RW]

Public Class Methods

new(api_client = ApiClient.default) click to toggle source
# File lib/opsgenie_sdk/api/forwarding_rule_api.rb, line 19
def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Public Instance Methods

create_forwarding_rule(body, opts = {}) click to toggle source

Create Forwarding Rule Creates a new forwarding rule @param body Request payload to created forwarding rule @param [Hash] opts the optional parameters @return [CreateForwardingRuleResponse]

# File lib/opsgenie_sdk/api/forwarding_rule_api.rb, line 27
def create_forwarding_rule(body, opts = {})
  data, _status_code, _headers = create_forwarding_rule_with_http_info(body, opts)
  data
end
create_forwarding_rule_with_http_info(body, opts = {}) click to toggle source

Create Forwarding Rule Creates a new forwarding rule @param body Request payload to created forwarding rule @param [Hash] opts the optional parameters @return [Array<(CreateForwardingRuleResponse, Fixnum, Hash)>] CreateForwardingRuleResponse data, response status code and response headers

# File lib/opsgenie_sdk/api/forwarding_rule_api.rb, line 37
def create_forwarding_rule_with_http_info(body, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ForwardingRuleApi.create_forwarding_rule ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling ForwardingRuleApi.create_forwarding_rule"
  end
  # resource path
  local_var_path = '/v2/forwarding-rules'

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = @api_client.object_to_http_body(body)
  auth_names = ['GenieKey']
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'CreateForwardingRuleResponse')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ForwardingRuleApi#create_forwarding_rule\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
delete_forwarding_rule(identifier, opts = {}) click to toggle source

Delete Forwarding Rule Deletes forwarding rule with given identifier @param identifier Identifier of the forwarding rule which could be forwarding rule &#39;id&#39; or &#39;alias&#39; @param [Hash] opts the optional parameters @option opts [String] :identifier_type Type of the identifier that is provided as an in-line parameter. Possible values are &#39;id&#39; or &#39;alias&#39; (default to id) @return [SuccessResponse]

# File lib/opsgenie_sdk/api/forwarding_rule_api.rb, line 80
def delete_forwarding_rule(identifier, opts = {})
  data, _status_code, _headers = delete_forwarding_rule_with_http_info(identifier, opts)
  data
end
delete_forwarding_rule_with_http_info(identifier, opts = {}) click to toggle source

Delete Forwarding Rule Deletes forwarding rule with given identifier @param identifier Identifier of the forwarding rule which could be forwarding rule &#39;id&#39; or &#39;alias&#39; @param [Hash] opts the optional parameters @option opts [String] :identifier_type Type of the identifier that is provided as an in-line parameter. Possible values are &#39;id&#39; or &#39;alias&#39; @return [Array<(SuccessResponse, Fixnum, Hash)>] SuccessResponse data, response status code and response headers

# File lib/opsgenie_sdk/api/forwarding_rule_api.rb, line 91
def delete_forwarding_rule_with_http_info(identifier, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ForwardingRuleApi.delete_forwarding_rule ...'
  end
  # verify the required parameter 'identifier' is set
  if @api_client.config.client_side_validation && identifier.nil?
    fail ArgumentError, "Missing the required parameter 'identifier' when calling ForwardingRuleApi.delete_forwarding_rule"
  end
  if @api_client.config.client_side_validation && opts[:'identifier_type'] && !['id', 'alias'].include?(opts[:'identifier_type'])
    fail ArgumentError, 'invalid value for "identifier_type", must be one of id, alias'
  end
  # resource path
  local_var_path = '/v2/forwarding-rules/{identifier}'.sub('{' + 'identifier' + '}', identifier.to_s)

  # query parameters
  query_params = {}
  query_params[:'identifierType'] = opts[:'identifier_type'] if !opts[:'identifier_type'].nil?

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = ['GenieKey']
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'SuccessResponse')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ForwardingRuleApi#delete_forwarding_rule\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
get_forwarding_rule(identifier, opts = {}) click to toggle source

Get Forwarding Rule Returns forwarding rule with given id or alias @param identifier Identifier of the forwarding rule which could be forwarding rule &#39;id&#39; or &#39;alias&#39; @param [Hash] opts the optional parameters @option opts [String] :identifier_type Type of the identifier that is provided as an in-line parameter. Possible values are &#39;id&#39; or &#39;alias&#39; (default to id) @return [GetForwardingRuleResponse]

# File lib/opsgenie_sdk/api/forwarding_rule_api.rb, line 138
def get_forwarding_rule(identifier, opts = {})
  data, _status_code, _headers = get_forwarding_rule_with_http_info(identifier, opts)
  data
end
get_forwarding_rule_with_http_info(identifier, opts = {}) click to toggle source

Get Forwarding Rule Returns forwarding rule with given id or alias @param identifier Identifier of the forwarding rule which could be forwarding rule &#39;id&#39; or &#39;alias&#39; @param [Hash] opts the optional parameters @option opts [String] :identifier_type Type of the identifier that is provided as an in-line parameter. Possible values are &#39;id&#39; or &#39;alias&#39; @return [Array<(GetForwardingRuleResponse, Fixnum, Hash)>] GetForwardingRuleResponse data, response status code and response headers

# File lib/opsgenie_sdk/api/forwarding_rule_api.rb, line 149
def get_forwarding_rule_with_http_info(identifier, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ForwardingRuleApi.get_forwarding_rule ...'
  end
  # verify the required parameter 'identifier' is set
  if @api_client.config.client_side_validation && identifier.nil?
    fail ArgumentError, "Missing the required parameter 'identifier' when calling ForwardingRuleApi.get_forwarding_rule"
  end
  if @api_client.config.client_side_validation && opts[:'identifier_type'] && !['id', 'alias'].include?(opts[:'identifier_type'])
    fail ArgumentError, 'invalid value for "identifier_type", must be one of id, alias'
  end
  # resource path
  local_var_path = '/v2/forwarding-rules/{identifier}'.sub('{' + 'identifier' + '}', identifier.to_s)

  # query parameters
  query_params = {}
  query_params[:'identifierType'] = opts[:'identifier_type'] if !opts[:'identifier_type'].nil?

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = ['GenieKey']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'GetForwardingRuleResponse')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ForwardingRuleApi#get_forwarding_rule\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
list_forwarding_rules(opts = {}) click to toggle source

List Forwarding Rules Returns list of forwarding rules @param [Hash] opts the optional parameters @return [ListForwardingRulesResponse]

# File lib/opsgenie_sdk/api/forwarding_rule_api.rb, line 194
def list_forwarding_rules(opts = {})
  data, _status_code, _headers = list_forwarding_rules_with_http_info(opts)
  data
end
list_forwarding_rules_with_http_info(opts = {}) click to toggle source

List Forwarding Rules Returns list of forwarding rules @param [Hash] opts the optional parameters @return [Array<(ListForwardingRulesResponse, Fixnum, Hash)>] ListForwardingRulesResponse data, response status code and response headers

# File lib/opsgenie_sdk/api/forwarding_rule_api.rb, line 203
def list_forwarding_rules_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ForwardingRuleApi.list_forwarding_rules ...'
  end
  # resource path
  local_var_path = '/v2/forwarding-rules'

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = ['GenieKey']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'ListForwardingRulesResponse')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ForwardingRuleApi#list_forwarding_rules\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
update_forwarding_rule(identifier, body, opts = {}) click to toggle source

Update Forwarding Rule Update forwarding rule with given rule id or alias @param identifier Identifier of the forwarding rule which could be forwarding rule &#39;id&#39; or &#39;alias&#39; @param body Request payload of update forwarding rule action @param [Hash] opts the optional parameters @option opts [String] :identifier_type Type of the identifier that is provided as an in-line parameter. Possible values are &#39;id&#39; or &#39;alias&#39; (default to id) @return [SuccessResponse]

# File lib/opsgenie_sdk/api/forwarding_rule_api.rb, line 243
def update_forwarding_rule(identifier, body, opts = {})
  data, _status_code, _headers = update_forwarding_rule_with_http_info(identifier, body, opts)
  data
end
update_forwarding_rule_with_http_info(identifier, body, opts = {}) click to toggle source

Update Forwarding Rule Update forwarding rule with given rule id or alias @param identifier Identifier of the forwarding rule which could be forwarding rule &#39;id&#39; or &#39;alias&#39; @param body Request payload of update forwarding rule action @param [Hash] opts the optional parameters @option opts [String] :identifier_type Type of the identifier that is provided as an in-line parameter. Possible values are &#39;id&#39; or &#39;alias&#39; @return [Array<(SuccessResponse, Fixnum, Hash)>] SuccessResponse data, response status code and response headers

# File lib/opsgenie_sdk/api/forwarding_rule_api.rb, line 255
def update_forwarding_rule_with_http_info(identifier, body, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ForwardingRuleApi.update_forwarding_rule ...'
  end
  # verify the required parameter 'identifier' is set
  if @api_client.config.client_side_validation && identifier.nil?
    fail ArgumentError, "Missing the required parameter 'identifier' when calling ForwardingRuleApi.update_forwarding_rule"
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling ForwardingRuleApi.update_forwarding_rule"
  end
  if @api_client.config.client_side_validation && opts[:'identifier_type'] && !['id', 'alias'].include?(opts[:'identifier_type'])
    fail ArgumentError, 'invalid value for "identifier_type", must be one of id, alias'
  end
  # resource path
  local_var_path = '/v2/forwarding-rules/{identifier}'.sub('{' + 'identifier' + '}', identifier.to_s)

  # query parameters
  query_params = {}
  query_params[:'identifierType'] = opts[:'identifier_type'] if !opts[:'identifier_type'].nil?

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = @api_client.object_to_http_body(body)
  auth_names = ['GenieKey']
  data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'SuccessResponse')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ForwardingRuleApi#update_forwarding_rule\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end