From 7f4e259c26efb25dfeb81eb2e7e054f2ac01cc93 Mon Sep 17 00:00:00 2001 From: John Wang Date: Thu, 16 Feb 2023 01:51:40 -0800 Subject: [PATCH] docs: `README.md`: update --- README.md | 3 +++ lib/sumologic.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7989a15..b0c537b 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,9 @@ r = sumo.create_content path, data r = sumo.get_content path r = sumo.delete_content path + +# Low-Level +r = sumo.post path, data ``` Note, for the search methods, the query parameter can be exactly the same query that is entered into the Sumo Logic web console. diff --git a/lib/sumologic.rb b/lib/sumologic.rb index 22c7955..2d79173 100644 --- a/lib/sumologic.rb +++ b/lib/sumologic.rb @@ -4,7 +4,7 @@ require 'multi_json' module SumoLogic - VERSION = '0.1.1' + VERSION = '0.1.2' URL = 'https://api.sumologic.com/api/v1' class Client