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/BillingInfo.md
CHANGED
@@ -0,0 +1,13 @@
|
|
1
|
+
# SematextCloud::ChargesDetailsResponseDto
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---------------------- | ------------------------------------------------------------ | ----------- | ---------- |
|
7
|
+
| **app** | [**App**](App.md) | | [optional] |
|
8
|
+
| **charge_base** | **String** | | [optional] |
|
9
|
+
| **day_usage_data** | [**Array<DayUsageData>**](DayUsageData.md) | | [optional] |
|
10
|
+
| **monthly_fee_amount** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
11
|
+
| **period_fee_periods** | [**Array<MinPeriodFeePeriod>**](MinPeriodFeePeriod.md) | | [optional] |
|
12
|
+
| **total_amount** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
13
|
+
| **usage_amount** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
data/docs/CloudWatchSettings.md
CHANGED
@@ -0,0 +1,10 @@
|
|
1
|
+
# SematextCloud::CloudWatchSettingsResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ----------- | ------------------------------------------------------------------------- | ----------- | ---------- |
|
7
|
+
| **data** | [**CloudWatchSettingsResponseEntry**](CloudWatchSettingsResponseEntry.md) | | [optional] |
|
8
|
+
| **errors** | [**Array<Error>**](Error.md) | | [optional] |
|
9
|
+
| **message** | **String** | | [optional] |
|
10
|
+
| **success** | **BOOLEAN** | | [optional] |
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# SematextCloud::CloudWatchSettingsResponseEntry
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ------- | ----------------------------------------------- | ----------- | ---------- |
|
7
|
+
| **aws** | [**CloudWatchSettings**](CloudWatchSettings.md) | | [optional] |
|
data/docs/CreateAppInfo.md
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
# SematextCloud::CreateAppInfo
|
2
2
|
|
3
3
|
## Properties
|
4
|
-
|
5
|
-
|
|
6
|
-
|
|
7
|
-
| **
|
8
|
-
| **
|
9
|
-
| **
|
10
|
-
| **
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ------------------- | --------------------------------- | ----------- | ---------- |
|
7
|
+
| **app_type** | **String** | | [optional] |
|
8
|
+
| **discount_code** | **String** | | [optional] |
|
9
|
+
| **initial_plan_id** | **Integer** | | [optional] |
|
10
|
+
| **meta_data** | [**AppMetadata**](AppMetadata.md) | | [optional] |
|
11
|
+
| **name** | **String** | | [optional] |
|
data/docs/CreateTokenDto.md
CHANGED
@@ -1,7 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# SematextCloud::CreateTokenDto
|
2
2
|
|
3
3
|
## Properties
|
4
|
+
|
4
5
|
| Name | Type | Description | Notes |
|
5
6
|
| ------------- | ----------- | ----------- | ---------- |
|
7
|
+
| **name** | **String** | | [optional] |
|
6
8
|
| **readable** | **BOOLEAN** | | [optional] |
|
7
9
|
| **writeable** | **BOOLEAN** | | [optional] |
|
data/docs/DailyDto.md
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# SematextCloud::DailyDto
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ------------------- | ----------- | ----------- | ---------- |
|
7
|
+
| **day** | **Integer** | | [optional] |
|
8
|
+
| **failed** | **Integer** | | [optional] |
|
9
|
+
| **ingested_count** | **Integer** | | [optional] |
|
10
|
+
| **ingested_volume** | **Integer** | | [optional] |
|
11
|
+
| **stored_count** | **Integer** | | [optional] |
|
12
|
+
| **stored_volume** | **Integer** | | [optional] |
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# SematextCloud::DayUsageData
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ----------------------------------- | ------------------------------- | ----------- | ---------- |
|
7
|
+
| **count_daily_data_points** | **Integer** | | [optional] |
|
8
|
+
| **day** | **String** | | [optional] |
|
9
|
+
| **discount** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
10
|
+
| **dpm_per_container_host_quota** | **Integer** | | [optional] |
|
11
|
+
| **dpm_per_host_quota** | **Integer** | | [optional] |
|
12
|
+
| **fixed_monthly_price** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
13
|
+
| **fixed_monthly_price_per_hour** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
14
|
+
| **free_containers_per_host** | **Integer** | | [optional] |
|
15
|
+
| **id** | **Integer** | | [optional] |
|
16
|
+
| **kilo_dpm_overage_price_per_hour** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
17
|
+
| **plan_type** | **String** | | [optional] |
|
18
|
+
| **price_per_container_host_hour** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
19
|
+
| **price_per_container_hour** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
20
|
+
| **price_per_server_hour** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
21
|
+
| **sum_number_of_container_hosts** | **Integer** | | [optional] |
|
22
|
+
| **sum_number_of_containers** | **Integer** | | [optional] |
|
23
|
+
| **sum_number_of_servers** | **Integer** | | [optional] |
|
24
|
+
| **usage_amount** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
25
|
+
| **used_plan** | **String** | | [optional] |
|
26
|
+
| **user_discount** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
data/docs/Dimension.md
ADDED
data/docs/Error.md
CHANGED
data/docs/EventDto.md
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
# SematextCloud::EventDto
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| -------- | ---------- | ----------- | ---------- |
|
7
|
+
| **from** | **Object** | | [optional] |
|
8
|
+
| **to** | **Object** | | [optional] |
|
9
|
+
| **type** | **String** | | [optional] |
|
data/docs/FilterValue.md
CHANGED
data/docs/GenericApiResponse.md
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
# SematextCloud::GenericApiResponse
|
2
2
|
|
3
3
|
## Properties
|
4
|
-
|
5
|
-
|
|
6
|
-
|
|
7
|
-
| **
|
8
|
-
| **
|
9
|
-
| **
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ----------- | ---------------------------------- | ----------- | ---------- |
|
7
|
+
| **data** | **Object** | | [optional] |
|
8
|
+
| **errors** | [**Array<Error>**](Error.md) | | [optional] |
|
9
|
+
| **message** | **String** | | [optional] |
|
10
|
+
| **success** | **BOOLEAN** | | [optional] |
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# SematextCloud::GenericMapBasedApiResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ----------- | ---------------------------------- | ----------- | ---------- |
|
7
|
+
| **data** | **Object** | | [optional] |
|
8
|
+
| **errors** | [**Array<Error>**](Error.md) | | [optional] |
|
9
|
+
| **message** | **String** | | [optional] |
|
10
|
+
| **success** | **BOOLEAN** | | [optional] |
|
data/docs/Invitation.md
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
# SematextCloud::Invitation
|
2
2
|
|
3
3
|
## Properties
|
4
|
+
|
4
5
|
| Name | Type | Description | Notes |
|
5
6
|
| ------------------ | ------------------------------ | ------------------------------------------------- | ---------- |
|
6
|
-
| **app** | [**App**](App.md) |
|
7
|
+
| **app** | [**App**](App.md) | | [optional] |
|
7
8
|
| **apps** | [**Array<App>**](App.md) | For invite request, only apps.id needs to be set. | [optional] |
|
8
9
|
| **id** | **Integer** | | [optional] |
|
9
10
|
| **invite_date** | **DateTime** | | [optional] |
|
data/docs/Invoice.md
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# SematextCloud::Invoice
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---------------- | -------------------------------------------------------------------------- | ----------- | ---------- |
|
7
|
+
| **all_charges** | [**Array<ChargesDetailsResponseDto>**](ChargesDetailsResponseDto.md) | | [optional] |
|
8
|
+
| **invoice_date** | **String** | | [optional] |
|
9
|
+
| **invoice_id** | **String** | | [optional] |
|
10
|
+
| **period** | **String** | | [optional] |
|
11
|
+
| **service** | **String** | | [optional] |
|
12
|
+
| **total_amount** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# SematextCloud::InvoiceResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ----------- | --------------------------------------------------- | ----------- | ---------- |
|
7
|
+
| **data** | [**InvoiceResponseEntry**](InvoiceResponseEntry.md) | | [optional] |
|
8
|
+
| **errors** | [**Array<Error>**](Error.md) | | [optional] |
|
9
|
+
| **message** | **String** | | [optional] |
|
10
|
+
| **success** | **BOOLEAN** | | [optional] |
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# SematextCloud::LimitChangeEventDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| -------------- | ------------ | ----------- | ---------- |
|
7
|
+
| **event_time** | **DateTime** | | [optional] |
|
8
|
+
| **new_limit** | **Integer** | | [optional] |
|
9
|
+
| **old_limit** | **Integer** | | [optional] |
|
data/docs/LogsAppApi.md
CHANGED
@@ -1,18 +1,19 @@
|
|
1
1
|
# SematextCloud::LogsAppApi
|
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
|
| [**create_logsene_application**](LogsAppApi.md#create_logsene_application) | **POST** /logsene-reports/api/v3/apps | Create Logs App |
|
8
8
|
|
9
|
-
|
10
9
|
# **create_logsene_application**
|
11
|
-
|
10
|
+
|
11
|
+
> AppsResponse create_logsene_application(body)
|
12
12
|
|
13
13
|
Create Logs App
|
14
14
|
|
15
15
|
### Example
|
16
|
+
|
16
17
|
```ruby
|
17
18
|
# load the gem
|
18
19
|
require 'SematextCloud'
|
@@ -25,13 +26,12 @@ SematextCloud.configure do |config|
|
|
25
26
|
end
|
26
27
|
|
27
28
|
api_instance = SematextCloud::LogsAppApi.new
|
28
|
-
|
29
|
-
application_details = SematextCloud::CreateAppInfo.new # CreateAppInfo | Details of the application to be created
|
29
|
+
body = SematextCloud::CreateAppInfo.new # CreateAppInfo | Details of the application to be created
|
30
30
|
|
31
31
|
|
32
32
|
begin
|
33
33
|
#Create Logs App
|
34
|
-
result = api_instance.create_logsene_application(
|
34
|
+
result = api_instance.create_logsene_application(body)
|
35
35
|
p result
|
36
36
|
rescue SematextCloud::ApiError => e
|
37
37
|
puts "Exception when calling LogsAppApi->create_logsene_application: #{e}"
|
@@ -40,13 +40,13 @@ end
|
|
40
40
|
|
41
41
|
### Parameters
|
42
42
|
|
43
|
-
| Name
|
44
|
-
|
|
45
|
-
| **
|
43
|
+
| Name | Type | Description | Notes |
|
44
|
+
| -------- | ------------------------------------- | ---------------------------------------- | ----- |
|
45
|
+
| **body** | [**CreateAppInfo**](CreateAppInfo.md) | Details of the application to be created |
|
46
46
|
|
47
47
|
### Return type
|
48
48
|
|
49
|
-
[**
|
49
|
+
[**AppsResponse**](AppsResponse.md)
|
50
50
|
|
51
51
|
### Authorization
|
52
52
|
|
@@ -54,5 +54,5 @@ end
|
|
54
54
|
|
55
55
|
### HTTP request headers
|
56
56
|
|
57
|
-
|
58
|
-
|
57
|
+
- **Content-Type**: application/json
|
58
|
+
- **Accept**: application/json
|
@@ -0,0 +1,62 @@
|
|
1
|
+
# SematextCloud::LogsUsageApiControllerApi
|
2
|
+
|
3
|
+
All URIs are relative to */*
|
4
|
+
|
5
|
+
| Method | HTTP request | Description |
|
6
|
+
| ----------------------------------------------------------------------------------- | -------------------------------------------------------------- | ----------- |
|
7
|
+
| [**get_for_range_using_get**](LogsUsageApiControllerApi.md#get_for_range_using_get) | **GET** /logsene-reports/api/v3/apps/{appId}/usage/{from}/{to} | getForRange |
|
8
|
+
|
9
|
+
# **get_for_range_using_get**
|
10
|
+
|
11
|
+
> UsageResponse get_for_range_using_get(app_id, from, to)
|
12
|
+
|
13
|
+
getForRange
|
14
|
+
|
15
|
+
### Example
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
# load the gem
|
19
|
+
require 'SematextCloud'
|
20
|
+
# setup authorization
|
21
|
+
SematextCloud.configure do |config|
|
22
|
+
# Configure API key authorization: api_key
|
23
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
24
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
25
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
26
|
+
end
|
27
|
+
|
28
|
+
api_instance = SematextCloud::LogsUsageApiControllerApi.new
|
29
|
+
app_id = 789 # Integer | appId
|
30
|
+
from = 789 # Integer | from
|
31
|
+
to = 789 # Integer | to
|
32
|
+
|
33
|
+
|
34
|
+
begin
|
35
|
+
#getForRange
|
36
|
+
result = api_instance.get_for_range_using_get(app_id, from, to)
|
37
|
+
p result
|
38
|
+
rescue SematextCloud::ApiError => e
|
39
|
+
puts "Exception when calling LogsUsageApiControllerApi->get_for_range_using_get: #{e}"
|
40
|
+
end
|
41
|
+
```
|
42
|
+
|
43
|
+
### Parameters
|
44
|
+
|
45
|
+
| Name | Type | Description | Notes |
|
46
|
+
| ---------- | ----------- | ----------- | ----- |
|
47
|
+
| **app_id** | **Integer** | appId |
|
48
|
+
| **from** | **Integer** | from |
|
49
|
+
| **to** | **Integer** | to |
|
50
|
+
|
51
|
+
### Return type
|
52
|
+
|
53
|
+
[**UsageResponse**](UsageResponse.md)
|
54
|
+
|
55
|
+
### Authorization
|
56
|
+
|
57
|
+
[api_key](../README.md#api_key)
|
58
|
+
|
59
|
+
### HTTP request headers
|
60
|
+
|
61
|
+
- **Content-Type**: Not defined
|
62
|
+
- **Accept**: application/json
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# SematextCloud::MailReportResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ----------- | ------------------------------------------------------------------------- | ----------- | ---------- |
|
7
|
+
| **data** | [**MailReportResponseResponseEntry**](MailReportResponseResponseEntry.md) | | [optional] |
|
8
|
+
| **errors** | [**Array<Error>**](Error.md) | | [optional] |
|
9
|
+
| **message** | **String** | | [optional] |
|
10
|
+
| **success** | **BOOLEAN** | | [optional] |
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# SematextCloud::MinPeriodFeePeriod
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ------------------------------- | ------------------------------- | ----------- | ---------- |
|
7
|
+
| **browser_monitors** | **Integer** | | [optional] |
|
8
|
+
| **discount** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
9
|
+
| **from_date** | **DateTime** | | [optional] |
|
10
|
+
| **http_monitors** | **Integer** | | [optional] |
|
11
|
+
| **id** | **Integer** | | [optional] |
|
12
|
+
| **ingestion_period_fee_amount** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
13
|
+
| **min_period_fee_amount** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
14
|
+
| **overage_percentage** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
15
|
+
| **plan_data_limit** | **Integer** | | [optional] |
|
16
|
+
| **storage_period_fee_amount** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
17
|
+
| **to_date** | **DateTime** | | [optional] |
|
18
|
+
| **used_plan** | **String** | | [optional] |
|
19
|
+
| **used_plan_period_fee** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
data/docs/MonitoringAppApi.md
CHANGED
@@ -1,18 +1,19 @@
|
|
1
1
|
# SematextCloud::MonitoringAppApi
|
2
2
|
|
3
|
-
All URIs are relative to
|
3
|
+
All URIs are relative to */*
|
4
4
|
|
5
|
-
| Method
|
6
|
-
|
|
7
|
-
| [**
|
5
|
+
| Method | HTTP request | Description |
|
6
|
+
| ------------------------------------------------------------------------ | --------------------------------- | --------------------- |
|
7
|
+
| [**create_spm_application**](MonitoringAppApi.md#create_spm_application) | **POST** /spm-reports/api/v3/apps | Create Monitoring App |
|
8
8
|
|
9
|
+
# **create_spm_application**
|
9
10
|
|
10
|
-
|
11
|
-
> GenericApiResponse create_spm_application1(application_details)
|
11
|
+
> AppsResponse create_spm_application(body)
|
12
12
|
|
13
13
|
Create Monitoring App
|
14
14
|
|
15
15
|
### Example
|
16
|
+
|
16
17
|
```ruby
|
17
18
|
# load the gem
|
18
19
|
require 'SematextCloud'
|
@@ -25,28 +26,27 @@ SematextCloud.configure do |config|
|
|
25
26
|
end
|
26
27
|
|
27
28
|
api_instance = SematextCloud::MonitoringAppApi.new
|
28
|
-
|
29
|
-
application_details = SematextCloud::CreateAppInfo.new # CreateAppInfo | Details of the application to be created
|
29
|
+
body = SematextCloud::CreateAppInfo.new # CreateAppInfo | Details of the application to be created
|
30
30
|
|
31
31
|
|
32
32
|
begin
|
33
33
|
#Create Monitoring App
|
34
|
-
result = api_instance.
|
34
|
+
result = api_instance.create_spm_application(body)
|
35
35
|
p result
|
36
36
|
rescue SematextCloud::ApiError => e
|
37
|
-
puts "Exception when calling MonitoringAppApi->
|
37
|
+
puts "Exception when calling MonitoringAppApi->create_spm_application: #{e}"
|
38
38
|
end
|
39
39
|
```
|
40
40
|
|
41
41
|
### Parameters
|
42
42
|
|
43
|
-
| Name
|
44
|
-
|
|
45
|
-
| **
|
43
|
+
| Name | Type | Description | Notes |
|
44
|
+
| -------- | ------------------------------------- | ---------------------------------------- | ----- |
|
45
|
+
| **body** | [**CreateAppInfo**](CreateAppInfo.md) | Details of the application to be created |
|
46
46
|
|
47
47
|
### Return type
|
48
48
|
|
49
|
-
[**
|
49
|
+
[**AppsResponse**](AppsResponse.md)
|
50
50
|
|
51
51
|
### Authorization
|
52
52
|
|
@@ -54,5 +54,5 @@ end
|
|
54
54
|
|
55
55
|
### HTTP request headers
|
56
56
|
|
57
|
-
|
58
|
-
|
57
|
+
- **Content-Type**: application/json
|
58
|
+
- **Accept**: application/json
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# SematextCloud::NotificationsResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ----------- | --------------------------------------------------------------- | ----------- | ---------- |
|
7
|
+
| **data** | [**NotificationsResponseEntry**](NotificationsResponseEntry.md) | | [optional] |
|
8
|
+
| **errors** | [**Array<Error>**](Error.md) | | [optional] |
|
9
|
+
| **message** | **String** | | [optional] |
|
10
|
+
| **success** | **BOOLEAN** | | [optional] |
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# SematextCloud::NotificationsResponseEntry
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ----------------- | ---------------------------------------------------------- | ----------- | ---------- |
|
7
|
+
| **_end** | **String** | | [optional] |
|
8
|
+
| **notifications** | [**Array<AlertNotification>**](AlertNotification.md) | | [optional] |
|
9
|
+
| **start** | **String** | | [optional] |
|
data/docs/Plan.md
CHANGED
@@ -1,18 +1,19 @@
|
|
1
1
|
# SematextCloud::Plan
|
2
2
|
|
3
3
|
## Properties
|
4
|
-
|
5
|
-
|
|
6
|
-
|
|
7
|
-
| **
|
8
|
-
| **
|
9
|
-
| **
|
10
|
-
| **
|
11
|
-
| **
|
12
|
-
| **
|
13
|
-
| **
|
14
|
-
| **
|
15
|
-
| **
|
16
|
-
| **
|
17
|
-
| **
|
18
|
-
| **
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ------------------------ | ------------------------------- | ----------- | ---------- |
|
7
|
+
| **app_type** | **String** | | [optional] |
|
8
|
+
| **custom** | **BOOLEAN** | | [optional] |
|
9
|
+
| **data_retention_hours** | [**BigDecimal**](BigDecimal.md) | | [optional] |
|
10
|
+
| **default_trial_plan** | **BOOLEAN** | | [optional] |
|
11
|
+
| **free** | **BOOLEAN** | | [optional] |
|
12
|
+
| **free_trial_days** | **Integer** | | [optional] |
|
13
|
+
| **id** | **Integer** | | [optional] |
|
14
|
+
| **max_alerts** | **Integer** | | [optional] |
|
15
|
+
| **max_daily_events** | **Integer** | | [optional] |
|
16
|
+
| **name** | **String** | | [optional] |
|
17
|
+
| **plan_scheme** | **String** | | [optional] |
|
18
|
+
| **sematext_service** | **String** | | [optional] |
|
19
|
+
| **trial_plan** | **BOOLEAN** | | [optional] |
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# SematextCloud::PlansResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ----------- | ----------------------------------------------- | ----------- | ---------- |
|
7
|
+
| **data** | [**PlansResponseEntry**](PlansResponseEntry.md) | | [optional] |
|
8
|
+
| **errors** | [**Array<Error>**](Error.md) | | [optional] |
|
9
|
+
| **message** | **String** | | [optional] |
|
10
|
+
| **success** | **BOOLEAN** | | [optional] |
|
data/docs/ReportInfo.md
CHANGED
@@ -1,13 +1,15 @@
|
|
1
1
|
# SematextCloud::ReportInfo
|
2
2
|
|
3
3
|
## Properties
|
4
|
-
|
5
|
-
|
|
6
|
-
|
|
7
|
-
| **
|
8
|
-
| **
|
9
|
-
| **
|
10
|
-
| **
|
11
|
-
| **
|
12
|
-
| **
|
13
|
-
| **
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| --------------------- | ------------ | --------------------------------------- | ---------- |
|
7
|
+
| **additional_params** | **String** | | [optional] |
|
8
|
+
| **addresses** | **String** | Comma separated list of email addresses | [optional] |
|
9
|
+
| **app_id** | **Integer** | | [optional] |
|
10
|
+
| **end_date** | **DateTime** | | [optional] |
|
11
|
+
| **filters** | **String** | | [optional] |
|
12
|
+
| **report_name** | **String** | | [optional] |
|
13
|
+
| **start_date** | **DateTime** | | [optional] |
|
14
|
+
| **subject** | **String** | | [optional] |
|
15
|
+
| **text** | **String** | | [optional] |
|