=begin #Svix API #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) The version of the OpenAPI document: 1.1.1 Generated by: https://openapi-generator.tech OpenAPI Generator version: 5.2.0 =end require 'cgi' module Svix class StreamApi attr_accessor :api_client def initialize(api_client = ApiClient.default) @api_client = api_client end # Create Stream # Creates a new stream. # @param stream_in [StreamIn] # @param [Hash] opts the optional parameters # @option opts [String] :idempotency_key The request's idempotency key # @return [StreamOut] def v1_stream_create(stream_in, opts = {}) data, _status_code, _headers = v1_stream_create_with_http_info(stream_in, opts) data end # Create Stream # Creates a new stream. # @param stream_in [StreamIn] # @param [Hash] opts the optional parameters # @option opts [String] :idempotency_key The request's idempotency key # @return [Array<(StreamOut, Integer, Hash)>] StreamOut data, response status code and response headers def v1_stream_create_with_http_info(stream_in, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StreamApi.v1_stream_create ...' end # verify the required parameter 'stream_in' is set if @api_client.config.client_side_validation && stream_in.nil? fail ArgumentError, "Missing the required parameter 'stream_in' when calling StreamApi.v1_stream_create" end # resource path local_var_path = '/api/v1/stream' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) header_params[:'idempotency-key'] = opts[:'idempotency_key'] if !opts[:'idempotency_key'].nil? # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(stream_in) # return_type return_type = opts[:debug_return_type] || 'StreamOut' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] new_options = opts.merge( :operation => :"StreamApi.v1_stream_create", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options) if @api_client.config.debugging @api_client.config.logger.debug "API called: StreamApi#v1_stream_create\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # Delete Stream # Delete a stream. # @param stream_id [String] # @param [Hash] opts the optional parameters # @return [nil] def v1_stream_delete(stream_id, opts = {}) v1_stream_delete_with_http_info(stream_id, opts) nil end # Delete Stream # Delete a stream. # @param stream_id [String] # @param [Hash] opts the optional parameters # @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers def v1_stream_delete_with_http_info(stream_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StreamApi.v1_stream_delete ...' end # verify the required parameter 'stream_id' is set if @api_client.config.client_side_validation && stream_id.nil? fail ArgumentError, "Missing the required parameter 'stream_id' when calling StreamApi.v1_stream_delete" end # resource path local_var_path = '/api/v1/stream/{stream_id}'.sub('{' + 'stream_id' + '}', CGI.escape(stream_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] new_options = opts.merge( :operation => :"StreamApi.v1_stream_delete", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options) if @api_client.config.debugging @api_client.config.logger.debug "API called: StreamApi#v1_stream_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # Get Stream # Get a stream by id or uid. # @param stream_id [String] # @param [Hash] opts the optional parameters # @return [StreamOut] def v1_stream_get(stream_id, opts = {}) data, _status_code, _headers = v1_stream_get_with_http_info(stream_id, opts) data end # Get Stream # Get a stream by id or uid. # @param stream_id [String] # @param [Hash] opts the optional parameters # @return [Array<(StreamOut, Integer, Hash)>] StreamOut data, response status code and response headers def v1_stream_get_with_http_info(stream_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StreamApi.v1_stream_get ...' end # verify the required parameter 'stream_id' is set if @api_client.config.client_side_validation && stream_id.nil? fail ArgumentError, "Missing the required parameter 'stream_id' when calling StreamApi.v1_stream_get" end # resource path local_var_path = '/api/v1/stream/{stream_id}'.sub('{' + 'stream_id' + '}', CGI.escape(stream_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'StreamOut' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] new_options = opts.merge( :operation => :"StreamApi.v1_stream_get", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options) if @api_client.config.debugging @api_client.config.logger.debug "API called: StreamApi#v1_stream_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # List Streams # List of all the organization's streams. # @param [Hash] opts the optional parameters # @option opts [Integer] :limit Limit the number of returned items # @option opts [String] :iterator The iterator returned from a prior invocation # @option opts [Ordering] :order The sorting order of the returned items # @return [ListResponseStreamOut] def v1_stream_list(opts = {}) data, _status_code, _headers = v1_stream_list_with_http_info(opts) data end # List Streams # List of all the organization's streams. # @param [Hash] opts the optional parameters # @option opts [Integer] :limit Limit the number of returned items # @option opts [String] :iterator The iterator returned from a prior invocation # @option opts [Ordering] :order The sorting order of the returned items # @return [Array<(ListResponseStreamOut, Integer, Hash)>] ListResponseStreamOut data, response status code and response headers def v1_stream_list_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StreamApi.v1_stream_list ...' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 250 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling StreamApi.v1_stream_list, must be smaller than or equal to 250.' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] < 1 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling StreamApi.v1_stream_list, must be greater than or equal to 1.' end # resource path local_var_path = '/api/v1/stream' # query parameters query_params = opts[:query_params] || {} query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? query_params[:'iterator'] = opts[:'iterator'] if !opts[:'iterator'].nil? query_params[:'order'] = opts[:'order'] if !opts[:'order'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'ListResponseStreamOut' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] new_options = opts.merge( :operation => :"StreamApi.v1_stream_list", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options) if @api_client.config.debugging @api_client.config.logger.debug "API called: StreamApi#v1_stream_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # Patch Stream # Partially update a stream. # @param stream_id [String] # @param stream_patch [StreamPatch] # @param [Hash] opts the optional parameters # @return [StreamOut] def v1_stream_patch(stream_id, stream_patch, opts = {}) data, _status_code, _headers = v1_stream_patch_with_http_info(stream_id, stream_patch, opts) data end # Patch Stream # Partially update a stream. # @param stream_id [String] # @param stream_patch [StreamPatch] # @param [Hash] opts the optional parameters # @return [Array<(StreamOut, Integer, Hash)>] StreamOut data, response status code and response headers def v1_stream_patch_with_http_info(stream_id, stream_patch, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StreamApi.v1_stream_patch ...' end # verify the required parameter 'stream_id' is set if @api_client.config.client_side_validation && stream_id.nil? fail ArgumentError, "Missing the required parameter 'stream_id' when calling StreamApi.v1_stream_patch" end # verify the required parameter 'stream_patch' is set if @api_client.config.client_side_validation && stream_patch.nil? fail ArgumentError, "Missing the required parameter 'stream_patch' when calling StreamApi.v1_stream_patch" end # resource path local_var_path = '/api/v1/stream/{stream_id}'.sub('{' + 'stream_id' + '}', CGI.escape(stream_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(stream_patch) # return_type return_type = opts[:debug_return_type] || 'StreamOut' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] new_options = opts.merge( :operation => :"StreamApi.v1_stream_patch", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, new_options) if @api_client.config.debugging @api_client.config.logger.debug "API called: StreamApi#v1_stream_patch\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end # Update Stream # Update a stream. # @param stream_id [String] # @param stream_in [StreamIn] # @param [Hash] opts the optional parameters # @return [StreamOut] def v1_stream_update(stream_id, stream_in, opts = {}) data, _status_code, _headers = v1_stream_update_with_http_info(stream_id, stream_in, opts) data end # Update Stream # Update a stream. # @param stream_id [String] # @param stream_in [StreamIn] # @param [Hash] opts the optional parameters # @return [Array<(StreamOut, Integer, Hash)>] StreamOut data, response status code and response headers def v1_stream_update_with_http_info(stream_id, stream_in, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StreamApi.v1_stream_update ...' end # verify the required parameter 'stream_id' is set if @api_client.config.client_side_validation && stream_id.nil? fail ArgumentError, "Missing the required parameter 'stream_id' when calling StreamApi.v1_stream_update" end # verify the required parameter 'stream_in' is set if @api_client.config.client_side_validation && stream_in.nil? fail ArgumentError, "Missing the required parameter 'stream_in' when calling StreamApi.v1_stream_update" end # resource path local_var_path = '/api/v1/stream/{stream_id}'.sub('{' + 'stream_id' + '}', CGI.escape(stream_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(stream_in) # return_type return_type = opts[:debug_return_type] || 'StreamOut' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] new_options = opts.merge( :operation => :"StreamApi.v1_stream_update", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options) if @api_client.config.debugging @api_client.config.logger.debug "API called: StreamApi#v1_stream_update\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end end end