SematextCloud 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +91 -69
- data/docs/AlertNotificationRequest.md +6 -6
- data/docs/AlertNotificationsApi.md +11 -11
- data/docs/AlertRule.md +50 -50
- data/docs/AlertRuleScheduleTimeRangeDto.md +4 -4
- data/docs/AlertRuleScheduleWeekdayDto.md +7 -7
- data/docs/AlertsApi.md +22 -22
- data/docs/App.md +33 -29
- data/docs/AppDescription.md +3 -3
- data/docs/AppMetadata.md +7 -7
- data/docs/AppsApi.md +23 -23
- data/docs/AwsSettingsControllerApi.md +7 -7
- data/docs/BasicAuthMethodDto.md +4 -4
- data/docs/BasicOrganizationDto.md +6 -6
- data/docs/BillingApi.md +18 -18
- data/docs/BillingInfo.md +5 -5
- data/docs/CloudWatchSettings.md +6 -6
- data/docs/CreateAppInfo.md +7 -7
- data/docs/CreateTokenDto.md +7 -0
- data/docs/DataSeriesFilter.md +5 -5
- data/docs/DataSeriesRequest.md +9 -9
- data/docs/Error.md +4 -4
- data/docs/FilterValue.md +8 -8
- data/docs/GenericApiResponse.md +6 -6
- data/docs/Invitation.md +12 -12
- data/docs/LogsAppApi.md +6 -6
- data/docs/MetricsApi.md +20 -20
- data/docs/MonitoringAppApi.md +6 -6
- data/docs/NotificationIntegration.md +12 -12
- data/docs/Plan.md +15 -15
- data/docs/ReportInfo.md +10 -10
- data/docs/ResetPasswordApi.md +6 -6
- data/docs/SavedQueriesApi.md +19 -19
- data/docs/SavedQuery.md +15 -15
- data/docs/ServiceIntegration.md +14 -14
- data/docs/SubscriptionDashboardDto.md +16 -0
- data/docs/SubscriptionDto.md +17 -0
- data/docs/SubscriptionsApi.md +468 -32
- data/docs/TagApiControllerApi.md +34 -34
- data/docs/TokensApiControllerApi.md +285 -0
- data/docs/UpdateAppInfo.md +11 -11
- data/docs/UpdateSubscriptionDto.md +6 -0
- data/docs/UpdateTokenDto.md +6 -0
- data/docs/UserInfo.md +3 -3
- data/docs/UserPermissions.md +5 -5
- data/docs/UserRole.md +5 -5
- data/lib/SematextCloud/api/apps_api.rb +52 -0
- data/lib/SematextCloud/api/subscriptions_api.rb +463 -17
- data/lib/SematextCloud/api/tokens_api_controller_api.rb +313 -0
- data/lib/SematextCloud/models/create_token_dto.rb +192 -0
- data/lib/SematextCloud/models/subscription_dashboard_dto.rb +319 -0
- data/lib/SematextCloud/models/subscription_dto.rb +328 -0
- data/lib/SematextCloud/models/update_subscription_dto.rb +183 -0
- data/lib/SematextCloud/models/update_token_dto.rb +183 -0
- data/lib/SematextCloud/version.rb +1 -1
- data/spec/api/tokens_api_controller_api_spec.rb +95 -0
- data/spec/models/create_token_dto_spec.rb +47 -0
- data/spec/models/subscription_dashboard_dto_spec.rb +109 -0
- data/spec/models/subscription_dto_spec.rb +115 -0
- data/spec/models/update_subscription_dto_spec.rb +41 -0
- data/spec/models/update_token_dto_spec.rb +41 -0
- metadata +55 -32
- data/assets/octi-blue.png +0 -0
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#Sematext Cloud API
|
3
|
+
|
4
|
+
#API Explorer provides access and documentation for Sematext REST API. The REST API requires the API Key to be sent as part of `Authorization` header. E.g.: `Authorization : apiKey e5f18450-205a-48eb-8589-7d49edaea813`.
|
5
|
+
|
6
|
+
OpenAPI spec version: v3
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.12
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for stcloud::CreateTokenDto
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'CreateTokenDto' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = stcloud::CreateTokenDto.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of CreateTokenDto' do
|
31
|
+
it 'should create an instance of CreateTokenDto' do
|
32
|
+
expect(@instance).to be_instance_of(stcloud::CreateTokenDto)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "readable"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "writeable"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,109 @@
|
|
1
|
+
=begin
|
2
|
+
#Sematext Cloud API
|
3
|
+
|
4
|
+
#API Explorer provides access and documentation for Sematext REST API. The REST API requires the API Key to be sent as part of `Authorization` header. E.g.: `Authorization : apiKey e5f18450-205a-48eb-8589-7d49edaea813`.
|
5
|
+
|
6
|
+
OpenAPI spec version: v3
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.12
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for stcloud::SubscriptionDashboardDto
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'SubscriptionDashboardDto' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = stcloud::SubscriptionDashboardDto.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of SubscriptionDashboardDto' do
|
31
|
+
it 'should create an instance of SubscriptionDashboardDto' do
|
32
|
+
expect(@instance).to be_instance_of(stcloud::SubscriptionDashboardDto)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "addresses"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "dashboard_id"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "enable"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "filters"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "frequency"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["EVERY_FIVE_MINUTES", "DAILY", "WEEKLY", "MONTHLY", "QUARTERLY"])
|
63
|
+
# validator.allowable_values.each do |value|
|
64
|
+
# expect { @instance.frequency = value }.not_to raise_error
|
65
|
+
# end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
describe 'test attribute "id"' do
|
70
|
+
it 'should work' do
|
71
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
describe 'test attribute "report_name"' do
|
76
|
+
it 'should work' do
|
77
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
describe 'test attribute "send_time"' do
|
82
|
+
it 'should work' do
|
83
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
describe 'test attribute "subject"' do
|
88
|
+
it 'should work' do
|
89
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
describe 'test attribute "text"' do
|
94
|
+
it 'should work' do
|
95
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
describe 'test attribute "time_range"' do
|
100
|
+
it 'should work' do
|
101
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
102
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["ONE_DAY", "ONE_WEEK", "ONE_MONTH", "TWO_MONTH", "SIX_MONTH", "ONE_YEAR"])
|
103
|
+
# validator.allowable_values.each do |value|
|
104
|
+
# expect { @instance.time_range = value }.not_to raise_error
|
105
|
+
# end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
end
|
@@ -0,0 +1,115 @@
|
|
1
|
+
=begin
|
2
|
+
#Sematext Cloud API
|
3
|
+
|
4
|
+
#API Explorer provides access and documentation for Sematext REST API. The REST API requires the API Key to be sent as part of `Authorization` header. E.g.: `Authorization : apiKey e5f18450-205a-48eb-8589-7d49edaea813`.
|
5
|
+
|
6
|
+
OpenAPI spec version: v3
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.12
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for stcloud::SubscriptionDto
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'SubscriptionDto' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = stcloud::SubscriptionDto.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of SubscriptionDto' do
|
31
|
+
it 'should create an instance of SubscriptionDto' do
|
32
|
+
expect(@instance).to be_instance_of(stcloud::SubscriptionDto)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "addresses"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "enable"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "filters"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "frequency"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["EVERY_FIVE_MINUTES", "DAILY", "WEEKLY", "MONTHLY", "QUARTERLY"])
|
57
|
+
# validator.allowable_values.each do |value|
|
58
|
+
# expect { @instance.frequency = value }.not_to raise_error
|
59
|
+
# end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
describe 'test attribute "id"' do
|
64
|
+
it 'should work' do
|
65
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
describe 'test attribute "report_name"' do
|
70
|
+
it 'should work' do
|
71
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
describe 'test attribute "send_time"' do
|
76
|
+
it 'should work' do
|
77
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
describe 'test attribute "subject"' do
|
82
|
+
it 'should work' do
|
83
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
describe 'test attribute "system_id"' do
|
88
|
+
it 'should work' do
|
89
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
describe 'test attribute "text"' do
|
94
|
+
it 'should work' do
|
95
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
describe 'test attribute "time_range"' do
|
100
|
+
it 'should work' do
|
101
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
102
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["ONE_DAY", "ONE_WEEK", "ONE_MONTH", "TWO_MONTH", "SIX_MONTH", "ONE_YEAR"])
|
103
|
+
# validator.allowable_values.each do |value|
|
104
|
+
# expect { @instance.time_range = value }.not_to raise_error
|
105
|
+
# end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
describe 'test attribute "user_permissions"' do
|
110
|
+
it 'should work' do
|
111
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
#Sematext Cloud API
|
3
|
+
|
4
|
+
#API Explorer provides access and documentation for Sematext REST API. The REST API requires the API Key to be sent as part of `Authorization` header. E.g.: `Authorization : apiKey e5f18450-205a-48eb-8589-7d49edaea813`.
|
5
|
+
|
6
|
+
OpenAPI spec version: v3
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.12
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for stcloud::UpdateSubscriptionDto
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'UpdateSubscriptionDto' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = stcloud::UpdateSubscriptionDto.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of UpdateSubscriptionDto' do
|
31
|
+
it 'should create an instance of UpdateSubscriptionDto' do
|
32
|
+
expect(@instance).to be_instance_of(stcloud::UpdateSubscriptionDto)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "enabled"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
#Sematext Cloud API
|
3
|
+
|
4
|
+
#API Explorer provides access and documentation for Sematext REST API. The REST API requires the API Key to be sent as part of `Authorization` header. E.g.: `Authorization : apiKey e5f18450-205a-48eb-8589-7d49edaea813`.
|
5
|
+
|
6
|
+
OpenAPI spec version: v3
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.12
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for stcloud::UpdateTokenDto
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'UpdateTokenDto' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = stcloud::UpdateTokenDto.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of UpdateTokenDto' do
|
31
|
+
it 'should create an instance of UpdateTokenDto' do
|
32
|
+
expect(@instance).to be_instance_of(stcloud::UpdateTokenDto)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "enabled"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: SematextCloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sematext.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -202,7 +202,6 @@ files:
|
|
202
202
|
- README.md
|
203
203
|
- Rakefile
|
204
204
|
- SematextCloud.gemspec
|
205
|
-
- assets/octi-blue.png
|
206
205
|
- docs/AlertNotificationRequest.md
|
207
206
|
- docs/AlertNotificationsApi.md
|
208
207
|
- docs/AlertRule.md
|
@@ -220,6 +219,7 @@ files:
|
|
220
219
|
- docs/BillingInfo.md
|
221
220
|
- docs/CloudWatchSettings.md
|
222
221
|
- docs/CreateAppInfo.md
|
222
|
+
- docs/CreateTokenDto.md
|
223
223
|
- docs/DataSeriesFilter.md
|
224
224
|
- docs/DataSeriesRequest.md
|
225
225
|
- docs/Error.md
|
@@ -236,9 +236,14 @@ files:
|
|
236
236
|
- docs/SavedQueriesApi.md
|
237
237
|
- docs/SavedQuery.md
|
238
238
|
- docs/ServiceIntegration.md
|
239
|
+
- docs/SubscriptionDashboardDto.md
|
240
|
+
- docs/SubscriptionDto.md
|
239
241
|
- docs/SubscriptionsApi.md
|
240
242
|
- docs/TagApiControllerApi.md
|
243
|
+
- docs/TokensApiControllerApi.md
|
241
244
|
- docs/UpdateAppInfo.md
|
245
|
+
- docs/UpdateSubscriptionDto.md
|
246
|
+
- docs/UpdateTokenDto.md
|
242
247
|
- docs/UserInfo.md
|
243
248
|
- docs/UserPermissions.md
|
244
249
|
- docs/UserRole.md
|
@@ -255,6 +260,7 @@ files:
|
|
255
260
|
- lib/SematextCloud/api/saved_queries_api.rb
|
256
261
|
- lib/SematextCloud/api/subscriptions_api.rb
|
257
262
|
- lib/SematextCloud/api/tag_api_controller_api.rb
|
263
|
+
- lib/SematextCloud/api/tokens_api_controller_api.rb
|
258
264
|
- lib/SematextCloud/api_client.rb
|
259
265
|
- lib/SematextCloud/api_error.rb
|
260
266
|
- lib/SematextCloud/configuration.rb
|
@@ -270,6 +276,7 @@ files:
|
|
270
276
|
- lib/SematextCloud/models/billing_info.rb
|
271
277
|
- lib/SematextCloud/models/cloud_watch_settings.rb
|
272
278
|
- lib/SematextCloud/models/create_app_info.rb
|
279
|
+
- lib/SematextCloud/models/create_token_dto.rb
|
273
280
|
- lib/SematextCloud/models/data_series_filter.rb
|
274
281
|
- lib/SematextCloud/models/data_series_request.rb
|
275
282
|
- lib/SematextCloud/models/error.rb
|
@@ -281,7 +288,11 @@ files:
|
|
281
288
|
- lib/SematextCloud/models/report_info.rb
|
282
289
|
- lib/SematextCloud/models/saved_query.rb
|
283
290
|
- lib/SematextCloud/models/service_integration.rb
|
291
|
+
- lib/SematextCloud/models/subscription_dashboard_dto.rb
|
292
|
+
- lib/SematextCloud/models/subscription_dto.rb
|
284
293
|
- lib/SematextCloud/models/update_app_info.rb
|
294
|
+
- lib/SematextCloud/models/update_subscription_dto.rb
|
295
|
+
- lib/SematextCloud/models/update_token_dto.rb
|
285
296
|
- lib/SematextCloud/models/user_info.rb
|
286
297
|
- lib/SematextCloud/models/user_permissions.rb
|
287
298
|
- lib/SematextCloud/models/user_role.rb
|
@@ -298,6 +309,7 @@ files:
|
|
298
309
|
- spec/api/saved_queries_api_spec.rb
|
299
310
|
- spec/api/subscriptions_api_spec.rb
|
300
311
|
- spec/api/tag_api_controller_api_spec.rb
|
312
|
+
- spec/api/tokens_api_controller_api_spec.rb
|
301
313
|
- spec/api_client_spec.rb
|
302
314
|
- spec/configuration_spec.rb
|
303
315
|
- spec/models/alert_notification_request_spec.rb
|
@@ -312,6 +324,7 @@ files:
|
|
312
324
|
- spec/models/billing_info_spec.rb
|
313
325
|
- spec/models/cloud_watch_settings_spec.rb
|
314
326
|
- spec/models/create_app_info_spec.rb
|
327
|
+
- spec/models/create_token_dto_spec.rb
|
315
328
|
- spec/models/data_series_filter_spec.rb
|
316
329
|
- spec/models/data_series_request_spec.rb
|
317
330
|
- spec/models/error_spec.rb
|
@@ -323,7 +336,11 @@ files:
|
|
323
336
|
- spec/models/report_info_spec.rb
|
324
337
|
- spec/models/saved_query_spec.rb
|
325
338
|
- spec/models/service_integration_spec.rb
|
339
|
+
- spec/models/subscription_dashboard_dto_spec.rb
|
340
|
+
- spec/models/subscription_dto_spec.rb
|
326
341
|
- spec/models/update_app_info_spec.rb
|
342
|
+
- spec/models/update_subscription_dto_spec.rb
|
343
|
+
- spec/models/update_token_dto_spec.rb
|
327
344
|
- spec/models/user_info_spec.rb
|
328
345
|
- spec/models/user_permissions_spec.rb
|
329
346
|
- spec/models/user_role_spec.rb
|
@@ -347,51 +364,57 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
347
364
|
- !ruby/object:Gem::Version
|
348
365
|
version: '0'
|
349
366
|
requirements: []
|
350
|
-
rubygems_version: 3.1.
|
367
|
+
rubygems_version: 3.1.4
|
351
368
|
signing_key:
|
352
369
|
specification_version: 4
|
353
370
|
summary: A Sematext Cloud API client, for interaction with Sematext Cloud solution
|
354
371
|
monitoring, alerting and log shipping.
|
355
372
|
test_files:
|
356
|
-
- spec/api/
|
357
|
-
- spec/api/metrics_api_spec.rb
|
358
|
-
- spec/api/subscriptions_api_spec.rb
|
373
|
+
- spec/api/monitoring_app_api_spec.rb
|
359
374
|
- spec/api/aws_settings_controller_api_spec.rb
|
360
|
-
- spec/api/
|
361
|
-
- spec/api/alerts_api_spec.rb
|
362
|
-
- spec/api/logs_app_api_spec.rb
|
375
|
+
- spec/api/reset_password_api_spec.rb
|
363
376
|
- spec/api/alert_notifications_api_spec.rb
|
364
|
-
- spec/api/
|
377
|
+
- spec/api/metrics_api_spec.rb
|
365
378
|
- spec/api/tag_api_controller_api_spec.rb
|
379
|
+
- spec/api/billing_api_spec.rb
|
380
|
+
- spec/api/logs_app_api_spec.rb
|
381
|
+
- spec/api/tokens_api_controller_api_spec.rb
|
366
382
|
- spec/api/saved_queries_api_spec.rb
|
367
|
-
- spec/api/
|
383
|
+
- spec/api/apps_api_spec.rb
|
384
|
+
- spec/api/alerts_api_spec.rb
|
385
|
+
- spec/api/subscriptions_api_spec.rb
|
368
386
|
- spec/api_client_spec.rb
|
369
387
|
- spec/configuration_spec.rb
|
388
|
+
- spec/models/app_metadata_spec.rb
|
389
|
+
- spec/models/alert_notification_request_spec.rb
|
370
390
|
- spec/models/invitation_spec.rb
|
371
|
-
- spec/models/
|
372
|
-
- spec/models/
|
391
|
+
- spec/models/basic_auth_method_dto_spec.rb
|
392
|
+
- spec/models/error_spec.rb
|
393
|
+
- spec/models/create_token_dto_spec.rb
|
394
|
+
- spec/models/service_integration_spec.rb
|
395
|
+
- spec/models/notification_integration_spec.rb
|
373
396
|
- spec/models/alert_rule_spec.rb
|
374
|
-
- spec/models/alert_rule_schedule_time_range_dto_spec.rb
|
375
397
|
- spec/models/plan_spec.rb
|
376
|
-
- spec/models/
|
377
|
-
- spec/models/
|
378
|
-
- spec/models/
|
379
|
-
- spec/models/user_permissions_spec.rb
|
380
|
-
- spec/models/billing_info_spec.rb
|
381
|
-
- spec/models/app_metadata_spec.rb
|
382
|
-
- spec/models/alert_rule_schedule_weekday_dto_spec.rb
|
383
|
-
- spec/models/filter_value_spec.rb
|
384
|
-
- spec/models/report_info_spec.rb
|
385
|
-
- spec/models/data_series_request_spec.rb
|
398
|
+
- spec/models/update_app_info_spec.rb
|
399
|
+
- spec/models/basic_organization_dto_spec.rb
|
400
|
+
- spec/models/subscription_dto_spec.rb
|
386
401
|
- spec/models/create_app_info_spec.rb
|
387
|
-
- spec/models/alert_notification_request_spec.rb
|
388
|
-
- spec/models/basic_auth_method_dto_spec.rb
|
389
402
|
- spec/models/app_description_spec.rb
|
390
|
-
- spec/models/
|
391
|
-
- spec/models/
|
392
|
-
- spec/models/
|
393
|
-
- spec/models/service_integration_spec.rb
|
403
|
+
- spec/models/subscription_dashboard_dto_spec.rb
|
404
|
+
- spec/models/filter_value_spec.rb
|
405
|
+
- spec/models/user_role_spec.rb
|
394
406
|
- spec/models/cloud_watch_settings_spec.rb
|
407
|
+
- spec/models/alert_rule_schedule_weekday_dto_spec.rb
|
408
|
+
- spec/models/update_token_dto_spec.rb
|
409
|
+
- spec/models/report_info_spec.rb
|
410
|
+
- spec/models/billing_info_spec.rb
|
411
|
+
- spec/models/data_series_request_spec.rb
|
412
|
+
- spec/models/data_series_filter_spec.rb
|
413
|
+
- spec/models/saved_query_spec.rb
|
395
414
|
- spec/models/generic_api_response_spec.rb
|
396
|
-
- spec/models/
|
415
|
+
- spec/models/user_permissions_spec.rb
|
416
|
+
- spec/models/update_subscription_dto_spec.rb
|
417
|
+
- spec/models/app_spec.rb
|
418
|
+
- spec/models/user_info_spec.rb
|
419
|
+
- spec/models/alert_rule_schedule_time_range_dto_spec.rb
|
397
420
|
- spec/spec_helper.rb
|