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
data/docs/MetricsApi.md
DELETED
@@ -1,227 +0,0 @@
|
|
1
|
-
# SematextCloud::MetricsApi
|
2
|
-
|
3
|
-
All URIs are relative to *https://localhost*
|
4
|
-
|
5
|
-
| Method | HTTP request | Description |
|
6
|
-
| ---------------------------------------------------------------------------- | --------------------------------------------------------- | ----------------------------------------------- |
|
7
|
-
| [**list_data_series_using_post**](MetricsApi.md#list_data_series_using_post) | **POST** /spm-reports/api/v3/apps/{appId}/metrics/data | Get metrics data points for an app |
|
8
|
-
| [**list_filters_using_post**](MetricsApi.md#list_filters_using_post) | **POST** /spm-reports/api/v3/apps/{appId}/metrics/filters | Get metrics filters and their values for an app |
|
9
|
-
| [**list_metrics_keys_using_get**](MetricsApi.md#list_metrics_keys_using_get) | **GET** /spm-reports/api/v3/apps/{appId}/metrics/keys | Get metrics keys for an app |
|
10
|
-
| [**list_metrics_using_get**](MetricsApi.md#list_metrics_using_get) | **GET** /spm-reports/api/v3/apps/{appId}/metrics | Get metrics info for an app |
|
11
|
-
|
12
|
-
|
13
|
-
# **list_data_series_using_post**
|
14
|
-
> GenericApiResponse list_data_series_using_post(app_id, request_body)
|
15
|
-
|
16
|
-
Get metrics data points for an app
|
17
|
-
|
18
|
-
Default value of interval is 5m
|
19
|
-
|
20
|
-
### Example
|
21
|
-
```ruby
|
22
|
-
# load the gem
|
23
|
-
require 'SematextCloud'
|
24
|
-
# setup authorization
|
25
|
-
SematextCloud.configure do |config|
|
26
|
-
# Configure API key authorization: api_key
|
27
|
-
config.api_key['Authorization'] = 'YOUR API KEY'
|
28
|
-
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
29
|
-
#config.api_key_prefix['Authorization'] = 'Bearer'
|
30
|
-
end
|
31
|
-
|
32
|
-
api_instance = SematextCloud::MetricsApi.new
|
33
|
-
|
34
|
-
app_id = 789 # Integer | appId
|
35
|
-
|
36
|
-
request_body = SematextCloud::DataSeriesRequest.new # DataSeriesRequest | Metric data points request
|
37
|
-
|
38
|
-
|
39
|
-
begin
|
40
|
-
#Get metrics data points for an app
|
41
|
-
result = api_instance.list_data_series_using_post(app_id, request_body)
|
42
|
-
p result
|
43
|
-
rescue SematextCloud::ApiError => e
|
44
|
-
puts "Exception when calling MetricsApi->list_data_series_using_post: #{e}"
|
45
|
-
end
|
46
|
-
```
|
47
|
-
|
48
|
-
### Parameters
|
49
|
-
|
50
|
-
| Name | Type | Description | Notes |
|
51
|
-
| ---------------- | --------------------------------------------- | -------------------------- | ----- |
|
52
|
-
| **app_id** | **Integer** | appId |
|
53
|
-
| **request_body** | [**DataSeriesRequest**](DataSeriesRequest.md) | Metric data points request |
|
54
|
-
|
55
|
-
### Return type
|
56
|
-
|
57
|
-
[**GenericApiResponse**](GenericApiResponse.md)
|
58
|
-
|
59
|
-
### Authorization
|
60
|
-
|
61
|
-
[api_key](../README.md#api_key)
|
62
|
-
|
63
|
-
### HTTP request headers
|
64
|
-
|
65
|
-
- **Content-Type**: application/json
|
66
|
-
- **Accept**: application/json
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
# **list_filters_using_post**
|
71
|
-
> GenericApiResponse list_filters_using_post(app_id, request_body)
|
72
|
-
|
73
|
-
Get metrics filters and their values for an app
|
74
|
-
|
75
|
-
Default value of interval is 5m
|
76
|
-
|
77
|
-
### Example
|
78
|
-
```ruby
|
79
|
-
# load the gem
|
80
|
-
require 'SematextCloud'
|
81
|
-
# setup authorization
|
82
|
-
SematextCloud.configure do |config|
|
83
|
-
# Configure API key authorization: api_key
|
84
|
-
config.api_key['Authorization'] = 'YOUR API KEY'
|
85
|
-
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
86
|
-
#config.api_key_prefix['Authorization'] = 'Bearer'
|
87
|
-
end
|
88
|
-
|
89
|
-
api_instance = SematextCloud::MetricsApi.new
|
90
|
-
|
91
|
-
app_id = 789 # Integer | appId
|
92
|
-
|
93
|
-
request_body = SematextCloud::DataSeriesRequest.new # DataSeriesRequest | Metric filters request
|
94
|
-
|
95
|
-
|
96
|
-
begin
|
97
|
-
#Get metrics filters and their values for an app
|
98
|
-
result = api_instance.list_filters_using_post(app_id, request_body)
|
99
|
-
p result
|
100
|
-
rescue SematextCloud::ApiError => e
|
101
|
-
puts "Exception when calling MetricsApi->list_filters_using_post: #{e}"
|
102
|
-
end
|
103
|
-
```
|
104
|
-
|
105
|
-
### Parameters
|
106
|
-
|
107
|
-
| Name | Type | Description | Notes |
|
108
|
-
| ---------------- | --------------------------------------------- | ---------------------- | ----- |
|
109
|
-
| **app_id** | **Integer** | appId |
|
110
|
-
| **request_body** | [**DataSeriesRequest**](DataSeriesRequest.md) | Metric filters request |
|
111
|
-
|
112
|
-
### Return type
|
113
|
-
|
114
|
-
[**GenericApiResponse**](GenericApiResponse.md)
|
115
|
-
|
116
|
-
### Authorization
|
117
|
-
|
118
|
-
[api_key](../README.md#api_key)
|
119
|
-
|
120
|
-
### HTTP request headers
|
121
|
-
|
122
|
-
- **Content-Type**: application/json
|
123
|
-
- **Accept**: application/json
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
# **list_metrics_keys_using_get**
|
128
|
-
> GenericApiResponse list_metrics_keys_using_get(app_id)
|
129
|
-
|
130
|
-
Get metrics keys for an app
|
131
|
-
|
132
|
-
### Example
|
133
|
-
```ruby
|
134
|
-
# load the gem
|
135
|
-
require 'SematextCloud'
|
136
|
-
# setup authorization
|
137
|
-
SematextCloud.configure do |config|
|
138
|
-
# Configure API key authorization: api_key
|
139
|
-
config.api_key['Authorization'] = 'YOUR API KEY'
|
140
|
-
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
141
|
-
#config.api_key_prefix['Authorization'] = 'Bearer'
|
142
|
-
end
|
143
|
-
|
144
|
-
api_instance = SematextCloud::MetricsApi.new
|
145
|
-
|
146
|
-
app_id = 789 # Integer | appId
|
147
|
-
|
148
|
-
|
149
|
-
begin
|
150
|
-
#Get metrics keys for an app
|
151
|
-
result = api_instance.list_metrics_keys_using_get(app_id)
|
152
|
-
p result
|
153
|
-
rescue SematextCloud::ApiError => e
|
154
|
-
puts "Exception when calling MetricsApi->list_metrics_keys_using_get: #{e}"
|
155
|
-
end
|
156
|
-
```
|
157
|
-
|
158
|
-
### Parameters
|
159
|
-
|
160
|
-
| Name | Type | Description | Notes |
|
161
|
-
| ---------- | ----------- | ----------- | ----- |
|
162
|
-
| **app_id** | **Integer** | appId |
|
163
|
-
|
164
|
-
### Return type
|
165
|
-
|
166
|
-
[**GenericApiResponse**](GenericApiResponse.md)
|
167
|
-
|
168
|
-
### Authorization
|
169
|
-
|
170
|
-
[api_key](../README.md#api_key)
|
171
|
-
|
172
|
-
### HTTP request headers
|
173
|
-
|
174
|
-
- **Content-Type**: application/json
|
175
|
-
- **Accept**: application/json
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
# **list_metrics_using_get**
|
180
|
-
> GenericApiResponse list_metrics_using_get(app_id)
|
181
|
-
|
182
|
-
Get metrics info for an app
|
183
|
-
|
184
|
-
### Example
|
185
|
-
```ruby
|
186
|
-
# load the gem
|
187
|
-
require 'SematextCloud'
|
188
|
-
# setup authorization
|
189
|
-
SematextCloud.configure do |config|
|
190
|
-
# Configure API key authorization: api_key
|
191
|
-
config.api_key['Authorization'] = 'YOUR API KEY'
|
192
|
-
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
193
|
-
#config.api_key_prefix['Authorization'] = 'Bearer'
|
194
|
-
end
|
195
|
-
|
196
|
-
api_instance = SematextCloud::MetricsApi.new
|
197
|
-
|
198
|
-
app_id = 789 # Integer | appId
|
199
|
-
|
200
|
-
|
201
|
-
begin
|
202
|
-
#Get metrics info for an app
|
203
|
-
result = api_instance.list_metrics_using_get(app_id)
|
204
|
-
p result
|
205
|
-
rescue SematextCloud::ApiError => e
|
206
|
-
puts "Exception when calling MetricsApi->list_metrics_using_get: #{e}"
|
207
|
-
end
|
208
|
-
```
|
209
|
-
|
210
|
-
### Parameters
|
211
|
-
|
212
|
-
| Name | Type | Description | Notes |
|
213
|
-
| ---------- | ----------- | ----------- | ----- |
|
214
|
-
| **app_id** | **Integer** | appId |
|
215
|
-
|
216
|
-
### Return type
|
217
|
-
|
218
|
-
[**GenericApiResponse**](GenericApiResponse.md)
|
219
|
-
|
220
|
-
### Authorization
|
221
|
-
|
222
|
-
[api_key](../README.md#api_key)
|
223
|
-
|
224
|
-
### HTTP request headers
|
225
|
-
|
226
|
-
- **Content-Type**: application/json
|
227
|
-
- **Accept**: application/json
|
data/docs/SavedQueriesApi.md
DELETED
@@ -1,220 +0,0 @@
|
|
1
|
-
# SematextCloud::SavedQueriesApi
|
2
|
-
|
3
|
-
All URIs are relative to *https://localhost*
|
4
|
-
|
5
|
-
| Method | HTTP request | Description |
|
6
|
-
| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------- | ---------------------------- |
|
7
|
-
| [**delete_saved_query_using_delete**](SavedQueriesApi.md#delete_saved_query_using_delete) | **DELETE** /users-web/api/v3/savedQueries/{updateableQueryId} | Delete saved query |
|
8
|
-
| [**get_saved_queries_for_app_using_get**](SavedQueriesApi.md#get_saved_queries_for_app_using_get) | **GET** /users-web/api/v3/apps/{appId}/savedQueries | Get saved queries for an app |
|
9
|
-
| [**save_query_using_post**](SavedQueriesApi.md#save_query_using_post) | **POST** /users-web/api/v3/savedQueries | Create saved query |
|
10
|
-
| [**save_query_using_put**](SavedQueriesApi.md#save_query_using_put) | **PUT** /users-web/api/v3/savedQueries/{updateableQueryId} | Update saved query |
|
11
|
-
|
12
|
-
|
13
|
-
# **delete_saved_query_using_delete**
|
14
|
-
> GenericApiResponse delete_saved_query_using_delete(updateable_query_id)
|
15
|
-
|
16
|
-
Delete saved query
|
17
|
-
|
18
|
-
### Example
|
19
|
-
```ruby
|
20
|
-
# load the gem
|
21
|
-
require 'SematextCloud'
|
22
|
-
# setup authorization
|
23
|
-
SematextCloud.configure do |config|
|
24
|
-
# Configure API key authorization: api_key
|
25
|
-
config.api_key['Authorization'] = 'YOUR API KEY'
|
26
|
-
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
27
|
-
#config.api_key_prefix['Authorization'] = 'Bearer'
|
28
|
-
end
|
29
|
-
|
30
|
-
api_instance = SematextCloud::SavedQueriesApi.new
|
31
|
-
|
32
|
-
updateable_query_id = 789 # Integer | updateableQueryId
|
33
|
-
|
34
|
-
|
35
|
-
begin
|
36
|
-
#Delete saved query
|
37
|
-
result = api_instance.delete_saved_query_using_delete(updateable_query_id)
|
38
|
-
p result
|
39
|
-
rescue SematextCloud::ApiError => e
|
40
|
-
puts "Exception when calling SavedQueriesApi->delete_saved_query_using_delete: #{e}"
|
41
|
-
end
|
42
|
-
```
|
43
|
-
|
44
|
-
### Parameters
|
45
|
-
|
46
|
-
| Name | Type | Description | Notes |
|
47
|
-
| ----------------------- | ----------- | ----------------- | ----- |
|
48
|
-
| **updateable_query_id** | **Integer** | updateableQueryId |
|
49
|
-
|
50
|
-
### Return type
|
51
|
-
|
52
|
-
[**GenericApiResponse**](GenericApiResponse.md)
|
53
|
-
|
54
|
-
### Authorization
|
55
|
-
|
56
|
-
[api_key](../README.md#api_key)
|
57
|
-
|
58
|
-
### HTTP request headers
|
59
|
-
|
60
|
-
- **Content-Type**: application/json
|
61
|
-
- **Accept**: application/json
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
# **get_saved_queries_for_app_using_get**
|
66
|
-
> GenericApiResponse get_saved_queries_for_app_using_get(app_id)
|
67
|
-
|
68
|
-
Get saved queries for an app
|
69
|
-
|
70
|
-
### Example
|
71
|
-
```ruby
|
72
|
-
# load the gem
|
73
|
-
require 'SematextCloud'
|
74
|
-
# setup authorization
|
75
|
-
SematextCloud.configure do |config|
|
76
|
-
# Configure API key authorization: api_key
|
77
|
-
config.api_key['Authorization'] = 'YOUR API KEY'
|
78
|
-
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
79
|
-
#config.api_key_prefix['Authorization'] = 'Bearer'
|
80
|
-
end
|
81
|
-
|
82
|
-
api_instance = SematextCloud::SavedQueriesApi.new
|
83
|
-
|
84
|
-
app_id = 789 # Integer | appId
|
85
|
-
|
86
|
-
|
87
|
-
begin
|
88
|
-
#Get saved queries for an app
|
89
|
-
result = api_instance.get_saved_queries_for_app_using_get(app_id)
|
90
|
-
p result
|
91
|
-
rescue SematextCloud::ApiError => e
|
92
|
-
puts "Exception when calling SavedQueriesApi->get_saved_queries_for_app_using_get: #{e}"
|
93
|
-
end
|
94
|
-
```
|
95
|
-
|
96
|
-
### Parameters
|
97
|
-
|
98
|
-
| Name | Type | Description | Notes |
|
99
|
-
| ---------- | ----------- | ----------- | ----- |
|
100
|
-
| **app_id** | **Integer** | appId |
|
101
|
-
|
102
|
-
### Return type
|
103
|
-
|
104
|
-
[**GenericApiResponse**](GenericApiResponse.md)
|
105
|
-
|
106
|
-
### Authorization
|
107
|
-
|
108
|
-
[api_key](../README.md#api_key)
|
109
|
-
|
110
|
-
### HTTP request headers
|
111
|
-
|
112
|
-
- **Content-Type**: application/json
|
113
|
-
- **Accept**: application/json
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
# **save_query_using_post**
|
118
|
-
> GenericApiResponse save_query_using_post(saved_query_dto)
|
119
|
-
|
120
|
-
Create saved query
|
121
|
-
|
122
|
-
### Example
|
123
|
-
```ruby
|
124
|
-
# load the gem
|
125
|
-
require 'SematextCloud'
|
126
|
-
# setup authorization
|
127
|
-
SematextCloud.configure do |config|
|
128
|
-
# Configure API key authorization: api_key
|
129
|
-
config.api_key['Authorization'] = 'YOUR API KEY'
|
130
|
-
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
131
|
-
#config.api_key_prefix['Authorization'] = 'Bearer'
|
132
|
-
end
|
133
|
-
|
134
|
-
api_instance = SematextCloud::SavedQueriesApi.new
|
135
|
-
|
136
|
-
saved_query_dto = SematextCloud::SavedQuery.new # SavedQuery | savedQueryDto
|
137
|
-
|
138
|
-
|
139
|
-
begin
|
140
|
-
#Create saved query
|
141
|
-
result = api_instance.save_query_using_post(saved_query_dto)
|
142
|
-
p result
|
143
|
-
rescue SematextCloud::ApiError => e
|
144
|
-
puts "Exception when calling SavedQueriesApi->save_query_using_post: #{e}"
|
145
|
-
end
|
146
|
-
```
|
147
|
-
|
148
|
-
### Parameters
|
149
|
-
|
150
|
-
| Name | Type | Description | Notes |
|
151
|
-
| ------------------- | ------------------------------- | ------------- | ----- |
|
152
|
-
| **saved_query_dto** | [**SavedQuery**](SavedQuery.md) | savedQueryDto |
|
153
|
-
|
154
|
-
### Return type
|
155
|
-
|
156
|
-
[**GenericApiResponse**](GenericApiResponse.md)
|
157
|
-
|
158
|
-
### Authorization
|
159
|
-
|
160
|
-
[api_key](../README.md#api_key)
|
161
|
-
|
162
|
-
### HTTP request headers
|
163
|
-
|
164
|
-
- **Content-Type**: application/json
|
165
|
-
- **Accept**: application/json
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
# **save_query_using_put**
|
170
|
-
> GenericApiResponse save_query_using_put(saved_query_dto, updateable_query_id)
|
171
|
-
|
172
|
-
Update saved query
|
173
|
-
|
174
|
-
### Example
|
175
|
-
```ruby
|
176
|
-
# load the gem
|
177
|
-
require 'SematextCloud'
|
178
|
-
# setup authorization
|
179
|
-
SematextCloud.configure do |config|
|
180
|
-
# Configure API key authorization: api_key
|
181
|
-
config.api_key['Authorization'] = 'YOUR API KEY'
|
182
|
-
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
183
|
-
#config.api_key_prefix['Authorization'] = 'Bearer'
|
184
|
-
end
|
185
|
-
|
186
|
-
api_instance = SematextCloud::SavedQueriesApi.new
|
187
|
-
|
188
|
-
saved_query_dto = SematextCloud::SavedQuery.new # SavedQuery | savedQueryDto
|
189
|
-
|
190
|
-
updateable_query_id = 789 # Integer | updateableQueryId
|
191
|
-
|
192
|
-
|
193
|
-
begin
|
194
|
-
#Update saved query
|
195
|
-
result = api_instance.save_query_using_put(saved_query_dto, updateable_query_id)
|
196
|
-
p result
|
197
|
-
rescue SematextCloud::ApiError => e
|
198
|
-
puts "Exception when calling SavedQueriesApi->save_query_using_put: #{e}"
|
199
|
-
end
|
200
|
-
```
|
201
|
-
|
202
|
-
### Parameters
|
203
|
-
|
204
|
-
| Name | Type | Description | Notes |
|
205
|
-
| ----------------------- | ------------------------------- | ----------------- | ----- |
|
206
|
-
| **saved_query_dto** | [**SavedQuery**](SavedQuery.md) | savedQueryDto |
|
207
|
-
| **updateable_query_id** | **Integer** | updateableQueryId |
|
208
|
-
|
209
|
-
### Return type
|
210
|
-
|
211
|
-
[**GenericApiResponse**](GenericApiResponse.md)
|
212
|
-
|
213
|
-
### Authorization
|
214
|
-
|
215
|
-
[api_key](../README.md#api_key)
|
216
|
-
|
217
|
-
### HTTP request headers
|
218
|
-
|
219
|
-
- **Content-Type**: application/json
|
220
|
-
- **Accept**: application/json
|
data/docs/SavedQuery.md
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
# SematextCloud::SavedQuery
|
2
|
-
|
3
|
-
## Properties
|
4
|
-
| Name | Type | Description | Notes |
|
5
|
-
| ---------------------- | ----------------------------------------- | ----------- | ---------- |
|
6
|
-
| **alert_rule** | [**AlertRule**](AlertRule.md) | | [optional] |
|
7
|
-
| **allow_modification** | **BOOLEAN** | | [optional] |
|
8
|
-
| **application_id** | **String** | | [optional] |
|
9
|
-
| **application_name** | **String** | | [optional] |
|
10
|
-
| **application_token** | **String** | | [optional] |
|
11
|
-
| **creator_email** | **String** | | [optional] |
|
12
|
-
| **id** | **String** | | [optional] |
|
13
|
-
| **label_color** | **String** | | [optional] |
|
14
|
-
| **logsene_alert_type** | **Object** | | [optional] |
|
15
|
-
| **owner_email** | **String** | | [optional] |
|
16
|
-
| **query_name** | **String** | | [optional] |
|
17
|
-
| **query_string** | **String** | | [optional] |
|
18
|
-
| **user_permissions** | [**UserPermissions**](UserPermissions.md) | | [optional] |
|