SematextCloud 0.1.4 → 0.1.5
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/README.md +87 -65
- 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/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 +53 -29
@@ -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.1.
|
4
|
+
version: 0.1.5
|
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-10-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -219,6 +219,7 @@ files:
|
|
219
219
|
- docs/BillingInfo.md
|
220
220
|
- docs/CloudWatchSettings.md
|
221
221
|
- docs/CreateAppInfo.md
|
222
|
+
- docs/CreateTokenDto.md
|
222
223
|
- docs/DataSeriesFilter.md
|
223
224
|
- docs/DataSeriesRequest.md
|
224
225
|
- docs/Error.md
|
@@ -235,9 +236,14 @@ files:
|
|
235
236
|
- docs/SavedQueriesApi.md
|
236
237
|
- docs/SavedQuery.md
|
237
238
|
- docs/ServiceIntegration.md
|
239
|
+
- docs/SubscriptionDashboardDto.md
|
240
|
+
- docs/SubscriptionDto.md
|
238
241
|
- docs/SubscriptionsApi.md
|
239
242
|
- docs/TagApiControllerApi.md
|
243
|
+
- docs/TokensApiControllerApi.md
|
240
244
|
- docs/UpdateAppInfo.md
|
245
|
+
- docs/UpdateSubscriptionDto.md
|
246
|
+
- docs/UpdateTokenDto.md
|
241
247
|
- docs/UserInfo.md
|
242
248
|
- docs/UserPermissions.md
|
243
249
|
- docs/UserRole.md
|
@@ -254,6 +260,7 @@ files:
|
|
254
260
|
- lib/SematextCloud/api/saved_queries_api.rb
|
255
261
|
- lib/SematextCloud/api/subscriptions_api.rb
|
256
262
|
- lib/SematextCloud/api/tag_api_controller_api.rb
|
263
|
+
- lib/SematextCloud/api/tokens_api_controller_api.rb
|
257
264
|
- lib/SematextCloud/api_client.rb
|
258
265
|
- lib/SematextCloud/api_error.rb
|
259
266
|
- lib/SematextCloud/configuration.rb
|
@@ -269,6 +276,7 @@ files:
|
|
269
276
|
- lib/SematextCloud/models/billing_info.rb
|
270
277
|
- lib/SematextCloud/models/cloud_watch_settings.rb
|
271
278
|
- lib/SematextCloud/models/create_app_info.rb
|
279
|
+
- lib/SematextCloud/models/create_token_dto.rb
|
272
280
|
- lib/SematextCloud/models/data_series_filter.rb
|
273
281
|
- lib/SematextCloud/models/data_series_request.rb
|
274
282
|
- lib/SematextCloud/models/error.rb
|
@@ -280,7 +288,11 @@ files:
|
|
280
288
|
- lib/SematextCloud/models/report_info.rb
|
281
289
|
- lib/SematextCloud/models/saved_query.rb
|
282
290
|
- lib/SematextCloud/models/service_integration.rb
|
291
|
+
- lib/SematextCloud/models/subscription_dashboard_dto.rb
|
292
|
+
- lib/SematextCloud/models/subscription_dto.rb
|
283
293
|
- lib/SematextCloud/models/update_app_info.rb
|
294
|
+
- lib/SematextCloud/models/update_subscription_dto.rb
|
295
|
+
- lib/SematextCloud/models/update_token_dto.rb
|
284
296
|
- lib/SematextCloud/models/user_info.rb
|
285
297
|
- lib/SematextCloud/models/user_permissions.rb
|
286
298
|
- lib/SematextCloud/models/user_role.rb
|
@@ -297,6 +309,7 @@ files:
|
|
297
309
|
- spec/api/saved_queries_api_spec.rb
|
298
310
|
- spec/api/subscriptions_api_spec.rb
|
299
311
|
- spec/api/tag_api_controller_api_spec.rb
|
312
|
+
- spec/api/tokens_api_controller_api_spec.rb
|
300
313
|
- spec/api_client_spec.rb
|
301
314
|
- spec/configuration_spec.rb
|
302
315
|
- spec/models/alert_notification_request_spec.rb
|
@@ -311,6 +324,7 @@ files:
|
|
311
324
|
- spec/models/billing_info_spec.rb
|
312
325
|
- spec/models/cloud_watch_settings_spec.rb
|
313
326
|
- spec/models/create_app_info_spec.rb
|
327
|
+
- spec/models/create_token_dto_spec.rb
|
314
328
|
- spec/models/data_series_filter_spec.rb
|
315
329
|
- spec/models/data_series_request_spec.rb
|
316
330
|
- spec/models/error_spec.rb
|
@@ -322,7 +336,11 @@ files:
|
|
322
336
|
- spec/models/report_info_spec.rb
|
323
337
|
- spec/models/saved_query_spec.rb
|
324
338
|
- spec/models/service_integration_spec.rb
|
339
|
+
- spec/models/subscription_dashboard_dto_spec.rb
|
340
|
+
- spec/models/subscription_dto_spec.rb
|
325
341
|
- spec/models/update_app_info_spec.rb
|
342
|
+
- spec/models/update_subscription_dto_spec.rb
|
343
|
+
- spec/models/update_token_dto_spec.rb
|
326
344
|
- spec/models/user_info_spec.rb
|
327
345
|
- spec/models/user_permissions_spec.rb
|
328
346
|
- spec/models/user_role_spec.rb
|
@@ -352,45 +370,51 @@ specification_version: 4
|
|
352
370
|
summary: A Sematext Cloud API client, for interaction with Sematext Cloud solution
|
353
371
|
monitoring, alerting and log shipping.
|
354
372
|
test_files:
|
355
|
-
- spec/api/
|
373
|
+
- spec/api/reset_password_api_spec.rb
|
356
374
|
- spec/api/saved_queries_api_spec.rb
|
357
|
-
- spec/api/
|
375
|
+
- spec/api/alert_notifications_api_spec.rb
|
376
|
+
- spec/api/monitoring_app_api_spec.rb
|
358
377
|
- spec/api/tag_api_controller_api_spec.rb
|
359
|
-
- spec/api/billing_api_spec.rb
|
360
|
-
- spec/api/subscriptions_api_spec.rb
|
361
378
|
- spec/api/logs_app_api_spec.rb
|
362
|
-
- spec/api/
|
363
|
-
- spec/api/
|
364
|
-
- spec/api/reset_password_api_spec.rb
|
379
|
+
- spec/api/aws_settings_controller_api_spec.rb
|
380
|
+
- spec/api/subscriptions_api_spec.rb
|
365
381
|
- spec/api/alerts_api_spec.rb
|
366
|
-
- spec/api/
|
382
|
+
- spec/api/metrics_api_spec.rb
|
383
|
+
- spec/api/apps_api_spec.rb
|
384
|
+
- spec/api/billing_api_spec.rb
|
385
|
+
- spec/api/tokens_api_controller_api_spec.rb
|
367
386
|
- spec/api_client_spec.rb
|
368
387
|
- spec/configuration_spec.rb
|
388
|
+
- spec/models/user_role_spec.rb
|
389
|
+
- spec/models/report_info_spec.rb
|
390
|
+
- spec/models/alert_notification_request_spec.rb
|
391
|
+
- spec/models/data_series_filter_spec.rb
|
392
|
+
- spec/models/subscription_dto_spec.rb
|
393
|
+
- spec/models/user_permissions_spec.rb
|
394
|
+
- spec/models/plan_spec.rb
|
369
395
|
- spec/models/app_description_spec.rb
|
370
|
-
- spec/models/
|
371
|
-
- spec/models/
|
372
|
-
- spec/models/notification_integration_spec.rb
|
396
|
+
- spec/models/alert_rule_schedule_time_range_dto_spec.rb
|
397
|
+
- spec/models/service_integration_spec.rb
|
373
398
|
- spec/models/alert_rule_schedule_weekday_dto_spec.rb
|
374
|
-
- spec/models/
|
399
|
+
- spec/models/data_series_request_spec.rb
|
400
|
+
- spec/models/create_token_dto_spec.rb
|
401
|
+
- spec/models/billing_info_spec.rb
|
402
|
+
- spec/models/alert_rule_spec.rb
|
375
403
|
- spec/models/filter_value_spec.rb
|
376
|
-
- spec/models/
|
404
|
+
- spec/models/app_spec.rb
|
377
405
|
- spec/models/user_info_spec.rb
|
378
|
-
- spec/models/
|
379
|
-
- spec/models/
|
380
|
-
- spec/models/data_series_filter_spec.rb
|
406
|
+
- spec/models/invitation_spec.rb
|
407
|
+
- spec/models/generic_api_response_spec.rb
|
381
408
|
- spec/models/error_spec.rb
|
382
|
-
- spec/models/
|
383
|
-
- spec/models/
|
384
|
-
- spec/models/alert_rule_schedule_time_range_dto_spec.rb
|
385
|
-
- spec/models/data_series_request_spec.rb
|
409
|
+
- spec/models/subscription_dashboard_dto_spec.rb
|
410
|
+
- spec/models/notification_integration_spec.rb
|
386
411
|
- spec/models/create_app_info_spec.rb
|
387
|
-
- spec/models/
|
388
|
-
- spec/models/
|
412
|
+
- spec/models/cloud_watch_settings_spec.rb
|
413
|
+
- spec/models/saved_query_spec.rb
|
414
|
+
- spec/models/update_token_dto_spec.rb
|
389
415
|
- spec/models/basic_organization_dto_spec.rb
|
390
|
-
- spec/models/
|
416
|
+
- spec/models/update_app_info_spec.rb
|
417
|
+
- spec/models/update_subscription_dto_spec.rb
|
391
418
|
- spec/models/basic_auth_method_dto_spec.rb
|
392
|
-
- spec/models/
|
393
|
-
- spec/models/generic_api_response_spec.rb
|
394
|
-
- spec/models/report_info_spec.rb
|
395
|
-
- spec/models/app_spec.rb
|
419
|
+
- spec/models/app_metadata_spec.rb
|
396
420
|
- spec/spec_helper.rb
|