SematextCloud 0.1.5 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +3 -1
- data/Gemfile.lock +70 -0
- data/README.md +44 -55
- data/SematextCloud.gemspec +4 -11
- data/docs/AlertNotification.md +13 -0
- data/docs/AlertNotificationRequest.md +1 -0
- data/docs/AlertNotificationsApi.md +24 -26
- data/docs/AlertRule.md +1 -0
- data/docs/AlertRuleResponse.md +10 -0
- data/docs/AlertRuleResponseEntry.md +7 -0
- data/docs/AlertRuleScheduleTimeRangeDto.md +1 -0
- data/docs/AlertRuleScheduleWeekdayDto.md +1 -0
- data/docs/AlertRulesResponse.md +10 -0
- data/docs/AlertRulesResponseEntry.md +7 -0
- data/docs/AlertsApi.md +47 -51
- data/docs/App.md +2 -0
- data/docs/AppDescription.md +1 -0
- data/docs/AppMetadata.md +1 -0
- data/docs/AppResponse.md +10 -0
- data/docs/AppResponseEntry.md +7 -0
- data/docs/AppTypesResponse.md +10 -0
- data/docs/AppTypesResponseEntry.md +7 -0
- data/docs/AppsApi.md +120 -70
- data/docs/AppsResponse.md +10 -0
- data/docs/AppsResponseEntry.md +7 -0
- data/docs/AwsSettingsControllerApi.md +14 -15
- data/docs/BasicAuthMethodDto.md +1 -0
- data/docs/BasicOrganizationDto.md +1 -0
- data/docs/BillingApi.md +30 -35
- data/docs/BillingInfo.md +1 -0
- data/docs/ChargesDetailsResponseDto.md +13 -0
- data/docs/CloudWatchSettings.md +1 -0
- data/docs/CloudWatchSettingsResponse.md +10 -0
- data/docs/CloudWatchSettingsResponseEntry.md +7 -0
- data/docs/CreateAppInfo.md +8 -7
- data/docs/CreateTokenDto.md +3 -1
- data/docs/DailyDto.md +12 -0
- data/docs/DayUsageData.md +26 -0
- data/docs/Dimension.md +8 -0
- data/docs/Error.md +1 -0
- data/docs/EventDto.md +9 -0
- data/docs/FilterValue.md +1 -0
- data/docs/GenericApiResponse.md +7 -6
- data/docs/GenericMapBasedApiResponse.md +10 -0
- data/docs/Invitation.md +2 -1
- data/docs/Invoice.md +12 -0
- data/docs/InvoiceResponse.md +10 -0
- data/docs/InvoiceResponseEntry.md +7 -0
- data/docs/LimitChangeEventDTO.md +9 -0
- data/docs/LogsAppApi.md +12 -12
- data/docs/LogsUsageApiControllerApi.md +62 -0
- data/docs/MailReportResponse.md +10 -0
- data/docs/MailReportResponseResponseEntry.md +7 -0
- data/docs/MinPeriodFeePeriod.md +19 -0
- data/docs/MonitoringAppApi.md +16 -16
- data/docs/NotificationIntegration.md +1 -0
- data/docs/NotificationsResponse.md +10 -0
- data/docs/NotificationsResponseEntry.md +9 -0
- data/docs/Plan.md +16 -15
- data/docs/PlansResponse.md +10 -0
- data/docs/PlansResponseEntry.md +7 -0
- data/docs/ReportInfo.md +12 -10
- data/docs/ResetPasswordApi.md +12 -12
- data/docs/ServiceIntegration.md +1 -0
- data/docs/Subscription.md +22 -0
- data/docs/SubscriptionDashboardDto.md +2 -1
- data/docs/SubscriptionDto.md +17 -15
- data/docs/SubscriptionResponse.md +10 -0
- data/docs/SubscriptionResponseEntry.md +7 -0
- data/docs/SubscriptionsApi.md +160 -174
- data/docs/SubscriptionsResponse.md +10 -0
- data/docs/SubscriptionsResponseEntry.md +7 -0
- data/docs/TagApiControllerApi.md +28 -35
- data/docs/TagNamesResponse.md +7 -0
- data/docs/TokenDto.md +13 -0
- data/docs/TokenResponse.md +10 -0
- data/docs/TokenResponseEntry.md +7 -0
- data/docs/TokensApiControllerApi.md +72 -81
- data/docs/TokensResponse.md +10 -0
- data/docs/TokensResponseEntry.md +7 -0
- data/docs/UpdateAppInfo.md +2 -1
- data/docs/UpdatePlanResponse.md +10 -0
- data/docs/UpdatePlanResponseDto.md +8 -0
- data/docs/UpdatePlanResponseEntry.md +7 -0
- data/docs/UpdateSubscriptionDto.md +2 -1
- data/docs/UpdateTokenDto.md +3 -1
- data/docs/UsageDto.md +19 -0
- data/docs/UsageMultiResponse.md +10 -0
- data/docs/UsageMultiResponseEntry.md +7 -0
- data/docs/UsageResponse.md +10 -0
- data/docs/UsageResponseEntry.md +7 -0
- data/docs/UserInfo.md +1 -0
- data/docs/UserPermissions.md +1 -0
- data/docs/UserRole.md +1 -0
- data/lib/SematextCloud/api/alert_notifications_api.rb +42 -37
- data/lib/SematextCloud/api/alerts_api.rb +81 -72
- data/lib/SematextCloud/api/apps_api.rb +125 -106
- data/lib/SematextCloud/api/aws_settings_controller_api.rb +26 -25
- data/lib/SematextCloud/api/billing_api.rb +51 -46
- data/lib/SematextCloud/api/logs_app_api.rb +21 -20
- data/lib/SematextCloud/api/logs_usage_api_controller_api.rb +86 -0
- data/lib/SematextCloud/api/monitoring_app_api.rb +23 -22
- data/lib/SematextCloud/api/reset_password_api.rb +21 -20
- data/lib/SematextCloud/api/subscriptions_api.rb +203 -172
- data/lib/SematextCloud/api/tag_api_controller_api.rb +53 -50
- data/lib/SematextCloud/api/tokens_api_controller_api.rb +98 -87
- data/lib/SematextCloud/api_client.rb +41 -42
- data/lib/SematextCloud/api_error.rb +21 -2
- data/lib/SematextCloud/configuration.rb +5 -9
- data/lib/SematextCloud/models/alert_notification.rb +260 -0
- data/lib/SematextCloud/models/alert_notification_request.rb +49 -26
- data/lib/SematextCloud/models/alert_rule.rb +175 -152
- data/lib/SematextCloud/models/alert_rule_response.rb +235 -0
- data/lib/SematextCloud/models/alert_rule_response_entry.rb +206 -0
- data/lib/SematextCloud/models/alert_rule_schedule_time_range_dto.rb +44 -21
- data/lib/SematextCloud/models/alert_rule_schedule_weekday_dto.rb +49 -26
- data/lib/SematextCloud/models/alert_rules_response.rb +235 -0
- data/lib/SematextCloud/models/alert_rules_response_entry.rb +208 -0
- data/lib/SematextCloud/models/app.rb +163 -93
- data/lib/SematextCloud/models/app_description.rb +41 -18
- data/lib/SematextCloud/models/app_metadata.rb +60 -37
- data/lib/SematextCloud/models/app_response.rb +235 -0
- data/lib/SematextCloud/models/app_response_entry.rb +206 -0
- data/lib/SematextCloud/models/app_types_response.rb +235 -0
- data/lib/SematextCloud/models/app_types_response_entry.rb +208 -0
- data/lib/SematextCloud/models/apps_response.rb +235 -0
- data/lib/SematextCloud/models/apps_response_entry.rb +208 -0
- data/lib/SematextCloud/models/basic_auth_method_dto.rb +47 -24
- data/lib/SematextCloud/models/basic_organization_dto.rb +51 -28
- data/lib/SematextCloud/models/billing_info.rb +48 -25
- data/lib/SematextCloud/models/charges_details_response_dto.rb +298 -0
- data/lib/SematextCloud/models/cloud_watch_settings.rb +56 -33
- data/lib/SematextCloud/models/cloud_watch_settings_response.rb +235 -0
- data/lib/SematextCloud/models/cloud_watch_settings_response_entry.rb +206 -0
- data/lib/SematextCloud/models/create_app_info.rb +53 -31
- data/lib/SematextCloud/models/create_token_dto.rb +54 -22
- data/lib/SematextCloud/models/daily_dto.rb +251 -0
- data/lib/SematextCloud/models/day_usage_data.rb +411 -0
- data/lib/SematextCloud/models/{data_series_filter.rb → dimension.rb} +59 -69
- data/lib/SematextCloud/models/error.rb +43 -20
- data/lib/SematextCloud/models/{data_series_request.rb → event_dto.rb} +65 -90
- data/lib/SematextCloud/models/filter_value.rb +53 -30
- data/lib/SematextCloud/models/generic_api_response.rb +46 -24
- data/lib/SematextCloud/models/generic_map_based_api_response.rb +236 -0
- data/lib/SematextCloud/models/invitation.rb +74 -52
- data/lib/SematextCloud/models/invoice.rb +253 -0
- data/lib/SematextCloud/models/invoice_response.rb +235 -0
- data/lib/SematextCloud/models/invoice_response_entry.rb +206 -0
- data/lib/SematextCloud/models/limit_change_event_dto.rb +224 -0
- data/lib/SematextCloud/models/mail_report_response.rb +235 -0
- data/lib/SematextCloud/models/mail_report_response_response_entry.rb +206 -0
- data/lib/SematextCloud/models/min_period_fee_period.rb +314 -0
- data/lib/SematextCloud/models/notification_integration.rb +73 -50
- data/lib/SematextCloud/models/notifications_response.rb +235 -0
- data/lib/SematextCloud/models/notifications_response_entry.rb +226 -0
- data/lib/SematextCloud/models/plan.rb +80 -57
- data/lib/SematextCloud/models/plans_response.rb +235 -0
- data/lib/SematextCloud/models/plans_response_entry.rb +208 -0
- data/lib/SematextCloud/models/report_info.rb +69 -37
- data/lib/SematextCloud/models/service_integration.rb +71 -48
- data/lib/SematextCloud/models/subscription.rb +387 -0
- data/lib/SematextCloud/models/subscription_dashboard_dto.rb +72 -49
- data/lib/SematextCloud/models/subscription_dto.rb +85 -53
- data/lib/SematextCloud/models/subscription_response.rb +235 -0
- data/lib/SematextCloud/models/subscription_response_entry.rb +206 -0
- data/lib/SematextCloud/models/subscriptions_response.rb +235 -0
- data/lib/SematextCloud/models/subscriptions_response_entry.rb +208 -0
- data/lib/SematextCloud/models/tag_names_response.rb +213 -0
- data/lib/SematextCloud/models/{saved_query.rb → token_dto.rb} +78 -109
- data/lib/SematextCloud/models/token_response.rb +235 -0
- data/lib/SematextCloud/models/token_response_entry.rb +206 -0
- data/lib/SematextCloud/models/tokens_response.rb +235 -0
- data/lib/SematextCloud/models/tokens_response_entry.rb +208 -0
- data/lib/SematextCloud/models/update_app_info.rb +64 -41
- data/lib/SematextCloud/models/update_plan_response.rb +235 -0
- data/lib/SematextCloud/models/update_plan_response_dto.rb +217 -0
- data/lib/SematextCloud/models/update_plan_response_entry.rb +206 -0
- data/lib/SematextCloud/models/update_subscription_dto.rb +42 -19
- data/lib/SematextCloud/models/update_token_dto.rb +54 -22
- data/lib/SematextCloud/models/usage_dto.rb +320 -0
- data/lib/SematextCloud/models/usage_multi_response.rb +235 -0
- data/lib/SematextCloud/models/usage_multi_response_entry.rb +206 -0
- data/lib/SematextCloud/models/usage_response.rb +235 -0
- data/lib/SematextCloud/models/usage_response_entry.rb +206 -0
- data/lib/SematextCloud/models/user_info.rb +42 -19
- data/lib/SematextCloud/models/user_permissions.rb +48 -25
- data/lib/SematextCloud/models/user_role.rb +53 -30
- data/lib/SematextCloud/version.rb +2 -3
- data/lib/SematextCloud.rb +57 -7
- data/spec/api/alert_notifications_api_spec.rb +5 -6
- data/spec/api/alerts_api_spec.rb +11 -12
- data/spec/api/apps_api_spec.rb +26 -16
- data/spec/api/aws_settings_controller_api_spec.rb +6 -7
- data/spec/api/billing_api_spec.rb +7 -8
- data/spec/api/logs_app_api_spec.rb +3 -4
- data/spec/api/logs_usage_api_controller_api_spec.rb +47 -0
- data/spec/api/monitoring_app_api_spec.rb +5 -6
- data/spec/api/reset_password_api_spec.rb +3 -4
- data/spec/api/subscriptions_api_spec.rb +103 -11
- data/spec/api/tag_api_controller_api_spec.rb +8 -9
- data/spec/api/tokens_api_controller_api_spec.rb +18 -19
- data/spec/api_client_spec.rb +1 -2
- data/spec/base_object_spec.rb +109 -0
- data/spec/configuration_spec.rb +4 -5
- data/spec/models/alert_notification_request_spec.rb +4 -5
- data/spec/models/alert_notification_spec.rb +76 -0
- data/spec/models/alert_rule_response_entry_spec.rb +40 -0
- data/spec/models/alert_rule_response_spec.rb +58 -0
- data/spec/models/alert_rule_schedule_time_range_dto_spec.rb +4 -5
- data/spec/models/alert_rule_schedule_weekday_dto_spec.rb +4 -5
- data/spec/models/alert_rule_spec.rb +4 -5
- data/spec/models/alert_rules_response_entry_spec.rb +40 -0
- data/spec/models/alert_rules_response_spec.rb +58 -0
- data/spec/models/app_description_spec.rb +4 -5
- data/spec/models/app_metadata_spec.rb +4 -5
- data/spec/models/app_response_entry_spec.rb +40 -0
- data/spec/models/app_response_spec.rb +58 -0
- data/spec/models/app_spec.rb +34 -5
- data/spec/models/app_types_response_entry_spec.rb +40 -0
- data/spec/models/app_types_response_spec.rb +58 -0
- data/spec/models/apps_response_entry_spec.rb +40 -0
- data/spec/models/apps_response_spec.rb +58 -0
- data/spec/models/basic_auth_method_dto_spec.rb +4 -5
- data/spec/models/basic_organization_dto_spec.rb +4 -5
- data/spec/models/billing_info_spec.rb +4 -5
- data/spec/models/{data_series_request_spec.rb → charges_details_response_dto_spec.rb} +18 -19
- data/spec/models/cloud_watch_settings_response_entry_spec.rb +40 -0
- data/spec/models/cloud_watch_settings_response_spec.rb +58 -0
- data/spec/models/cloud_watch_settings_spec.rb +4 -5
- data/spec/models/create_app_info_spec.rb +4 -5
- data/spec/models/create_token_dto_spec.rb +10 -5
- data/spec/models/daily_dto_spec.rb +70 -0
- data/spec/models/day_usage_data_spec.rb +158 -0
- data/spec/models/dimension_spec.rb +46 -0
- data/spec/models/error_spec.rb +4 -5
- data/spec/models/{data_series_filter_spec.rb → event_dto_spec.rb} +14 -15
- data/spec/models/filter_value_spec.rb +4 -5
- data/spec/models/generic_api_response_spec.rb +4 -5
- data/spec/models/generic_map_based_api_response_spec.rb +58 -0
- data/spec/models/invitation_spec.rb +4 -5
- data/spec/models/invoice_response_entry_spec.rb +40 -0
- data/spec/models/invoice_response_spec.rb +58 -0
- data/spec/models/invoice_spec.rb +70 -0
- data/spec/models/limit_change_event_dto_spec.rb +52 -0
- data/spec/models/mail_report_response_response_entry_spec.rb +40 -0
- data/spec/models/mail_report_response_spec.rb +58 -0
- data/spec/models/min_period_fee_period_spec.rb +112 -0
- data/spec/models/notification_integration_spec.rb +4 -5
- data/spec/models/notifications_response_entry_spec.rb +52 -0
- data/spec/models/notifications_response_spec.rb +58 -0
- data/spec/models/plan_spec.rb +5 -6
- data/spec/models/plans_response_entry_spec.rb +40 -0
- data/spec/models/plans_response_spec.rb +58 -0
- data/spec/models/report_info_spec.rb +10 -5
- data/spec/models/service_integration_spec.rb +4 -5
- data/spec/models/subscription_dashboard_dto_spec.rb +4 -5
- data/spec/models/subscription_dto_spec.rb +10 -5
- data/spec/models/subscription_response_entry_spec.rb +40 -0
- data/spec/models/subscription_response_spec.rb +58 -0
- data/spec/models/subscription_spec.rb +138 -0
- data/spec/models/subscriptions_response_entry_spec.rb +40 -0
- data/spec/models/subscriptions_response_spec.rb +58 -0
- data/spec/models/tag_names_response_spec.rb +40 -0
- data/spec/models/token_dto_spec.rb +76 -0
- data/spec/models/token_response_entry_spec.rb +40 -0
- data/spec/models/token_response_spec.rb +58 -0
- data/spec/models/tokens_response_entry_spec.rb +40 -0
- data/spec/models/tokens_response_spec.rb +58 -0
- data/spec/models/update_app_info_spec.rb +4 -5
- data/spec/models/update_plan_response_dto_spec.rb +46 -0
- data/spec/models/update_plan_response_entry_spec.rb +40 -0
- data/spec/models/update_plan_response_spec.rb +58 -0
- data/spec/models/update_subscription_dto_spec.rb +4 -5
- data/spec/models/update_token_dto_spec.rb +10 -5
- data/spec/models/{saved_query_spec.rb → usage_dto_spec.rb} +20 -21
- data/spec/models/usage_multi_response_entry_spec.rb +40 -0
- data/spec/models/usage_multi_response_spec.rb +58 -0
- data/spec/models/usage_response_entry_spec.rb +40 -0
- data/spec/models/usage_response_spec.rb +58 -0
- data/spec/models/user_info_spec.rb +4 -5
- data/spec/models/user_permissions_spec.rb +4 -5
- data/spec/models/user_role_spec.rb +4 -5
- data/spec/spec_helper.rb +1 -2
- metadata +235 -173
- data/docs/DataSeriesFilter.md +0 -8
- data/docs/DataSeriesRequest.md +0 -12
- data/docs/MetricsApi.md +0 -227
- data/docs/SavedQueriesApi.md +0 -220
- data/docs/SavedQuery.md +0 -18
- data/lib/SematextCloud/api/metrics_api.rb +0 -247
- data/lib/SematextCloud/api/saved_queries_api.rb +0 -237
- data/spec/api/metrics_api_spec.rb +0 -83
- data/spec/api/saved_queries_api_spec.rb +0 -80
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5218e5486c3ae33ee6703a51fbd5420055267dc310b9762f0beeac9a66ddac88
|
4
|
+
data.tar.gz: 93d2f098a169dfd34ed29385730aabb1d834b3a5ceb7b9eda8ee2773f80948bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef6d6e76b132bc8ab5c097332d9c374f4e236e80aa02176597f7d65c6c0f1f992757ea7ebb461382b836779d9a127e6259817bd573196a2b0ea9b2d05f7618dd
|
7
|
+
data.tar.gz: a0141153bcabbe2f401019c438472c2dfaa8486939c394f2d8f5409b445f9a2dda3c536b5b94ad110949bd1effc5e75d8766d21f3b7fa59079d6ec0a2299600a
|
data/Gemfile
CHANGED
data/Gemfile.lock
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
SematextCloud (0.3.1)
|
5
|
+
json (~> 2.1, >= 2.1.0)
|
6
|
+
typhoeus (~> 1.0, >= 1.0.1)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
ast (2.4.2)
|
12
|
+
byebug (11.1.3)
|
13
|
+
coderay (1.1.3)
|
14
|
+
diff-lcs (1.4.4)
|
15
|
+
ethon (0.15.0)
|
16
|
+
ffi (>= 1.15.0)
|
17
|
+
ffi (1.15.4)
|
18
|
+
jaro_winkler (1.5.4)
|
19
|
+
json (2.6.1)
|
20
|
+
method_source (1.0.0)
|
21
|
+
parallel (1.21.0)
|
22
|
+
parser (3.0.3.2)
|
23
|
+
ast (~> 2.4.1)
|
24
|
+
pry (0.13.1)
|
25
|
+
coderay (~> 1.1)
|
26
|
+
method_source (~> 1.0)
|
27
|
+
pry-byebug (3.9.0)
|
28
|
+
byebug (~> 11.0)
|
29
|
+
pry (~> 0.13.0)
|
30
|
+
psych (4.0.2)
|
31
|
+
rainbow (3.0.0)
|
32
|
+
rake (13.0.6)
|
33
|
+
rspec (3.10.0)
|
34
|
+
rspec-core (~> 3.10.0)
|
35
|
+
rspec-expectations (~> 3.10.0)
|
36
|
+
rspec-mocks (~> 3.10.0)
|
37
|
+
rspec-core (3.10.1)
|
38
|
+
rspec-support (~> 3.10.0)
|
39
|
+
rspec-expectations (3.10.1)
|
40
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
41
|
+
rspec-support (~> 3.10.0)
|
42
|
+
rspec-mocks (3.10.2)
|
43
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
44
|
+
rspec-support (~> 3.10.0)
|
45
|
+
rspec-support (3.10.3)
|
46
|
+
rubocop (0.66.0)
|
47
|
+
jaro_winkler (~> 1.5.1)
|
48
|
+
parallel (~> 1.10)
|
49
|
+
parser (>= 2.5, != 2.5.1.1)
|
50
|
+
psych (>= 3.1.0)
|
51
|
+
rainbow (>= 2.2.2, < 4.0)
|
52
|
+
ruby-progressbar (~> 1.7)
|
53
|
+
unicode-display_width (>= 1.4.0, < 1.6)
|
54
|
+
ruby-progressbar (1.11.0)
|
55
|
+
typhoeus (1.4.0)
|
56
|
+
ethon (>= 0.9.0)
|
57
|
+
unicode-display_width (1.5.0)
|
58
|
+
|
59
|
+
PLATFORMS
|
60
|
+
ruby
|
61
|
+
|
62
|
+
DEPENDENCIES
|
63
|
+
SematextCloud!
|
64
|
+
pry-byebug
|
65
|
+
rake (~> 13.0.1)
|
66
|
+
rspec (~> 3.6, >= 3.6.0)
|
67
|
+
rubocop (~> 0.66.0)
|
68
|
+
|
69
|
+
BUNDLED WITH
|
70
|
+
2.1.4
|
data/README.md
CHANGED
@@ -33,7 +33,7 @@ Refer to below link for deeper information on the API itself.
|
|
33
33
|
|
34
34
|
## Contents
|
35
35
|
|
36
|
-
- [<img src="https://sematext.com/wp-content/uploads/2020/09/just-octi-blue.png" valign="bottom" width="60px"/>** sematext-api-client-ruby**](#
|
36
|
+
- [<img src="https://sematext.com/wp-content/uploads/2020/09/just-octi-blue.png" valign="bottom" width="60px"/>** sematext-api-client-ruby**](#sematext-api-client-ruby)
|
37
37
|
- [Contents](#contents)
|
38
38
|
- [Installation](#installation)
|
39
39
|
- [Build a gem](#build-a-gem)
|
@@ -53,7 +53,7 @@ Refer to below link for deeper information on the API itself.
|
|
53
53
|
To build the Ruby code into a gem:
|
54
54
|
|
55
55
|
```shell
|
56
|
-
gem build
|
56
|
+
gem build stcloud.gemspec
|
57
57
|
```
|
58
58
|
|
59
59
|
Then either install the gem locally:
|
@@ -124,56 +124,48 @@ end
|
|
124
124
|
|
125
125
|
All URIs are relative to *https://localhost*
|
126
126
|
|
127
|
-
| Class | Method
|
128
|
-
| ----------------------------------- |
|
129
|
-
| *stcloud::AlertNotificationsApi* | [**
|
130
|
-
| *stcloud::AlertNotificationsApi* | [**
|
131
|
-
| *stcloud::AlertsApi* | [**
|
132
|
-
| *stcloud::AlertsApi* | [**delete_alert_rule_using_delete1**](docs/AlertsApi.md#delete_alert_rule_using_delete1)
|
133
|
-
| *stcloud::AlertsApi* | [**
|
134
|
-
| *stcloud::AlertsApi* | [**enable_alert_rule_using_put1**](docs/AlertsApi.md#enable_alert_rule_using_put1)
|
135
|
-
| *stcloud::AlertsApi* | [**get_alert_rules_for_app_using_get1**](docs/AlertsApi.md#get_alert_rules_for_app_using_get1)
|
136
|
-
| *stcloud::AppsApi* | [**
|
137
|
-
| *stcloud::AppsApi* | [**
|
138
|
-
| *stcloud::AppsApi* | [**
|
139
|
-
| *stcloud::AppsApi* | [**
|
140
|
-
| *stcloud::AppsApi* | [**
|
141
|
-
| *stcloud::AppsApi* | [**
|
142
|
-
| *stcloud::AppsApi* | [**update_description_using_put**](docs/AppsApi.md#update_description_using_put)
|
143
|
-
| *stcloud::AppsApi* | [**
|
144
|
-
| *stcloud::AwsSettingsControllerApi* | [**update_using_put**](docs/AwsSettingsControllerApi.md#update_using_put)
|
145
|
-
| *stcloud::BillingApi* | [**get_detailed_invoice_using_get1**](docs/BillingApi.md#get_detailed_invoice_using_get1)
|
146
|
-
| *stcloud::BillingApi* | [**
|
147
|
-
| *stcloud::BillingApi* | [**update_plan_using_put**](docs/BillingApi.md#update_plan_using_put)
|
148
|
-
| *stcloud::LogsAppApi* | [**create_logsene_application**](docs/LogsAppApi.md#create_logsene_application)
|
149
|
-
| *stcloud::
|
150
|
-
| *stcloud::
|
151
|
-
| *stcloud::
|
152
|
-
| *stcloud::
|
153
|
-
| *stcloud::
|
154
|
-
| *stcloud::
|
155
|
-
| *stcloud::
|
156
|
-
| *stcloud::
|
157
|
-
| *stcloud::
|
158
|
-
| *stcloud::
|
159
|
-
| *stcloud::SubscriptionsApi* | [**
|
160
|
-
| *stcloud::SubscriptionsApi* | [**
|
161
|
-
| *stcloud::
|
162
|
-
| *stcloud::
|
163
|
-
| *stcloud::
|
164
|
-
| *stcloud::
|
165
|
-
| *stcloud::
|
166
|
-
| *stcloud::
|
167
|
-
| *stcloud::
|
168
|
-
| *stcloud::
|
169
|
-
| *stcloud::TagApiControllerApi* | [**get_tag_names_using_get**](docs/TagApiControllerApi.md#get_tag_names_using_get) | **GET** /spm-reports/api/v3/apps/{appIds}/tagNames | Gets tag names for the given application identifiers appearing in the given time frame. |
|
170
|
-
| *stcloud::TagApiControllerApi* | [**get_using_get2**](docs/TagApiControllerApi.md#get_using_get2) | **GET** /spm-reports/api/v3/apps/{appIds}/metrics/filters | Gets values for specified tags for the given application identifiers appearing in the given time frame. |
|
171
|
-
| *stcloud::TagApiControllerApi* | [**get_using_get3**](docs/TagApiControllerApi.md#get_using_get3) | **GET** /spm-reports/api/v3/apps/{appIds}/tags | Gets values for specified tags for the given application identifiers appearing in the given time frame. |
|
172
|
-
| *stcloud::TokensApiControllerApi* | [**create_app_token**](docs/TokensApiControllerApi.md#create_app_token) | **POST** /users-web/api/v3/apps/{appId}/tokens | Create new app token |
|
173
|
-
| *stcloud::TokensApiControllerApi* | [**delete_app_token1**](docs/TokensApiControllerApi.md#delete_app_token1) | **DELETE** /users-web/api/v3/apps/{appId}/tokens/{tokenId} | Delete app token |
|
174
|
-
| *stcloud::TokensApiControllerApi* | [**get_app_tokens1**](docs/TokensApiControllerApi.md#get_app_tokens1) | **GET** /users-web/api/v3/apps/{appId}/tokens | Get app available tokens |
|
175
|
-
| *stcloud::TokensApiControllerApi* | [**regenerate_app_token**](docs/TokensApiControllerApi.md#regenerate_app_token) | **POST** /users-web/api/v3/apps/{appId}/tokens/{tokenId}/regenerate | Regenerate app token) |
|
176
|
-
| *stcloud::TokensApiControllerApi* | [**update_app_token1**](docs/TokensApiControllerApi.md#update_app_token1) | **PUT** /users-web/api/v3/apps/{appId}/tokens/{tokenId} | Update app token (enable/disable) |
|
127
|
+
| Class | Method | HTTP request | Description |
|
128
|
+
| ----------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
|
129
|
+
| *stcloud::AlertNotificationsApi* | [**get_alert_notifications_for_app_using_post**](docs/AlertNotificationsApi.md#get_alert_notifications_for_app_using_post) | **POST** /users-web/api/v3/apps/{appId}/notifications/alerts | Get alert notifications for an app |
|
130
|
+
| *stcloud::AlertNotificationsApi* | [**get_alert_notifications_for_user_using_post1**](docs/AlertNotificationsApi.md#get_alert_notifications_for_user_using_post1) | **POST** /users-web/api/v3/notifications/alerts | Get alert notifications for a user |
|
131
|
+
| *stcloud::AlertsApi* | [**create_alert_using_post**](docs/AlertsApi.md#create_alert_using_post) | **POST** /users-web/api/v3/alerts | Create alert rule |
|
132
|
+
| *stcloud::AlertsApi* | [**delete_alert_rule_using_delete1**](docs/AlertsApi.md#delete_alert_rule_using_delete1) | **DELETE** /users-web/api/v3/alerts/{updateableAlertId} | Delete alert rule |
|
133
|
+
| *stcloud::AlertsApi* | [**disable_alert_rule_using_put1**](docs/AlertsApi.md#disable_alert_rule_using_put1) | **PUT** /users-web/api/v3/alerts/{updateableAlertId}/disable | Disable alert rule |
|
134
|
+
| *stcloud::AlertsApi* | [**enable_alert_rule_using_put1**](docs/AlertsApi.md#enable_alert_rule_using_put1) | **PUT** /users-web/api/v3/alerts/{updateableAlertId}/enable | Enable alert rule |
|
135
|
+
| *stcloud::AlertsApi* | [**get_alert_rules_for_app_using_get1**](docs/AlertsApi.md#get_alert_rules_for_app_using_get1) | **GET** /users-web/api/v3/apps/{appId}/alerts | Get alert rules for an app |
|
136
|
+
| *stcloud::AppsApi* | [**delete_using_delete1**](docs/AppsApi.md#delete_using_delete1) | **DELETE** /users-web/api/v3/apps/{anyStateAppId} | delete |
|
137
|
+
| *stcloud::AppsApi* | [**get_app_types_using_get**](docs/AppsApi.md#get_app_types_using_get) | **GET** /users-web/api/v3/apps/types | Get all App types supported for the account identified with apiKey |
|
138
|
+
| *stcloud::AppsApi* | [**get_using_get1**](docs/AppsApi.md#get_using_get1) | **GET** /users-web/api/v3/apps/{anyStateAppId} | Gets defails for one particular App |
|
139
|
+
| *stcloud::AppsApi* | [**invite_app_guests_using_post1**](docs/AppsApi.md#invite_app_guests_using_post1) | **POST** /users-web/api/v3/apps/guests | Invite guests to an app |
|
140
|
+
| *stcloud::AppsApi* | [**list_apps_users_using_get1**](docs/AppsApi.md#list_apps_users_using_get1) | **GET** /users-web/api/v3/apps/users | Get all users of apps accessible to this account |
|
141
|
+
| *stcloud::AppsApi* | [**list_using_get**](docs/AppsApi.md#list_using_get) | **GET** /users-web/api/v3/apps | Get all apps accessible by account identified with apiKey |
|
142
|
+
| *stcloud::AppsApi* | [**update_description_using_put**](docs/AppsApi.md#update_description_using_put) | **PUT** /users-web/api/v3/apps/{anyStateAppId}/description | Update description of the app |
|
143
|
+
| *stcloud::AppsApi* | [**update_using_put2**](docs/AppsApi.md#update_using_put2) | **PUT** /users-web/api/v3/apps/{anyStateAppId} | Update app |
|
144
|
+
| *stcloud::AwsSettingsControllerApi* | [**update_using_put**](docs/AwsSettingsControllerApi.md#update_using_put) | **PUT** /users-web/api/v3/apps/{appId}/aws | Update App's AWS CloudWatch settings |
|
145
|
+
| *stcloud::BillingApi* | [**get_detailed_invoice_using_get1**](docs/BillingApi.md#get_detailed_invoice_using_get1) | **GET** /users-web/api/v3/billing/invoice/{service}/{year}/{month} | Get invoice details |
|
146
|
+
| *stcloud::BillingApi* | [**list_available_plans_using_get**](docs/BillingApi.md#list_available_plans_using_get) | **GET** /users-web/api/v3/billing/availablePlans | Get available plans |
|
147
|
+
| *stcloud::BillingApi* | [**update_plan_using_put**](docs/BillingApi.md#update_plan_using_put) | **PUT** /users-web/api/v3/billing/info/{appId} | Update plan for an app |
|
148
|
+
| *stcloud::LogsAppApi* | [**create_logsene_application**](docs/LogsAppApi.md#create_logsene_application) | **POST** /logsene-reports/api/v3/apps | Create Logs App |
|
149
|
+
| *stcloud::MonitoringAppApi* | [**create_spm_application1**](docs/MonitoringAppApi.md#create_spm_application1) | **POST** /spm-reports/api/v3/apps | Create Monitoring App |
|
150
|
+
| *stcloud::ResetPasswordApi* | [**reset_password_using_post1**](docs/ResetPasswordApi.md#reset_password_using_post1) | **POST** /users-web/api/v3/account/password/reset | Reset Password |
|
151
|
+
| *stcloud::SubscriptionsApi* | [**create_for_app_using_post1**](docs/SubscriptionsApi.md#create_for_app_using_post1) | **POST** /users-web/api/v3/apps/{appId}/subscription | Create App subscription |
|
152
|
+
| *stcloud::SubscriptionsApi* | [**create_for_dash_using_post1**](docs/SubscriptionsApi.md#create_for_dash_using_post1) | **POST** /users-web/api/v3/dashboards/{dashId}/subscription | Create dashboard subscription |
|
153
|
+
| *stcloud::SubscriptionsApi* | [**delete_using_delete3**](docs/SubscriptionsApi.md#delete_using_delete3) | **DELETE** /users-web/api/v3/subscriptions/{updateableSubscriptionId} | Delete subscription |
|
154
|
+
| *stcloud::SubscriptionsApi* | [**list_using_get3**](docs/SubscriptionsApi.md#list_using_get3) | **GET** /users-web/api/v3/apps/{appId}/subscriptions | Get subscriptions for an App |
|
155
|
+
| *stcloud::SubscriptionsApi* | [**list_using_get4**](docs/SubscriptionsApi.md#list_using_get4) | **GET** /users-web/api/v3/subscriptions | Get current account's subscriptions |
|
156
|
+
| *stcloud::SubscriptionsApi* | [**send_app_report_using_post1**](docs/SubscriptionsApi.md#send_app_report_using_post1) | **POST** /users-web/api/v3/apps/{appId}/report/send | Email an App report |
|
157
|
+
| *stcloud::SubscriptionsApi* | [**send_dash_report_using_post1**](docs/SubscriptionsApi.md#send_dash_report_using_post1) | **POST** /users-web/api/v3/dashboards/{dashId}/report/send | Email a dashboard report |
|
158
|
+
| *stcloud::SubscriptionsApi* | [**toggle_enabled_using_put1**](docs/SubscriptionsApi.md#toggle_enabled_using_put1) | **PUT** /users-web/api/v3/subscriptions/{updateableSubscriptionId} | Toggle subscription status |
|
159
|
+
| *stcloud::SubscriptionsApi* | [**update_for_app_using_put**](docs/SubscriptionsApi.md#update_for_app_using_put) | **PUT** /users-web/api/v3/apps/{appId}/subscription | Update App subscription |
|
160
|
+
| *stcloud::SubscriptionsApi* | [**update_for_dash_using_put1**](docs/SubscriptionsApi.md#update_for_dash_using_put1) | **PUT** /users-web/api/v3/dashboards/{dashId}/subscription | Update dashboard subscription |
|
161
|
+
| *stcloud::TagApiControllerApi* | [**get_tag_names_using_get1**](docs/TagApiControllerApi.md#get_tag_names_using_get1) | **GET** /spm-reports/api/v3/apps/{appIds}/tagNames | Gets tag names for the given application identifiers appearing in the given time frame. |
|
162
|
+
| *stcloud::TagApiControllerApi* | [**get_using_get1**](docs/TagApiControllerApi.md#get_using_get1) | **GET** /spm-reports/api/v3/apps/{appIds}/tags | Gets values for specified tags for the given application identifiers appearing in the given time frame. |
|
163
|
+
| *stcloud::TagApiControllerApi* | [**get_using_get2**](docs/TagApiControllerApi.md#get_using_get2) | **GET** /spm-reports/api/v3/apps/{appIds}/metrics/filters | Gets values for specified tags for the given application identifiers appearing in the given time frame. |
|
164
|
+
| *stcloud::TokensApiControllerApi* | [**create_app_token1**](docs/TokensApiControllerApi.md#create_app_token1) | **POST** /users-web/api/v3/apps/{appId}/tokens | Create new app token |
|
165
|
+
| *stcloud::TokensApiControllerApi* | [**delete_app_token1**](docs/TokensApiControllerApi.md#delete_app_token1) | **DELETE** /users-web/api/v3/apps/{appId}/tokens/{tokenId} | Delete app token |
|
166
|
+
| *stcloud::TokensApiControllerApi* | [**get_app_tokens**](docs/TokensApiControllerApi.md#get_app_tokens) | **GET** /users-web/api/v3/apps/{appId}/tokens | Get app available tokens |
|
167
|
+
| *stcloud::TokensApiControllerApi* | [**regenerate_app_token1**](docs/TokensApiControllerApi.md#regenerate_app_token1) | **POST** /users-web/api/v3/apps/{appId}/tokens/{tokenId}/regenerate | Regenerate app token) |
|
168
|
+
| *stcloud::TokensApiControllerApi* | [**update_app_token**](docs/TokensApiControllerApi.md#update_app_token) | **PUT** /users-web/api/v3/apps/{appId}/tokens/{tokenId} | Update app token (enable/disable or name) |
|
177
169
|
|
178
170
|
|
179
171
|
## Documentation for Models
|
@@ -191,8 +183,6 @@ All URIs are relative to *https://localhost*
|
|
191
183
|
- [stcloud::CloudWatchSettings](docs/CloudWatchSettings.md)
|
192
184
|
- [stcloud::CreateAppInfo](docs/CreateAppInfo.md)
|
193
185
|
- [stcloud::CreateTokenDto](docs/CreateTokenDto.md)
|
194
|
-
- [stcloud::DataSeriesFilter](docs/DataSeriesFilter.md)
|
195
|
-
- [stcloud::DataSeriesRequest](docs/DataSeriesRequest.md)
|
196
186
|
- [stcloud::Error](docs/Error.md)
|
197
187
|
- [stcloud::FilterValue](docs/FilterValue.md)
|
198
188
|
- [stcloud::GenericApiResponse](docs/GenericApiResponse.md)
|
@@ -200,7 +190,6 @@ All URIs are relative to *https://localhost*
|
|
200
190
|
- [stcloud::NotificationIntegration](docs/NotificationIntegration.md)
|
201
191
|
- [stcloud::Plan](docs/Plan.md)
|
202
192
|
- [stcloud::ReportInfo](docs/ReportInfo.md)
|
203
|
-
- [stcloud::SavedQuery](docs/SavedQuery.md)
|
204
193
|
- [stcloud::ServiceIntegration](docs/ServiceIntegration.md)
|
205
194
|
- [stcloud::SubscriptionDashboardDto](docs/SubscriptionDashboardDto.md)
|
206
195
|
- [stcloud::SubscriptionDto](docs/SubscriptionDto.md)
|
data/SematextCloud.gemspec
CHANGED
@@ -8,8 +8,7 @@
|
|
8
8
|
OpenAPI spec version: v3
|
9
9
|
|
10
10
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
11
|
-
Swagger Codegen version:
|
12
|
-
|
11
|
+
Swagger Codegen version: 3.0.30
|
13
12
|
=end
|
14
13
|
|
15
14
|
$:.push File.expand_path("../lib", __FILE__)
|
@@ -20,23 +19,17 @@ Gem::Specification.new do |s|
|
|
20
19
|
s.version = SematextCloud::VERSION
|
21
20
|
s.platform = Gem::Platform::RUBY
|
22
21
|
s.authors = ["sematext.com"]
|
23
|
-
s.email = ["
|
22
|
+
s.email = ["support@sematext.com"]
|
24
23
|
s.homepage = "https://github.com/sematext/sematext-api-client-ruby"
|
25
|
-
s.summary = "
|
24
|
+
s.summary = "Sematext Cloud API Client for talking to https://sematext.com/docs/api/"
|
26
25
|
s.description = "Sematext Cloud API Client for talking to https://sematext.com/docs/api/"
|
27
|
-
s.license = 'Apache
|
26
|
+
s.license = 'Apache License, Version 2.0'
|
28
27
|
s.required_ruby_version = ">= 1.9"
|
29
28
|
|
30
29
|
s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
|
31
30
|
s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
|
32
31
|
|
33
32
|
s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
|
34
|
-
s.add_development_dependency 'vcr', '~> 3.0', '>= 3.0.1'
|
35
|
-
s.add_development_dependency 'webmock', '~> 1.24', '>= 1.24.3'
|
36
|
-
s.add_development_dependency 'autotest', '~> 4.4', '>= 4.4.6'
|
37
|
-
s.add_development_dependency 'autotest-rails-pure', '~> 4.1', '>= 4.1.2'
|
38
|
-
s.add_development_dependency 'autotest-growl', '~> 0.2', '>= 0.2.16'
|
39
|
-
s.add_development_dependency 'autotest-fsevent', '~> 0.2', '>= 0.2.12'
|
40
33
|
|
41
34
|
s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? }
|
42
35
|
s.test_files = `find spec/*`.split("\n")
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# SematextCloud::AlertNotification
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ------------------ | ----------- | ----------- | ---------- |
|
7
|
+
| **app_name** | **String** | | [optional] |
|
8
|
+
| **app_type** | **String** | | [optional] |
|
9
|
+
| **back_to_normal** | **BOOLEAN** | | [optional] |
|
10
|
+
| **create_time** | **String** | | [optional] |
|
11
|
+
| **sent** | **BOOLEAN** | | [optional] |
|
12
|
+
| **text** | **String** | | [optional] |
|
13
|
+
| **_when** | **String** | | [optional] |
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# SematextCloud::AlertNotificationRequest
|
2
2
|
|
3
3
|
## Properties
|
4
|
+
|
4
5
|
| Name | Type | Description | Notes |
|
5
6
|
| -------------------- | ----------- | --------------------------------------------------------------------------------------------------------------- | ---------- |
|
6
7
|
| **default_interval** | **Integer** | | [optional] |
|
@@ -1,21 +1,22 @@
|
|
1
1
|
# SematextCloud::AlertNotificationsApi
|
2
2
|
|
3
|
-
All URIs are relative to
|
3
|
+
All URIs are relative to */*
|
4
4
|
|
5
5
|
| Method | HTTP request | Description |
|
6
6
|
| ----------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------ | ---------------------------------- |
|
7
7
|
| [**get_alert_notifications_for_app_using_post**](AlertNotificationsApi.md#get_alert_notifications_for_app_using_post) | **POST** /users-web/api/v3/apps/{appId}/notifications/alerts | Get alert notifications for an app |
|
8
8
|
| [**get_alert_notifications_for_user_using_post**](AlertNotificationsApi.md#get_alert_notifications_for_user_using_post) | **POST** /users-web/api/v3/notifications/alerts | Get alert notifications for a user |
|
9
9
|
|
10
|
-
|
11
10
|
# **get_alert_notifications_for_app_using_post**
|
12
|
-
|
11
|
+
|
12
|
+
> NotificationsResponse get_alert_notifications_for_app_using_post(bodyapp_id)
|
13
13
|
|
14
14
|
Get alert notifications for an app
|
15
15
|
|
16
16
|
Default value of interval is 1d
|
17
17
|
|
18
18
|
### Example
|
19
|
+
|
19
20
|
```ruby
|
20
21
|
# load the gem
|
21
22
|
require 'SematextCloud'
|
@@ -28,15 +29,13 @@ SematextCloud.configure do |config|
|
|
28
29
|
end
|
29
30
|
|
30
31
|
api_instance = SematextCloud::AlertNotificationsApi.new
|
31
|
-
|
32
|
+
body = SematextCloud::AlertNotificationRequest.new # AlertNotificationRequest | Time Interval
|
32
33
|
app_id = 789 # Integer | appId
|
33
34
|
|
34
|
-
time_interval = SematextCloud::AlertNotificationRequest.new # AlertNotificationRequest | Time Interval
|
35
|
-
|
36
35
|
|
37
36
|
begin
|
38
37
|
#Get alert notifications for an app
|
39
|
-
result = api_instance.get_alert_notifications_for_app_using_post(
|
38
|
+
result = api_instance.get_alert_notifications_for_app_using_post(bodyapp_id)
|
40
39
|
p result
|
41
40
|
rescue SematextCloud::ApiError => e
|
42
41
|
puts "Exception when calling AlertNotificationsApi->get_alert_notifications_for_app_using_post: #{e}"
|
@@ -45,14 +44,14 @@ end
|
|
45
44
|
|
46
45
|
### Parameters
|
47
46
|
|
48
|
-
| Name
|
49
|
-
|
|
50
|
-
| **
|
51
|
-
| **
|
47
|
+
| Name | Type | Description | Notes |
|
48
|
+
| ---------- | ----------------------------------------------------------- | ------------- | ----- |
|
49
|
+
| **body** | [**AlertNotificationRequest**](AlertNotificationRequest.md) | Time Interval |
|
50
|
+
| **app_id** | **Integer** | appId |
|
52
51
|
|
53
52
|
### Return type
|
54
53
|
|
55
|
-
[**
|
54
|
+
[**NotificationsResponse**](NotificationsResponse.md)
|
56
55
|
|
57
56
|
### Authorization
|
58
57
|
|
@@ -60,19 +59,19 @@ end
|
|
60
59
|
|
61
60
|
### HTTP request headers
|
62
61
|
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
62
|
+
- **Content-Type**: application/json
|
63
|
+
- **Accept**: application/json
|
67
64
|
|
68
65
|
# **get_alert_notifications_for_user_using_post**
|
69
|
-
|
66
|
+
|
67
|
+
> NotificationsResponse get_alert_notifications_for_user_using_post(body)
|
70
68
|
|
71
69
|
Get alert notifications for a user
|
72
70
|
|
73
71
|
Default value of interval is 1d
|
74
72
|
|
75
73
|
### Example
|
74
|
+
|
76
75
|
```ruby
|
77
76
|
# load the gem
|
78
77
|
require 'SematextCloud'
|
@@ -85,13 +84,12 @@ SematextCloud.configure do |config|
|
|
85
84
|
end
|
86
85
|
|
87
86
|
api_instance = SematextCloud::AlertNotificationsApi.new
|
88
|
-
|
89
|
-
time_interval = SematextCloud::AlertNotificationRequest.new # AlertNotificationRequest | Time Interval
|
87
|
+
body = SematextCloud::AlertNotificationRequest.new # AlertNotificationRequest | Time Interval
|
90
88
|
|
91
89
|
|
92
90
|
begin
|
93
91
|
#Get alert notifications for a user
|
94
|
-
result = api_instance.get_alert_notifications_for_user_using_post(
|
92
|
+
result = api_instance.get_alert_notifications_for_user_using_post(body)
|
95
93
|
p result
|
96
94
|
rescue SematextCloud::ApiError => e
|
97
95
|
puts "Exception when calling AlertNotificationsApi->get_alert_notifications_for_user_using_post: #{e}"
|
@@ -100,13 +98,13 @@ end
|
|
100
98
|
|
101
99
|
### Parameters
|
102
100
|
|
103
|
-
| Name
|
104
|
-
|
|
105
|
-
| **
|
101
|
+
| Name | Type | Description | Notes |
|
102
|
+
| -------- | ----------------------------------------------------------- | ------------- | ----- |
|
103
|
+
| **body** | [**AlertNotificationRequest**](AlertNotificationRequest.md) | Time Interval |
|
106
104
|
|
107
105
|
### Return type
|
108
106
|
|
109
|
-
[**
|
107
|
+
[**NotificationsResponse**](NotificationsResponse.md)
|
110
108
|
|
111
109
|
### Authorization
|
112
110
|
|
@@ -114,5 +112,5 @@ end
|
|
114
112
|
|
115
113
|
### HTTP request headers
|
116
114
|
|
117
|
-
|
118
|
-
|
115
|
+
- **Content-Type**: application/json
|
116
|
+
- **Accept**: application/json
|
data/docs/AlertRule.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# SematextCloud::AlertRule
|
2
2
|
|
3
3
|
## Properties
|
4
|
+
|
4
5
|
| Name | Type | Description | Notes |
|
5
6
|
| ---------------------------------------------- | ------------------------------------------------------------------------------ | ----------- | ---------- |
|
6
7
|
| **account_email** | **String** | | [optional] |
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# SematextCloud::AlertRuleResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ----------- | ------------------------------------------------------- | ----------- | ---------- |
|
7
|
+
| **data** | [**AlertRuleResponseEntry**](AlertRuleResponseEntry.md) | | [optional] |
|
8
|
+
| **errors** | [**Array<Error>**](Error.md) | | [optional] |
|
9
|
+
| **message** | **String** | | [optional] |
|
10
|
+
| **success** | **BOOLEAN** | | [optional] |
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# SematextCloud::AlertRuleScheduleWeekdayDto
|
2
2
|
|
3
3
|
## Properties
|
4
|
+
|
4
5
|
| Name | Type | Description | Notes |
|
5
6
|
| ------------- | ---------------------------------------------------------------------------------- | ----------- | ---------- |
|
6
7
|
| **day** | **String** | | [optional] |
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# SematextCloud::AlertRulesResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ----------- | --------------------------------------------------------- | ----------- | ---------- |
|
7
|
+
| **data** | [**AlertRulesResponseEntry**](AlertRulesResponseEntry.md) | | [optional] |
|
8
|
+
| **errors** | [**Array<Error>**](Error.md) | | [optional] |
|
9
|
+
| **message** | **String** | | [optional] |
|
10
|
+
| **success** | **BOOLEAN** | | [optional] |
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# SematextCloud::AlertRulesResponseEntry
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| --------------- | ------------------------------------------ | ----------- | ---------- |
|
7
|
+
| **alert_rules** | [**Array<AlertRule>**](AlertRule.md) | | [optional] |
|