Class: Falcon::EventSchema
- Inherits:
-
Object
- Object
- Falcon::EventSchema
- Defined in:
- lib/crimson-falcon/api/event_schema.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#fdrschema_combined_event_get(opts = {}) ⇒ SchemaSensorEventResponseV1
Fetch combined schema.
-
#fdrschema_combined_event_get_with_http_info(opts = {}) ⇒ Array<(SchemaSensorEventResponseV1, Integer, Hash)>
Fetch combined schema.
-
#fdrschema_entities_event_get(opts = {}) ⇒ SchemaSensorEventResponseV1
Fetch event schema by ID.
-
#fdrschema_entities_event_get_with_http_info(opts = {}) ⇒ Array<(SchemaSensorEventResponseV1, Integer, Hash)>
Fetch event schema by ID.
-
#fdrschema_queries_event_get(opts = {}) ⇒ MsaspecQueryResponse
Get list of event IDs given a particular query.
-
#fdrschema_queries_event_get_with_http_info(opts = {}) ⇒ Array<(MsaspecQueryResponse, Integer, Hash)>
Get list of event IDs given a particular query.
-
#initialize(api_client = ApiClient.default) ⇒ EventSchema
constructor
A new instance of EventSchema.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ EventSchema
Returns a new instance of EventSchema.
36 37 38 |
# File 'lib/crimson-falcon/api/event_schema.rb', line 36 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
34 35 36 |
# File 'lib/crimson-falcon/api/event_schema.rb', line 34 def api_client @api_client end |
Instance Method Details
#fdrschema_combined_event_get(opts = {}) ⇒ SchemaSensorEventResponseV1
Fetch combined schema
42 43 44 45 |
# File 'lib/crimson-falcon/api/event_schema.rb', line 42 def fdrschema_combined_event_get(opts = {}) data, _status_code, _headers = fdrschema_combined_event_get_with_http_info(opts) data end |
#fdrschema_combined_event_get_with_http_info(opts = {}) ⇒ Array<(SchemaSensorEventResponseV1, Integer, Hash)>
Fetch combined schema
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/crimson-falcon/api/event_schema.rb', line 50 def fdrschema_combined_event_get_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: EventSchema.fdrschema_combined_event_get ...' end # resource path local_var_path = '/fdr/combined/schema-members/v1' # 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] || 'SchemaSensorEventResponseV1' # auth_names auth_names = opts[:debug_auth_names] || ['oauth2'] = opts.merge( :operation => :"EventSchema.fdrschema_combined_event_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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: EventSchema#fdrschema_combined_event_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#fdrschema_entities_event_get(opts = {}) ⇒ SchemaSensorEventResponseV1
Fetch event schema by ID
98 99 100 101 |
# File 'lib/crimson-falcon/api/event_schema.rb', line 98 def fdrschema_entities_event_get(opts = {}) data, _status_code, _headers = fdrschema_entities_event_get_with_http_info(opts) data end |
#fdrschema_entities_event_get_with_http_info(opts = {}) ⇒ Array<(SchemaSensorEventResponseV1, Integer, Hash)>
Fetch event schema by ID
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'lib/crimson-falcon/api/event_schema.rb', line 107 def fdrschema_entities_event_get_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: EventSchema.fdrschema_entities_event_get ...' end # resource path local_var_path = '/fdr/entities/schema-events/v1' # query parameters query_params = opts[:query_params] || {} query_params[:'ids'] = @api_client.build_collection_param(opts[:'ids'], :multi) if !opts[:'ids'].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] || 'SchemaSensorEventResponseV1' # auth_names auth_names = opts[:debug_auth_names] || ['oauth2'] = opts.merge( :operation => :"EventSchema.fdrschema_entities_event_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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: EventSchema#fdrschema_entities_event_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#fdrschema_queries_event_get(opts = {}) ⇒ MsaspecQueryResponse
Get list of event IDs given a particular query.
159 160 161 162 |
# File 'lib/crimson-falcon/api/event_schema.rb', line 159 def fdrschema_queries_event_get(opts = {}) data, _status_code, _headers = fdrschema_queries_event_get_with_http_info(opts) data end |
#fdrschema_queries_event_get_with_http_info(opts = {}) ⇒ Array<(MsaspecQueryResponse, Integer, Hash)>
Get list of event IDs given a particular query.
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
# File 'lib/crimson-falcon/api/event_schema.rb', line 171 def fdrschema_queries_event_get_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: EventSchema.fdrschema_queries_event_get ...' end # resource path local_var_path = '/fdr/queries/schema-events/v1' # query parameters query_params = opts[:query_params] || {} query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil? query_params[:'filter'] = opts[:'filter'] if !opts[:'filter'].nil? query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].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] || 'MsaspecQueryResponse' # auth_names auth_names = opts[:debug_auth_names] || ['oauth2'] = opts.merge( :operation => :"EventSchema.fdrschema_queries_event_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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: EventSchema#fdrschema_queries_event_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |