SematextCloud 0.2.0 → 0.3.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.
Files changed (285) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -1
  3. data/README.md +43 -54
  4. data/SematextCloud.gemspec +0 -6
  5. data/docs/AlertNotification.md +12 -0
  6. data/docs/AlertNotificationRequest.md +1 -1
  7. data/docs/AlertNotificationsApi.md +33 -37
  8. data/docs/AlertRule.md +1 -1
  9. data/docs/AlertRuleResponse.md +9 -0
  10. data/docs/AlertRuleResponseEntry.md +6 -0
  11. data/docs/AlertRuleScheduleTimeRangeDto.md +1 -1
  12. data/docs/AlertRuleScheduleWeekdayDto.md +1 -1
  13. data/docs/AlertRulesResponse.md +9 -0
  14. data/docs/AlertRulesResponseEntry.md +6 -0
  15. data/docs/AlertsApi.md +41 -47
  16. data/docs/App.md +2 -1
  17. data/docs/AppDescription.md +1 -1
  18. data/docs/AppMetadata.md +1 -1
  19. data/docs/AppResponse.md +9 -0
  20. data/docs/AppResponseEntry.md +6 -0
  21. data/docs/AppTypesResponse.md +9 -0
  22. data/docs/AppTypesResponseEntry.md +6 -0
  23. data/docs/AppsApi.md +126 -81
  24. data/docs/AppsResponse.md +9 -0
  25. data/docs/AppsResponseEntry.md +6 -0
  26. data/docs/AwsSettingsControllerApi.md +16 -19
  27. data/docs/BasicAuthMethodDto.md +1 -1
  28. data/docs/BasicOrganizationDto.md +1 -1
  29. data/docs/BillingApi.md +35 -42
  30. data/docs/BillingInfo.md +1 -1
  31. data/docs/ChargesDetailsResponseDto.md +12 -0
  32. data/docs/CloudWatchSettings.md +1 -1
  33. data/docs/CloudWatchSettingsResponse.md +9 -0
  34. data/docs/CloudWatchSettingsResponseEntry.md +6 -0
  35. data/docs/CreateAppInfo.md +8 -8
  36. data/docs/CreateTokenDto.md +1 -0
  37. data/docs/DailyDto.md +9 -0
  38. data/docs/DayUsageData.md +26 -0
  39. data/docs/Dimension.md +7 -0
  40. data/docs/Error.md +1 -1
  41. data/docs/EventDto.md +8 -0
  42. data/docs/FilterValue.md +1 -1
  43. data/docs/GenericApiResponse.md +7 -7
  44. data/docs/GenericMapBasedApiResponse.md +9 -0
  45. data/docs/Invitation.md +2 -2
  46. data/docs/Invoice.md +11 -0
  47. data/docs/InvoiceResponse.md +9 -0
  48. data/docs/InvoiceResponseEntry.md +6 -0
  49. data/docs/LimitChangeEventDTO.md +8 -0
  50. data/docs/LogsAppApi.md +13 -15
  51. data/docs/LogsUsageApiControllerApi.md +60 -0
  52. data/docs/MailReportResponse.md +9 -0
  53. data/docs/MailReportResponseResponseEntry.md +6 -0
  54. data/docs/MinPeriodFeePeriod.md +16 -0
  55. data/docs/MonitoringAppApi.md +13 -15
  56. data/docs/NotificationIntegration.md +1 -1
  57. data/docs/NotificationsResponse.md +9 -0
  58. data/docs/NotificationsResponseEntry.md +8 -0
  59. data/docs/Plan.md +16 -16
  60. data/docs/PlansResponse.md +9 -0
  61. data/docs/PlansResponseEntry.md +6 -0
  62. data/docs/ReportInfo.md +1 -1
  63. data/docs/ResetPasswordApi.md +13 -15
  64. data/docs/ServiceIntegration.md +1 -1
  65. data/docs/Subscription.md +20 -0
  66. data/docs/SubscriptionResponse.md +9 -0
  67. data/docs/SubscriptionResponseEntry.md +6 -0
  68. data/docs/SubscriptionsApi.md +93 -110
  69. data/docs/SubscriptionsResponse.md +9 -0
  70. data/docs/SubscriptionsResponseEntry.md +6 -0
  71. data/docs/TagApiControllerApi.md +30 -39
  72. data/docs/TagNamesResponse.md +6 -0
  73. data/docs/TokenDto.md +12 -0
  74. data/docs/TokenResponse.md +9 -0
  75. data/docs/TokenResponseEntry.md +6 -0
  76. data/docs/TokensApiControllerApi.md +36 -47
  77. data/docs/TokensResponse.md +9 -0
  78. data/docs/TokensResponseEntry.md +6 -0
  79. data/docs/UpdateAppInfo.md +2 -2
  80. data/docs/UpdatePlanResponse.md +9 -0
  81. data/docs/UpdatePlanResponseDto.md +7 -0
  82. data/docs/UpdatePlanResponseEntry.md +6 -0
  83. data/docs/UpdateTokenDto.md +1 -0
  84. data/docs/UsageDto.md +16 -0
  85. data/docs/UsageMultiResponse.md +9 -0
  86. data/docs/UsageMultiResponseEntry.md +6 -0
  87. data/docs/UsageResponse.md +9 -0
  88. data/docs/UsageResponseEntry.md +6 -0
  89. data/docs/UserInfo.md +1 -1
  90. data/docs/UserPermissions.md +1 -1
  91. data/docs/UserRole.md +1 -1
  92. data/lib/SematextCloud/api/tokens_api_controller_api.rb +30 -30
  93. data/lib/SematextCloud/models/create_token_dto.rb +10 -1
  94. data/lib/SematextCloud/models/update_token_dto.rb +13 -4
  95. data/lib/SematextCloud/version.rb +1 -1
  96. data/lib/stcloud.rb +128 -0
  97. data/lib/stcloud/api/alert_notifications_api.rb +142 -0
  98. data/lib/stcloud/api/alerts_api.rb +292 -0
  99. data/lib/stcloud/api/apps_api.rb +452 -0
  100. data/lib/stcloud/api/aws_settings_controller_api.rb +84 -0
  101. data/lib/stcloud/api/billing_api.rb +202 -0
  102. data/lib/stcloud/api/logs_app_api.rb +76 -0
  103. data/lib/stcloud/api/logs_usage_api_controller_api.rb +86 -0
  104. data/lib/stcloud/api/monitoring_app_api.rb +76 -0
  105. data/lib/stcloud/api/reset_password_api.rb +76 -0
  106. data/lib/stcloud/api/subscriptions_api.rb +610 -0
  107. data/lib/stcloud/api/tag_api_controller_api.rb +250 -0
  108. data/lib/stcloud/api/tokens_api_controller_api.rb +324 -0
  109. data/lib/stcloud/api_client.rb +388 -0
  110. data/lib/stcloud/api_error.rb +57 -0
  111. data/lib/stcloud/configuration.rb +205 -0
  112. data/lib/stcloud/models/alert_notification.rb +260 -0
  113. data/lib/stcloud/models/alert_notification_request.rb +235 -0
  114. data/lib/stcloud/models/alert_rule.rb +675 -0
  115. data/lib/stcloud/models/alert_rule_response.rb +235 -0
  116. data/lib/stcloud/models/alert_rule_response_entry.rb +206 -0
  117. data/lib/stcloud/models/alert_rule_schedule_time_range_dto.rb +215 -0
  118. data/lib/stcloud/models/alert_rule_schedule_weekday_dto.rb +244 -0
  119. data/lib/stcloud/models/alert_rules_response.rb +235 -0
  120. data/lib/stcloud/models/alert_rules_response_entry.rb +208 -0
  121. data/lib/stcloud/models/app.rb +489 -0
  122. data/lib/stcloud/models/app_description.rb +206 -0
  123. data/lib/stcloud/models/app_metadata.rb +291 -0
  124. data/lib/stcloud/models/app_response.rb +235 -0
  125. data/lib/stcloud/models/app_response_entry.rb +206 -0
  126. data/lib/stcloud/models/app_types_response.rb +235 -0
  127. data/lib/stcloud/models/app_types_response_entry.rb +208 -0
  128. data/lib/stcloud/models/apps_response.rb +235 -0
  129. data/lib/stcloud/models/apps_response_entry.rb +208 -0
  130. data/lib/stcloud/models/basic_auth_method_dto.rb +249 -0
  131. data/lib/stcloud/models/basic_organization_dto.rb +269 -0
  132. data/lib/stcloud/models/billing_info.rb +224 -0
  133. data/lib/stcloud/models/charges_details_response_dto.rb +298 -0
  134. data/lib/stcloud/models/cloud_watch_settings.rb +279 -0
  135. data/lib/stcloud/models/cloud_watch_settings_response.rb +235 -0
  136. data/lib/stcloud/models/cloud_watch_settings_response_entry.rb +206 -0
  137. data/lib/stcloud/models/create_app_info.rb +242 -0
  138. data/lib/stcloud/models/create_token_dto.rb +224 -0
  139. data/lib/stcloud/models/daily_dto.rb +233 -0
  140. data/lib/stcloud/models/day_usage_data.rb +411 -0
  141. data/lib/stcloud/models/dimension.rb +227 -0
  142. data/lib/stcloud/models/error.rb +215 -0
  143. data/lib/stcloud/models/event_dto.rb +258 -0
  144. data/lib/stcloud/models/filter_value.rb +253 -0
  145. data/lib/stcloud/models/generic_api_response.rb +236 -0
  146. data/lib/stcloud/models/generic_map_based_api_response.rb +236 -0
  147. data/lib/stcloud/models/invitation.rb +348 -0
  148. data/lib/stcloud/models/invoice.rb +253 -0
  149. data/lib/stcloud/models/invoice_response.rb +235 -0
  150. data/lib/stcloud/models/invoice_response_entry.rb +206 -0
  151. data/lib/stcloud/models/limit_change_event_dto.rb +224 -0
  152. data/lib/stcloud/models/mail_report_response.rb +235 -0
  153. data/lib/stcloud/models/mail_report_response_response_entry.rb +206 -0
  154. data/lib/stcloud/models/min_period_fee_period.rb +296 -0
  155. data/lib/stcloud/models/notification_integration.rb +347 -0
  156. data/lib/stcloud/models/notifications_response.rb +235 -0
  157. data/lib/stcloud/models/notifications_response_entry.rb +226 -0
  158. data/lib/stcloud/models/plan.rb +360 -0
  159. data/lib/stcloud/models/plans_response.rb +235 -0
  160. data/lib/stcloud/models/plans_response_entry.rb +208 -0
  161. data/lib/stcloud/models/report_info.rb +270 -0
  162. data/lib/stcloud/models/service_integration.rb +305 -0
  163. data/lib/stcloud/models/subscription.rb +378 -0
  164. data/lib/stcloud/models/subscription_dashboard_dto.rb +342 -0
  165. data/lib/stcloud/models/subscription_dto.rb +351 -0
  166. data/lib/stcloud/models/subscription_response.rb +235 -0
  167. data/lib/stcloud/models/subscription_response_entry.rb +206 -0
  168. data/lib/stcloud/models/subscriptions_response.rb +235 -0
  169. data/lib/stcloud/models/subscriptions_response_entry.rb +208 -0
  170. data/lib/stcloud/models/tag_names_response.rb +213 -0
  171. data/lib/stcloud/models/token_dto.rb +260 -0
  172. data/lib/stcloud/models/token_response.rb +235 -0
  173. data/lib/stcloud/models/token_response_entry.rb +206 -0
  174. data/lib/stcloud/models/tokens_response.rb +235 -0
  175. data/lib/stcloud/models/tokens_response_entry.rb +208 -0
  176. data/lib/stcloud/models/update_app_info.rb +312 -0
  177. data/lib/stcloud/models/update_plan_response.rb +235 -0
  178. data/lib/stcloud/models/update_plan_response_dto.rb +217 -0
  179. data/lib/stcloud/models/update_plan_response_entry.rb +206 -0
  180. data/lib/stcloud/models/update_subscription_dto.rb +206 -0
  181. data/lib/stcloud/models/update_token_dto.rb +215 -0
  182. data/lib/stcloud/models/usage_dto.rb +302 -0
  183. data/lib/stcloud/models/usage_multi_response.rb +235 -0
  184. data/lib/stcloud/models/usage_multi_response_entry.rb +206 -0
  185. data/lib/stcloud/models/usage_response.rb +235 -0
  186. data/lib/stcloud/models/usage_response_entry.rb +206 -0
  187. data/lib/stcloud/models/user_info.rb +206 -0
  188. data/lib/stcloud/models/user_permissions.rb +224 -0
  189. data/lib/stcloud/models/user_role.rb +270 -0
  190. data/lib/stcloud/version.rb +14 -0
  191. data/spec/api/alert_notifications_api_spec.rb +12 -13
  192. data/spec/api/alerts_api_spec.rb +10 -11
  193. data/spec/api/apps_api_spec.rb +31 -21
  194. data/spec/api/aws_settings_controller_api_spec.rb +9 -10
  195. data/spec/api/billing_api_spec.rb +12 -13
  196. data/spec/api/logs_app_api_spec.rb +6 -7
  197. data/spec/api/logs_usage_api_controller_api_spec.rb +47 -0
  198. data/spec/api/monitoring_app_api_spec.rb +6 -7
  199. data/spec/api/reset_password_api_spec.rb +6 -7
  200. data/spec/api/subscriptions_api_spec.rb +106 -14
  201. data/spec/api/tag_api_controller_api_spec.rb +11 -12
  202. data/spec/api/tokens_api_controller_api_spec.rb +15 -16
  203. data/spec/api_client_spec.rb +30 -31
  204. data/spec/base_object_spec.rb +109 -0
  205. data/spec/configuration_spec.rb +7 -8
  206. data/spec/models/alert_notification_request_spec.rb +1 -2
  207. data/spec/models/alert_notification_spec.rb +76 -0
  208. data/spec/models/alert_rule_response_entry_spec.rb +40 -0
  209. data/spec/models/alert_rule_response_spec.rb +58 -0
  210. data/spec/models/alert_rule_schedule_time_range_dto_spec.rb +1 -2
  211. data/spec/models/alert_rule_schedule_weekday_dto_spec.rb +1 -2
  212. data/spec/models/alert_rule_spec.rb +1 -2
  213. data/spec/models/alert_rules_response_entry_spec.rb +40 -0
  214. data/spec/models/alert_rules_response_spec.rb +58 -0
  215. data/spec/models/app_description_spec.rb +1 -2
  216. data/spec/models/app_metadata_spec.rb +1 -2
  217. data/spec/models/app_response_entry_spec.rb +40 -0
  218. data/spec/models/app_response_spec.rb +58 -0
  219. data/spec/models/app_spec.rb +31 -2
  220. data/spec/models/app_types_response_entry_spec.rb +40 -0
  221. data/spec/models/app_types_response_spec.rb +58 -0
  222. data/spec/models/apps_response_entry_spec.rb +40 -0
  223. data/spec/models/apps_response_spec.rb +58 -0
  224. data/spec/models/basic_auth_method_dto_spec.rb +1 -2
  225. data/spec/models/basic_organization_dto_spec.rb +1 -2
  226. data/spec/models/billing_info_spec.rb +1 -2
  227. data/spec/models/charges_details_response_dto_spec.rb +80 -0
  228. data/spec/models/cloud_watch_settings_response_entry_spec.rb +40 -0
  229. data/spec/models/cloud_watch_settings_response_spec.rb +58 -0
  230. data/spec/models/cloud_watch_settings_spec.rb +1 -2
  231. data/spec/models/create_app_info_spec.rb +1 -2
  232. data/spec/models/create_token_dto_spec.rb +7 -2
  233. data/spec/models/daily_dto_spec.rb +58 -0
  234. data/spec/models/day_usage_data_spec.rb +158 -0
  235. data/spec/models/dimension_spec.rb +46 -0
  236. data/spec/models/error_spec.rb +1 -2
  237. data/spec/models/event_dto_spec.rb +56 -0
  238. data/spec/models/filter_value_spec.rb +1 -2
  239. data/spec/models/generic_api_response_spec.rb +1 -2
  240. data/spec/models/generic_map_based_api_response_spec.rb +58 -0
  241. data/spec/models/invitation_spec.rb +1 -2
  242. data/spec/models/invoice_response_entry_spec.rb +40 -0
  243. data/spec/models/invoice_response_spec.rb +58 -0
  244. data/spec/models/invoice_spec.rb +70 -0
  245. data/spec/models/limit_change_event_dto_spec.rb +52 -0
  246. data/spec/models/mail_report_response_response_entry_spec.rb +40 -0
  247. data/spec/models/mail_report_response_spec.rb +58 -0
  248. data/spec/models/min_period_fee_period_spec.rb +100 -0
  249. data/spec/models/notification_integration_spec.rb +1 -2
  250. data/spec/models/notifications_response_entry_spec.rb +52 -0
  251. data/spec/models/notifications_response_spec.rb +58 -0
  252. data/spec/models/plan_spec.rb +2 -3
  253. data/spec/models/plans_response_entry_spec.rb +40 -0
  254. data/spec/models/plans_response_spec.rb +58 -0
  255. data/spec/models/report_info_spec.rb +1 -2
  256. data/spec/models/service_integration_spec.rb +1 -2
  257. data/spec/models/subscription_dashboard_dto_spec.rb +1 -2
  258. data/spec/models/subscription_dto_spec.rb +1 -2
  259. data/spec/models/subscription_response_entry_spec.rb +40 -0
  260. data/spec/models/subscription_response_spec.rb +58 -0
  261. data/spec/models/subscription_spec.rb +132 -0
  262. data/spec/models/subscriptions_response_entry_spec.rb +40 -0
  263. data/spec/models/subscriptions_response_spec.rb +58 -0
  264. data/spec/models/tag_names_response_spec.rb +40 -0
  265. data/spec/models/token_dto_spec.rb +76 -0
  266. data/spec/models/token_response_entry_spec.rb +40 -0
  267. data/spec/models/token_response_spec.rb +58 -0
  268. data/spec/models/tokens_response_entry_spec.rb +40 -0
  269. data/spec/models/tokens_response_spec.rb +58 -0
  270. data/spec/models/update_app_info_spec.rb +1 -2
  271. data/spec/models/update_plan_response_dto_spec.rb +46 -0
  272. data/spec/models/update_plan_response_entry_spec.rb +40 -0
  273. data/spec/models/update_plan_response_spec.rb +58 -0
  274. data/spec/models/update_subscription_dto_spec.rb +1 -2
  275. data/spec/models/update_token_dto_spec.rb +7 -2
  276. data/spec/models/usage_dto_spec.rb +100 -0
  277. data/spec/models/usage_multi_response_entry_spec.rb +40 -0
  278. data/spec/models/usage_multi_response_spec.rb +58 -0
  279. data/spec/models/usage_response_entry_spec.rb +40 -0
  280. data/spec/models/usage_response_spec.rb +58 -0
  281. data/spec/models/user_info_spec.rb +1 -2
  282. data/spec/models/user_permissions_spec.rb +1 -2
  283. data/spec/models/user_role_spec.rb +1 -2
  284. data/spec/spec_helper.rb +2 -3
  285. metadata +281 -154
@@ -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: 3.0.25
10
+ =end
11
+
12
+ require 'spec_helper'
13
+ require 'json'
14
+
15
+ # Unit tests for stcloud::LogsUsageApiControllerApi
16
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
17
+ # Please update as you see appropriate
18
+ describe 'LogsUsageApiControllerApi' do
19
+ before do
20
+ # run before each test
21
+ @instance = stcloud::LogsUsageApiControllerApi.new
22
+ end
23
+
24
+ after do
25
+ # run after each test
26
+ end
27
+
28
+ describe 'test an instance of LogsUsageApiControllerApi' do
29
+ it 'should create an instance of LogsUsageApiControllerApi' do
30
+ expect(@instance).to be_instance_of(stcloud::LogsUsageApiControllerApi)
31
+ end
32
+ end
33
+
34
+ # unit tests for get_for_range_using_get
35
+ # getForRange
36
+ # @param app_id appId
37
+ # @param from from
38
+ # @param to to
39
+ # @param [Hash] opts the optional parameters
40
+ # @return [UsageResponse]
41
+ describe 'get_for_range_using_get test' 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
@@ -6,20 +6,19 @@
6
6
  OpenAPI spec version: v3
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.4.12
10
-
9
+ Swagger Codegen version: 3.0.25
11
10
  =end
12
11
 
13
12
  require 'spec_helper'
14
13
  require 'json'
15
14
 
16
- # Unit tests for SematextCloud::MonitoringAppApi
15
+ # Unit tests for stcloud::MonitoringAppApi
17
16
  # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
17
  # Please update as you see appropriate
19
18
  describe 'MonitoringAppApi' do
20
19
  before do
21
20
  # run before each test
22
- @instance = SematextCloud::MonitoringAppApi.new
21
+ @instance = stcloud::MonitoringAppApi.new
23
22
  end
24
23
 
25
24
  after do
@@ -28,15 +27,15 @@ describe 'MonitoringAppApi' do
28
27
 
29
28
  describe 'test an instance of MonitoringAppApi' do
30
29
  it 'should create an instance of MonitoringAppApi' do
31
- expect(@instance).to be_instance_of(SematextCloud::MonitoringAppApi)
30
+ expect(@instance).to be_instance_of(stcloud::MonitoringAppApi)
32
31
  end
33
32
  end
34
33
 
35
34
  # unit tests for create_spm_application1
36
35
  # Create Monitoring App
37
- # @param application_details Details of the application to be created
36
+ # @param body Details of the application to be created
38
37
  # @param [Hash] opts the optional parameters
39
- # @return [GenericApiResponse]
38
+ # @return [AppsResponse]
40
39
  describe 'create_spm_application1 test' do
41
40
  it 'should work' do
42
41
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -6,20 +6,19 @@
6
6
  OpenAPI spec version: v3
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.4.12
10
-
9
+ Swagger Codegen version: 3.0.25
11
10
  =end
12
11
 
13
12
  require 'spec_helper'
14
13
  require 'json'
15
14
 
16
- # Unit tests for SematextCloud::ResetPasswordApi
15
+ # Unit tests for stcloud::ResetPasswordApi
17
16
  # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
17
  # Please update as you see appropriate
19
18
  describe 'ResetPasswordApi' do
20
19
  before do
21
20
  # run before each test
22
- @instance = SematextCloud::ResetPasswordApi.new
21
+ @instance = stcloud::ResetPasswordApi.new
23
22
  end
24
23
 
25
24
  after do
@@ -28,15 +27,15 @@ describe 'ResetPasswordApi' do
28
27
 
29
28
  describe 'test an instance of ResetPasswordApi' do
30
29
  it 'should create an instance of ResetPasswordApi' do
31
- expect(@instance).to be_instance_of(SematextCloud::ResetPasswordApi)
30
+ expect(@instance).to be_instance_of(stcloud::ResetPasswordApi)
32
31
  end
33
32
  end
34
33
 
35
34
  # unit tests for reset_password_using_post
36
35
  # Reset Password
37
- # @param dto dto
36
+ # @param body dto
38
37
  # @param [Hash] opts the optional parameters
39
- # @return [GenericApiResponse]
38
+ # @return [GenericMapBasedApiResponse]
40
39
  describe 'reset_password_using_post test' do
41
40
  it 'should work' do
42
41
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -6,20 +6,19 @@
6
6
  OpenAPI spec version: v3
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.4.12
10
-
9
+ Swagger Codegen version: 3.0.25
11
10
  =end
12
11
 
13
12
  require 'spec_helper'
14
13
  require 'json'
15
14
 
16
- # Unit tests for SematextCloud::SubscriptionsApi
15
+ # Unit tests for stcloud::SubscriptionsApi
17
16
  # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
17
  # Please update as you see appropriate
19
18
  describe 'SubscriptionsApi' do
20
19
  before do
21
20
  # run before each test
22
- @instance = SematextCloud::SubscriptionsApi.new
21
+ @instance = stcloud::SubscriptionsApi.new
23
22
  end
24
23
 
25
24
  after do
@@ -28,28 +27,121 @@ describe 'SubscriptionsApi' do
28
27
 
29
28
  describe 'test an instance of SubscriptionsApi' do
30
29
  it 'should create an instance of SubscriptionsApi' do
31
- expect(@instance).to be_instance_of(SematextCloud::SubscriptionsApi)
30
+ expect(@instance).to be_instance_of(stcloud::SubscriptionsApi)
31
+ end
32
+ end
33
+
34
+ # unit tests for create_for_app_using_post1
35
+ # Create App subscription
36
+ # @param body subscription
37
+ # @param app_id appId
38
+ # @param [Hash] opts the optional parameters
39
+ # @return [SubscriptionResponse]
40
+ describe 'create_for_app_using_post1 test' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ # unit tests for create_for_dash_using_post1
47
+ # Create dashboard subscription
48
+ # @param body subscription
49
+ # @param dash_id dashId
50
+ # @param [Hash] opts the optional parameters
51
+ # @return [SubscriptionResponse]
52
+ describe 'create_for_dash_using_post1 test' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ # unit tests for delete_using_delete3
59
+ # Delete subscription
60
+ # @param updateable_subscription_id updateableSubscriptionId
61
+ # @param [Hash] opts the optional parameters
62
+ # @return [GenericMapBasedApiResponse]
63
+ describe 'delete_using_delete3 test' do
64
+ it 'should work' do
65
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
32
66
  end
33
67
  end
34
68
 
35
- # unit tests for list_using_get1
36
- # Get subscriptions for an app
69
+ # unit tests for list_using_get3
70
+ # Get subscriptions for an App
37
71
  # @param app_id appId
38
72
  # @param [Hash] opts the optional parameters
39
- # @return [GenericApiResponse]
40
- describe 'list_using_get1 test' do
73
+ # @return [SubscriptionsResponse]
74
+ describe 'list_using_get3 test' do
75
+ it 'should work' do
76
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
77
+ end
78
+ end
79
+
80
+ # unit tests for list_using_get5
81
+ # Get current account's subscriptions
82
+ # @param [Hash] opts the optional parameters
83
+ # @return [SubscriptionsResponse]
84
+ describe 'list_using_get5 test' do
41
85
  it 'should work' do
42
86
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
87
  end
44
88
  end
45
89
 
46
- # unit tests for send_report_using_post
47
- # Trigger emailing of report for an app
90
+ # unit tests for send_app_report_using_post
91
+ # Email an App report
92
+ # @param body emailDto
48
93
  # @param app_id appId
49
- # @param email_dto emailDto
50
94
  # @param [Hash] opts the optional parameters
51
- # @return [GenericApiResponse]
52
- describe 'send_report_using_post test' do
95
+ # @return [MailReportResponse]
96
+ describe 'send_app_report_using_post test' do
97
+ it 'should work' do
98
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
99
+ end
100
+ end
101
+
102
+ # unit tests for send_dash_report_using_post
103
+ # Email a dashboard report
104
+ # @param body emailDto
105
+ # @param dash_id dashId
106
+ # @param [Hash] opts the optional parameters
107
+ # @return [MailReportResponse]
108
+ describe 'send_dash_report_using_post test' do
109
+ it 'should work' do
110
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
111
+ end
112
+ end
113
+
114
+ # unit tests for toggle_enabled_using_put1
115
+ # Toggle subscription status
116
+ # @param body dto
117
+ # @param updateable_subscription_id updateableSubscriptionId
118
+ # @param [Hash] opts the optional parameters
119
+ # @return [SubscriptionResponse]
120
+ describe 'toggle_enabled_using_put1 test' do
121
+ it 'should work' do
122
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
123
+ end
124
+ end
125
+
126
+ # unit tests for update_for_app_using_put1
127
+ # Update App subscription
128
+ # @param body subscription
129
+ # @param app_id appId
130
+ # @param [Hash] opts the optional parameters
131
+ # @return [SubscriptionResponse]
132
+ describe 'update_for_app_using_put1 test' do
133
+ it 'should work' do
134
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
135
+ end
136
+ end
137
+
138
+ # unit tests for update_for_dash_using_put1
139
+ # Update dashboard subscription
140
+ # @param body subscription
141
+ # @param dash_id dashId
142
+ # @param [Hash] opts the optional parameters
143
+ # @return [SubscriptionResponse]
144
+ describe 'update_for_dash_using_put1 test' do
53
145
  it 'should work' do
54
146
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
147
  end
@@ -6,20 +6,19 @@
6
6
  OpenAPI spec version: v3
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.4.12
10
-
9
+ Swagger Codegen version: 3.0.25
11
10
  =end
12
11
 
13
12
  require 'spec_helper'
14
13
  require 'json'
15
14
 
16
- # Unit tests for SematextCloud::TagApiControllerApi
15
+ # Unit tests for stcloud::TagApiControllerApi
17
16
  # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
18
17
  # Please update as you see appropriate
19
18
  describe 'TagApiControllerApi' do
20
19
  before do
21
20
  # run before each test
22
- @instance = SematextCloud::TagApiControllerApi.new
21
+ @instance = stcloud::TagApiControllerApi.new
23
22
  end
24
23
 
25
24
  after do
@@ -28,7 +27,7 @@ describe 'TagApiControllerApi' do
28
27
 
29
28
  describe 'test an instance of TagApiControllerApi' do
30
29
  it 'should create an instance of TagApiControllerApi' do
31
- expect(@instance).to be_instance_of(SematextCloud::TagApiControllerApi)
30
+ expect(@instance).to be_instance_of(stcloud::TagApiControllerApi)
32
31
  end
33
32
  end
34
33
 
@@ -42,14 +41,14 @@ describe 'TagApiControllerApi' do
42
41
  # @option opts [BOOLEAN] :logs logs
43
42
  # @option opts [BOOLEAN] :events events
44
43
  # @option opts [BOOLEAN] :rum rum
45
- # @return [Object]
44
+ # @return [TagNamesResponse]
46
45
  describe 'get_tag_names_using_get test' do
47
46
  it 'should work' do
48
47
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
48
  end
50
49
  end
51
50
 
52
- # unit tests for get_using_get1
51
+ # unit tests for get_using_get2
53
52
  # Gets values for specified tags for the given application identifiers appearing in the given time frame.
54
53
  # @param app_ids appIds
55
54
  # @param tag tag
@@ -60,14 +59,14 @@ describe 'TagApiControllerApi' do
60
59
  # @option opts [BOOLEAN] :logs logs
61
60
  # @option opts [BOOLEAN] :events events
62
61
  # @option opts [BOOLEAN] :rum rum
63
- # @return [Object]
64
- describe 'get_using_get1 test' do
62
+ # @return [Hash<String, Dimension>]
63
+ describe 'get_using_get2 test' do
65
64
  it 'should work' do
66
65
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
66
  end
68
67
  end
69
68
 
70
- # unit tests for get_using_get2
69
+ # unit tests for get_using_get3
71
70
  # Gets values for specified tags for the given application identifiers appearing in the given time frame.
72
71
  # @param app_ids appIds
73
72
  # @param tag tag
@@ -78,8 +77,8 @@ describe 'TagApiControllerApi' do
78
77
  # @option opts [BOOLEAN] :logs logs
79
78
  # @option opts [BOOLEAN] :events events
80
79
  # @option opts [BOOLEAN] :rum rum
81
- # @return [Object]
82
- describe 'get_using_get2 test' do
80
+ # @return [Hash<String, Dimension>]
81
+ describe 'get_using_get3 test' do
83
82
  it 'should work' do
84
83
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
85
84
  end
@@ -6,8 +6,7 @@
6
6
  OpenAPI spec version: v3
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.4.12
10
-
9
+ Swagger Codegen version: 3.0.25
11
10
  =end
12
11
 
13
12
  require 'spec_helper'
@@ -32,25 +31,25 @@ describe 'TokensApiControllerApi' do
32
31
  end
33
32
  end
34
33
 
35
- # unit tests for create_app_token
34
+ # unit tests for create_app_token1
36
35
  # Create new app token
36
+ # @param body dto
37
37
  # @param app_id appId
38
- # @param dto dto
39
38
  # @param [Hash] opts the optional parameters
40
- # @return [GenericApiResponse]
41
- describe 'create_app_token test' do
39
+ # @return [TokenResponse]
40
+ describe 'create_app_token1 test' do
42
41
  it 'should work' do
43
42
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
43
  end
45
44
  end
46
45
 
47
- # unit tests for delete_app_token1
46
+ # unit tests for delete_app_token
48
47
  # Delete app token
49
48
  # @param app_id appId
50
49
  # @param token_id tokenId
51
50
  # @param [Hash] opts the optional parameters
52
- # @return [GenericApiResponse]
53
- describe 'delete_app_token1 test' do
51
+ # @return [GenericMapBasedApiResponse]
52
+ describe 'delete_app_token test' do
54
53
  it 'should work' do
55
54
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
55
  end
@@ -60,7 +59,7 @@ describe 'TokensApiControllerApi' do
60
59
  # Get app available tokens
61
60
  # @param app_id appId
62
61
  # @param [Hash] opts the optional parameters
63
- # @return [GenericApiResponse]
62
+ # @return [TokensResponse]
64
63
  describe 'get_app_tokens1 test' do
65
64
  it 'should work' do
66
65
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -72,21 +71,21 @@ describe 'TokensApiControllerApi' do
72
71
  # @param app_id appId
73
72
  # @param token_id tokenId
74
73
  # @param [Hash] opts the optional parameters
75
- # @return [GenericApiResponse]
74
+ # @return [TokenResponse]
76
75
  describe 'regenerate_app_token test' do
77
76
  it 'should work' do
78
77
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
78
  end
80
79
  end
81
80
 
82
- # unit tests for update_app_token1
83
- # Update app token (enable/disable)
81
+ # unit tests for update_app_token
82
+ # Update app token (enable/disable or name)
83
+ # @param body dto
84
84
  # @param app_id appId
85
85
  # @param token_id tokenId
86
- # @param dto dto
87
86
  # @param [Hash] opts the optional parameters
88
- # @return [GenericApiResponse]
89
- describe 'update_app_token1 test' do
87
+ # @return [TokenResponse]
88
+ describe 'update_app_token test' do
90
89
  it 'should work' do
91
90
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
91
  end
@@ -6,57 +6,56 @@
6
6
  OpenAPI spec version: v3
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 2.4.12
10
-
9
+ Swagger Codegen version: 3.0.25
11
10
  =end
12
11
 
13
12
  require 'spec_helper'
14
13
 
15
- describe SematextCloud::ApiClient do
14
+ describe stcloud::ApiClient do
16
15
  context 'initialization' do
17
16
  context 'URL stuff' do
18
17
  context 'host' do
19
18
  it 'removes http from host' do
20
- SematextCloud.configure { |c| c.host = 'http://example.com' }
21
- expect(SematextCloud::Configuration.default.host).to eq('example.com')
19
+ stcloud.configure { |c| c.host = 'http://example.com' }
20
+ expect(stcloud::Configuration.default.host).to eq('example.com')
22
21
  end
23
22
 
24
23
  it 'removes https from host' do
25
- SematextCloud.configure { |c| c.host = 'https://wookiee.com' }
26
- expect(SematextCloud::ApiClient.default.config.host).to eq('wookiee.com')
24
+ stcloud.configure { |c| c.host = 'https://wookiee.com' }
25
+ expect(stcloud::ApiClient.default.config.host).to eq('wookiee.com')
27
26
  end
28
27
 
29
28
  it 'removes trailing path from host' do
30
- SematextCloud.configure { |c| c.host = 'hobo.com/v4' }
31
- expect(SematextCloud::Configuration.default.host).to eq('hobo.com')
29
+ stcloud.configure { |c| c.host = 'hobo.com/v4' }
30
+ expect(stcloud::Configuration.default.host).to eq('hobo.com')
32
31
  end
33
32
  end
34
33
 
35
34
  context 'base_path' do
36
35
  it "prepends a slash to base_path" do
37
- SematextCloud.configure { |c| c.base_path = 'v4/dog' }
38
- expect(SematextCloud::Configuration.default.base_path).to eq('/v4/dog')
36
+ stcloud.configure { |c| c.base_path = 'v4/dog' }
37
+ expect(stcloud::Configuration.default.base_path).to eq('/v4/dog')
39
38
  end
40
39
 
41
40
  it "doesn't prepend a slash if one is already there" do
42
- SematextCloud.configure { |c| c.base_path = '/v4/dog' }
43
- expect(SematextCloud::Configuration.default.base_path).to eq('/v4/dog')
41
+ stcloud.configure { |c| c.base_path = '/v4/dog' }
42
+ expect(stcloud::Configuration.default.base_path).to eq('/v4/dog')
44
43
  end
45
44
 
46
45
  it "ends up as a blank string if nil" do
47
- SematextCloud.configure { |c| c.base_path = nil }
48
- expect(SematextCloud::Configuration.default.base_path).to eq('')
46
+ stcloud.configure { |c| c.base_path = nil }
47
+ expect(stcloud::Configuration.default.base_path).to eq('')
49
48
  end
50
49
  end
51
50
  end
52
51
  end
53
52
 
54
53
  describe 'params_encoding in #build_request' do
55
- let(:config) { SematextCloud::Configuration.new }
56
- let(:api_client) { SematextCloud::ApiClient.new(config) }
54
+ let(:config) { stcloud::Configuration.new }
55
+ let(:api_client) { stcloud::ApiClient.new(config) }
57
56
 
58
57
  it 'defaults to nil' do
59
- expect(SematextCloud::Configuration.default.params_encoding).to eq(nil)
58
+ expect(stcloud::Configuration.default.params_encoding).to eq(nil)
60
59
  expect(config.params_encoding).to eq(nil)
61
60
 
62
61
  request = api_client.build_request(:get, '/test')
@@ -71,11 +70,11 @@ describe SematextCloud::ApiClient do
71
70
  end
72
71
 
73
72
  describe 'timeout in #build_request' do
74
- let(:config) { SematextCloud::Configuration.new }
75
- let(:api_client) { SematextCloud::ApiClient.new(config) }
73
+ let(:config) { stcloud::Configuration.new }
74
+ let(:api_client) { stcloud::ApiClient.new(config) }
76
75
 
77
76
  it 'defaults to 0' do
78
- expect(SematextCloud::Configuration.default.timeout).to eq(0)
77
+ expect(stcloud::Configuration.default.timeout).to eq(0)
79
78
  expect(config.timeout).to eq(0)
80
79
 
81
80
  request = api_client.build_request(:get, '/test')
@@ -91,7 +90,7 @@ describe SematextCloud::ApiClient do
91
90
 
92
91
  describe '#deserialize' do
93
92
  it "handles Array<Integer>" do
94
- api_client = SematextCloud::ApiClient.new
93
+ api_client = stcloud::ApiClient.new
95
94
  headers = { 'Content-Type' => 'application/json' }
96
95
  response = double('response', headers: headers, body: '[12, 34]')
97
96
  data = api_client.deserialize(response, 'Array<Integer>')
@@ -100,7 +99,7 @@ describe SematextCloud::ApiClient do
100
99
  end
101
100
 
102
101
  it 'handles Array<Array<Integer>>' do
103
- api_client = SematextCloud::ApiClient.new
102
+ api_client = stcloud::ApiClient.new
104
103
  headers = { 'Content-Type' => 'application/json' }
105
104
  response = double('response', headers: headers, body: '[[12, 34], [56]]')
106
105
  data = api_client.deserialize(response, 'Array<Array<Integer>>')
@@ -109,7 +108,7 @@ describe SematextCloud::ApiClient do
109
108
  end
110
109
 
111
110
  it 'handles Hash<String, String>' do
112
- api_client = SematextCloud::ApiClient.new
111
+ api_client = stcloud::ApiClient.new
113
112
  headers = { 'Content-Type' => 'application/json' }
114
113
  response = double('response', headers: headers, body: '{"message": "Hello"}')
115
114
  data = api_client.deserialize(response, 'Hash<String, String>')
@@ -121,8 +120,8 @@ describe SematextCloud::ApiClient do
121
120
  describe "#object_to_hash" do
122
121
  it 'ignores nils and includes empty arrays' do
123
122
  # uncomment below to test object_to_hash for model
124
- # api_client = SematextCloud::ApiClient.new
125
- # _model = SematextCloud::ModelName.new
123
+ # api_client = stcloud::ApiClient.new
124
+ # _model = stcloud::ModelName.new
126
125
  # update the model attribute below
127
126
  # _model.id = 1
128
127
  # update the expected value (hash) below
@@ -133,7 +132,7 @@ describe SematextCloud::ApiClient do
133
132
 
134
133
  describe '#build_collection_param' do
135
134
  let(:param) { ['aa', 'bb', 'cc'] }
136
- let(:api_client) { SematextCloud::ApiClient.new }
135
+ let(:api_client) { stcloud::ApiClient.new }
137
136
 
138
137
  it 'works for csv' do
139
138
  expect(api_client.build_collection_param(param, :csv)).to eq('aa,bb,cc')
@@ -161,7 +160,7 @@ describe SematextCloud::ApiClient do
161
160
  end
162
161
 
163
162
  describe '#json_mime?' do
164
- let(:api_client) { SematextCloud::ApiClient.new }
163
+ let(:api_client) { stcloud::ApiClient.new }
165
164
 
166
165
  it 'works' do
167
166
  expect(api_client.json_mime?(nil)).to eq false
@@ -178,7 +177,7 @@ describe SematextCloud::ApiClient do
178
177
  end
179
178
 
180
179
  describe '#select_header_accept' do
181
- let(:api_client) { SematextCloud::ApiClient.new }
180
+ let(:api_client) { stcloud::ApiClient.new }
182
181
 
183
182
  it 'works' do
184
183
  expect(api_client.select_header_accept(nil)).to be_nil
@@ -194,7 +193,7 @@ describe SematextCloud::ApiClient do
194
193
  end
195
194
 
196
195
  describe '#select_header_content_type' do
197
- let(:api_client) { SematextCloud::ApiClient.new }
196
+ let(:api_client) { stcloud::ApiClient.new }
198
197
 
199
198
  it 'works' do
200
199
  expect(api_client.select_header_content_type(nil)).to eq('application/json')
@@ -209,7 +208,7 @@ describe SematextCloud::ApiClient do
209
208
  end
210
209
 
211
210
  describe '#sanitize_filename' do
212
- let(:api_client) { SematextCloud::ApiClient.new }
211
+ let(:api_client) { stcloud::ApiClient.new }
213
212
 
214
213
  it 'works' do
215
214
  expect(api_client.sanitize_filename('sun')).to eq('sun')