Class: Kubernetes::LogsApi
- Inherits:
-
Object
- Object
- Kubernetes::LogsApi
- Defined in:
- lib/kubernetes/api/logs_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#initialize(api_client = ApiClient.default) ⇒ LogsApi
constructor
A new instance of LogsApi.
- #log_file_handler(logpath, opts = {}) ⇒ nil
-
#log_file_handler_with_http_info(logpath, _opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Nil, response status code and response headers.
- #log_file_list_handler(opts = {}) ⇒ nil
-
#log_file_list_handler_with_http_info(_opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Nil, response status code and response headers.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ LogsApi
Returns a new instance of LogsApi.
19 20 21 |
# File 'lib/kubernetes/api/logs_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/kubernetes/api/logs_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#log_file_handler(logpath, opts = {}) ⇒ nil
28 29 30 31 |
# File 'lib/kubernetes/api/logs_api.rb', line 28 def log_file_handler(logpath, opts = {}) log_file_handler_with_http_info(logpath, opts) nil end |
#log_file_handler_with_http_info(logpath, _opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Returns nil, response status code and response headers.
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/kubernetes/api/logs_api.rb', line 38 def log_file_handler_with_http_info(logpath, _opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: LogsApi.log_file_handler ...' end # verify the required parameter 'logpath' is set if @api_client.config.client_side_validation && logpath.nil? raise ArgumentError, "Missing the required parameter 'logpath' when calling LogsApi.log_file_handler" end # resource path local_var_path = '/logs/{logpath}'.sub('{logpath}', logpath.to_s) # query parameters query_params = {} # header parameters header_params = {} # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BearerToken'] 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) if @api_client.config.debugging @api_client.config.logger.debug "API called: LogsApi#log_file_handler\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#log_file_list_handler(opts = {}) ⇒ nil
79 80 81 82 |
# File 'lib/kubernetes/api/logs_api.rb', line 79 def log_file_list_handler(opts = {}) log_file_list_handler_with_http_info(opts) nil end |
#log_file_list_handler_with_http_info(_opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Returns nil, response status code and response headers.
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/kubernetes/api/logs_api.rb', line 88 def log_file_list_handler_with_http_info(_opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: LogsApi.log_file_list_handler ...' end # resource path local_var_path = '/logs/' # query parameters query_params = {} # header parameters header_params = {} # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BearerToken'] 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) if @api_client.config.debugging @api_client.config.logger.debug "API called: LogsApi#log_file_list_handler\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |