SematextCloud 0.1.0 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/README.md +135 -72
  4. data/SematextCloud.gemspec +2 -2
  5. data/docs/AlertNotificationRequest.md +6 -6
  6. data/docs/AlertNotificationsApi.md +11 -11
  7. data/docs/AlertRule.md +50 -50
  8. data/docs/AlertRuleScheduleTimeRangeDto.md +4 -4
  9. data/docs/AlertRuleScheduleWeekdayDto.md +7 -7
  10. data/docs/AlertsApi.md +22 -22
  11. data/docs/App.md +33 -29
  12. data/docs/AppDescription.md +3 -3
  13. data/docs/AppMetadata.md +7 -7
  14. data/docs/AppsApi.md +23 -23
  15. data/docs/AwsSettingsControllerApi.md +7 -7
  16. data/docs/BasicAuthMethodDto.md +4 -4
  17. data/docs/BasicOrganizationDto.md +6 -6
  18. data/docs/BillingApi.md +18 -18
  19. data/docs/BillingInfo.md +5 -5
  20. data/docs/CloudWatchSettings.md +6 -6
  21. data/docs/CreateAppInfo.md +7 -7
  22. data/docs/CreateTokenDto.md +7 -0
  23. data/docs/DataSeriesFilter.md +5 -5
  24. data/docs/DataSeriesRequest.md +9 -9
  25. data/docs/Error.md +4 -4
  26. data/docs/FilterValue.md +8 -8
  27. data/docs/GenericApiResponse.md +6 -6
  28. data/docs/Invitation.md +12 -12
  29. data/docs/LogsAppApi.md +6 -6
  30. data/docs/MetricsApi.md +20 -20
  31. data/docs/MonitoringAppApi.md +6 -6
  32. data/docs/NotificationIntegration.md +12 -12
  33. data/docs/Plan.md +15 -15
  34. data/docs/ReportInfo.md +10 -10
  35. data/docs/ResetPasswordApi.md +6 -6
  36. data/docs/SavedQueriesApi.md +19 -19
  37. data/docs/SavedQuery.md +15 -15
  38. data/docs/ServiceIntegration.md +14 -14
  39. data/docs/SubscriptionDashboardDto.md +16 -0
  40. data/docs/SubscriptionDto.md +17 -0
  41. data/docs/SubscriptionsApi.md +468 -32
  42. data/docs/TagApiControllerApi.md +34 -34
  43. data/docs/TokensApiControllerApi.md +285 -0
  44. data/docs/UpdateAppInfo.md +11 -11
  45. data/docs/UpdateSubscriptionDto.md +6 -0
  46. data/docs/UpdateTokenDto.md +6 -0
  47. data/docs/UserInfo.md +3 -3
  48. data/docs/UserPermissions.md +5 -5
  49. data/docs/UserRole.md +5 -5
  50. data/lib/SematextCloud/api/apps_api.rb +52 -0
  51. data/lib/SematextCloud/api/subscriptions_api.rb +463 -17
  52. data/lib/SematextCloud/api/tokens_api_controller_api.rb +313 -0
  53. data/lib/SematextCloud/models/create_token_dto.rb +192 -0
  54. data/lib/SematextCloud/models/subscription_dashboard_dto.rb +319 -0
  55. data/lib/SematextCloud/models/subscription_dto.rb +328 -0
  56. data/lib/SematextCloud/models/update_subscription_dto.rb +183 -0
  57. data/lib/SematextCloud/models/update_token_dto.rb +183 -0
  58. data/lib/SematextCloud/version.rb +1 -1
  59. data/spec/api/tokens_api_controller_api_spec.rb +95 -0
  60. data/spec/models/create_token_dto_spec.rb +47 -0
  61. data/spec/models/subscription_dashboard_dto_spec.rb +109 -0
  62. data/spec/models/subscription_dto_spec.rb +115 -0
  63. data/spec/models/update_subscription_dto_spec.rb +41 -0
  64. data/spec/models/update_token_dto_spec.rb +41 -0
  65. metadata +54 -29
@@ -0,0 +1,7 @@
1
+ # stcloud::CreateTokenDto
2
+
3
+ ## Properties
4
+ | Name | Type | Description | Notes |
5
+ | ------------- | ----------- | ----------- | ---------- |
6
+ | **readable** | **BOOLEAN** | | [optional] |
7
+ | **writeable** | **BOOLEAN** | | [optional] |
@@ -1,8 +1,8 @@
1
1
  # SematextCloud::DataSeriesFilter
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **aggregation** | **String** | | [optional]
7
- **multi_value** | **BOOLEAN** | | [optional]
8
- **values** | **Array<String>** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | --------------- | ----------------------- | ----------- | ---------- |
6
+ | **aggregation** | **String** | | [optional] |
7
+ | **multi_value** | **BOOLEAN** | | [optional] |
8
+ | **values** | **Array<String>** | | [optional] |
@@ -1,12 +1,12 @@
1
1
  # SematextCloud::DataSeriesRequest
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **default_interval** | **Integer** | | [optional]
7
- **_end** | **String** | End time of interval. Can be expressed as timestamp in milliseconds or UTC date in yyyy-MM-dd HH:mm:ss format | [optional]
8
- **filters** | [**Hash<String, DataSeriesFilter>**](DataSeriesFilter.md) | Map of allowed filter values and aggregation strategy. List of available filter values can be fetched using metric filters endpoint and default aggregation strategy depends on metric | [optional]
9
- **granularity** | **String** | Data points interval granularity between two data points.Default value is \"AUTO\" - calculated based on selected time span. Not required while getting filters. | [optional]
10
- **interval** | **String** | | [optional]
11
- **metric** | **String** | Metric name or metric group prefix |
12
- **start** | **String** | Start time of interval. Can be expressed as timestamp in milliseconds or UTC date in yyyy-MM-dd HH:mm:ss format | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | -------------------- | --------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- |
6
+ | **default_interval** | **Integer** | | [optional] |
7
+ | **_end** | **String** | End time of interval. Can be expressed as timestamp in milliseconds or UTC date in yyyy-MM-dd HH:mm:ss format | [optional] |
8
+ | **filters** | [**Hash<String, DataSeriesFilter>**](DataSeriesFilter.md) | Map of allowed filter values and aggregation strategy. List of available filter values can be fetched using metric filters endpoint and default aggregation strategy depends on metric | [optional] |
9
+ | **granularity** | **String** | Data points interval granularity between two data points.Default value is \"AUTO\" - calculated based on selected time span. Not required while getting filters. | [optional] |
10
+ | **interval** | **String** | | [optional] |
11
+ | **metric** | **String** | Metric name or metric group prefix |
12
+ | **start** | **String** | Start time of interval. Can be expressed as timestamp in milliseconds or UTC date in yyyy-MM-dd HH:mm:ss format | [optional] |
@@ -1,7 +1,7 @@
1
1
  # SematextCloud::Error
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **code** | **String** | | [optional]
7
- **message** | **String** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | ----------- | ---------- | ----------- | ---------- |
6
+ | **code** | **String** | | [optional] |
7
+ | **message** | **String** | | [optional] |
@@ -1,11 +1,11 @@
1
1
  # SematextCloud::FilterValue
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **agg_type** | **String** | | [optional]
7
- **filter_name** | **String** | | [optional]
8
- **key** | **String** | | [optional]
9
- **label** | **String** | | [optional]
10
- **name** | **String** | | [optional]
11
- **values** | **Array<String>** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | --------------- | ----------------------- | ----------- | ---------- |
6
+ | **agg_type** | **String** | | [optional] |
7
+ | **filter_name** | **String** | | [optional] |
8
+ | **key** | **String** | | [optional] |
9
+ | **label** | **String** | | [optional] |
10
+ | **name** | **String** | | [optional] |
11
+ | **values** | **Array<String>** | | [optional] |
@@ -1,9 +1,9 @@
1
1
  # SematextCloud::GenericApiResponse
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **data** | **Object** | Contains actual data when response is successful. Key and Value is specific to each endpoint | [optional]
7
- **errors** | [**Array<Error>**](Error.md) | | [optional]
8
- **message** | **String** | | [optional]
9
- **success** | **BOOLEAN** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | ----------- | ---------------------------------- | -------------------------------------------------------------------------------------------- | ---------- |
6
+ | **data** | **Object** | Contains actual data when response is successful. Key and Value is specific to each endpoint | [optional] |
7
+ | **errors** | [**Array<Error>**](Error.md) | | [optional] |
8
+ | **message** | **String** | | [optional] |
9
+ | **success** | **BOOLEAN** | | [optional] |
@@ -1,15 +1,15 @@
1
1
  # SematextCloud::Invitation
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **app** | [**App**](App.md) | For invite request, only app.id needs to be set. | [optional]
7
- **apps** | [**Array<App>**](App.md) | For invite request, only apps.id needs to be set. | [optional]
8
- **id** | **Integer** | | [optional]
9
- **invite_date** | **DateTime** | | [optional]
10
- **invite_status** | **String** | | [optional]
11
- **invitee_email** | **String** | | [optional]
12
- **invitee_role** | **String** | | [optional]
13
- **invitee_status** | **String** | | [optional]
14
- **inviter_email** | **String** | | [optional]
15
- **uuid** | **String** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | ------------------ | ------------------------------ | ------------------------------------------------- | ---------- |
6
+ | **app** | [**App**](App.md) | For invite request, only app.id needs to be set. | [optional] |
7
+ | **apps** | [**Array<App>**](App.md) | For invite request, only apps.id needs to be set. | [optional] |
8
+ | **id** | **Integer** | | [optional] |
9
+ | **invite_date** | **DateTime** | | [optional] |
10
+ | **invite_status** | **String** | | [optional] |
11
+ | **invitee_email** | **String** | | [optional] |
12
+ | **invitee_role** | **String** | | [optional] |
13
+ | **invitee_status** | **String** | | [optional] |
14
+ | **inviter_email** | **String** | | [optional] |
15
+ | **uuid** | **String** | | [optional] |
@@ -2,9 +2,9 @@
2
2
 
3
3
  All URIs are relative to *https://localhost*
4
4
 
5
- Method | HTTP request | Description
6
- ------------- | ------------- | -------------
7
- [**create_logsene_application**](LogsAppApi.md#create_logsene_application) | **POST** /logsene-reports/api/v3/apps | Create Logs App
5
+ | Method | HTTP request | Description |
6
+ | -------------------------------------------------------------------------- | ------------------------------------- | --------------- |
7
+ | [**create_logsene_application**](LogsAppApi.md#create_logsene_application) | **POST** /logsene-reports/api/v3/apps | Create Logs App |
8
8
 
9
9
 
10
10
  # **create_logsene_application**
@@ -40,9 +40,9 @@ end
40
40
 
41
41
  ### Parameters
42
42
 
43
- Name | Type | Description | Notes
44
- ------------- | ------------- | ------------- | -------------
45
- **application_details** | [**CreateAppInfo**](CreateAppInfo.md)| Details of the application to be created |
43
+ | Name | Type | Description | Notes |
44
+ | ----------------------- | ------------------------------------- | ---------------------------------------- | ----- |
45
+ | **application_details** | [**CreateAppInfo**](CreateAppInfo.md) | Details of the application to be created |
46
46
 
47
47
  ### Return type
48
48
 
@@ -2,12 +2,12 @@
2
2
 
3
3
  All URIs are relative to *https://localhost*
4
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
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
11
 
12
12
 
13
13
  # **list_data_series_using_post**
@@ -47,10 +47,10 @@ end
47
47
 
48
48
  ### Parameters
49
49
 
50
- Name | Type | Description | Notes
51
- ------------- | ------------- | ------------- | -------------
52
- **app_id** | **Integer**| appId |
53
- **request_body** | [**DataSeriesRequest**](DataSeriesRequest.md)| Metric data points request |
50
+ | Name | Type | Description | Notes |
51
+ | ---------------- | --------------------------------------------- | -------------------------- | ----- |
52
+ | **app_id** | **Integer** | appId |
53
+ | **request_body** | [**DataSeriesRequest**](DataSeriesRequest.md) | Metric data points request |
54
54
 
55
55
  ### Return type
56
56
 
@@ -104,10 +104,10 @@ end
104
104
 
105
105
  ### Parameters
106
106
 
107
- Name | Type | Description | Notes
108
- ------------- | ------------- | ------------- | -------------
109
- **app_id** | **Integer**| appId |
110
- **request_body** | [**DataSeriesRequest**](DataSeriesRequest.md)| Metric filters request |
107
+ | Name | Type | Description | Notes |
108
+ | ---------------- | --------------------------------------------- | ---------------------- | ----- |
109
+ | **app_id** | **Integer** | appId |
110
+ | **request_body** | [**DataSeriesRequest**](DataSeriesRequest.md) | Metric filters request |
111
111
 
112
112
  ### Return type
113
113
 
@@ -157,9 +157,9 @@ end
157
157
 
158
158
  ### Parameters
159
159
 
160
- Name | Type | Description | Notes
161
- ------------- | ------------- | ------------- | -------------
162
- **app_id** | **Integer**| appId |
160
+ | Name | Type | Description | Notes |
161
+ | ---------- | ----------- | ----------- | ----- |
162
+ | **app_id** | **Integer** | appId |
163
163
 
164
164
  ### Return type
165
165
 
@@ -209,9 +209,9 @@ end
209
209
 
210
210
  ### Parameters
211
211
 
212
- Name | Type | Description | Notes
213
- ------------- | ------------- | ------------- | -------------
214
- **app_id** | **Integer**| appId |
212
+ | Name | Type | Description | Notes |
213
+ | ---------- | ----------- | ----------- | ----- |
214
+ | **app_id** | **Integer** | appId |
215
215
 
216
216
  ### Return type
217
217
 
@@ -2,9 +2,9 @@
2
2
 
3
3
  All URIs are relative to *https://localhost*
4
4
 
5
- Method | HTTP request | Description
6
- ------------- | ------------- | -------------
7
- [**create_spm_application1**](MonitoringAppApi.md#create_spm_application1) | **POST** /spm-reports/api/v3/apps | Create Monitoring App
5
+ | Method | HTTP request | Description |
6
+ | -------------------------------------------------------------------------- | --------------------------------- | --------------------- |
7
+ | [**create_spm_application1**](MonitoringAppApi.md#create_spm_application1) | **POST** /spm-reports/api/v3/apps | Create Monitoring App |
8
8
 
9
9
 
10
10
  # **create_spm_application1**
@@ -40,9 +40,9 @@ end
40
40
 
41
41
  ### Parameters
42
42
 
43
- Name | Type | Description | Notes
44
- ------------- | ------------- | ------------- | -------------
45
- **application_details** | [**CreateAppInfo**](CreateAppInfo.md)| Details of the application to be created |
43
+ | Name | Type | Description | Notes |
44
+ | ----------------------- | ------------------------------------- | ---------------------------------------- | ----- |
45
+ | **application_details** | [**CreateAppInfo**](CreateAppInfo.md) | Details of the application to be created |
46
46
 
47
47
  ### Return type
48
48
 
@@ -1,15 +1,15 @@
1
1
  # SematextCloud::NotificationIntegration
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **applicability** | **String** | | [optional]
7
- **create_date** | **DateTime** | | [optional]
8
- **created_by_owner** | **BOOLEAN** | | [optional]
9
- **creator_id** | **Integer** | | [optional]
10
- **id** | **Integer** | | [optional]
11
- **integration_type** | **String** | | [optional]
12
- **name** | **String** | | [optional]
13
- **params** | **Hash<String, String>** | | [optional]
14
- **state** | **String** | | [optional]
15
- **user_id** | **Integer** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | -------------------- | ------------------------------ | ----------- | ---------- |
6
+ | **applicability** | **String** | | [optional] |
7
+ | **create_date** | **DateTime** | | [optional] |
8
+ | **created_by_owner** | **BOOLEAN** | | [optional] |
9
+ | **creator_id** | **Integer** | | [optional] |
10
+ | **id** | **Integer** | | [optional] |
11
+ | **integration_type** | **String** | | [optional] |
12
+ | **name** | **String** | | [optional] |
13
+ | **params** | **Hash<String, String>** | | [optional] |
14
+ | **state** | **String** | | [optional] |
15
+ | **user_id** | **Integer** | | [optional] |
@@ -1,18 +1,18 @@
1
1
  # SematextCloud::Plan
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **app_type** | **String** | | [optional]
7
- **custom** | **BOOLEAN** | | [optional]
8
- **data_retention_hours** | **Float** | | [optional]
9
- **default_trial_plan** | **BOOLEAN** | | [optional]
10
- **free** | **BOOLEAN** | | [optional]
11
- **free_trial_days** | **Integer** | | [optional]
12
- **id** | **Integer** | | [optional]
13
- **max_alerts** | **Integer** | | [optional]
14
- **max_daily_events** | **Integer** | | [optional]
15
- **name** | **String** | | [optional]
16
- **plan_scheme** | **String** | | [optional]
17
- **sematext_service** | **String** | | [optional]
18
- **trial_plan** | **BOOLEAN** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | ------------------------ | ----------- | ----------- | ---------- |
6
+ | **app_type** | **String** | | [optional] |
7
+ | **custom** | **BOOLEAN** | | [optional] |
8
+ | **data_retention_hours** | **Float** | | [optional] |
9
+ | **default_trial_plan** | **BOOLEAN** | | [optional] |
10
+ | **free** | **BOOLEAN** | | [optional] |
11
+ | **free_trial_days** | **Integer** | | [optional] |
12
+ | **id** | **Integer** | | [optional] |
13
+ | **max_alerts** | **Integer** | | [optional] |
14
+ | **max_daily_events** | **Integer** | | [optional] |
15
+ | **name** | **String** | | [optional] |
16
+ | **plan_scheme** | **String** | | [optional] |
17
+ | **sematext_service** | **String** | | [optional] |
18
+ | **trial_plan** | **BOOLEAN** | | [optional] |
@@ -1,13 +1,13 @@
1
1
  # SematextCloud::ReportInfo
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **addresses** | **String** | Comma separated list of email addresses | [optional]
7
- **app_id** | **Integer** | | [optional]
8
- **end_date** | **DateTime** | | [optional]
9
- **filters** | **String** | | [optional]
10
- **report_name** | **String** | | [optional]
11
- **start_date** | **DateTime** | | [optional]
12
- **subject** | **String** | | [optional]
13
- **text** | **String** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | --------------- | ------------ | --------------------------------------- | ---------- |
6
+ | **addresses** | **String** | Comma separated list of email addresses | [optional] |
7
+ | **app_id** | **Integer** | | [optional] |
8
+ | **end_date** | **DateTime** | | [optional] |
9
+ | **filters** | **String** | | [optional] |
10
+ | **report_name** | **String** | | [optional] |
11
+ | **start_date** | **DateTime** | | [optional] |
12
+ | **subject** | **String** | | [optional] |
13
+ | **text** | **String** | | [optional] |
@@ -2,9 +2,9 @@
2
2
 
3
3
  All URIs are relative to *https://localhost*
4
4
 
5
- Method | HTTP request | Description
6
- ------------- | ------------- | -------------
7
- [**reset_password_using_post**](ResetPasswordApi.md#reset_password_using_post) | **POST** /users-web/api/v3/account/password/reset | Reset Password
5
+ | Method | HTTP request | Description |
6
+ | ------------------------------------------------------------------------------ | ------------------------------------------------- | -------------- |
7
+ | [**reset_password_using_post**](ResetPasswordApi.md#reset_password_using_post) | **POST** /users-web/api/v3/account/password/reset | Reset Password |
8
8
 
9
9
 
10
10
  # **reset_password_using_post**
@@ -40,9 +40,9 @@ end
40
40
 
41
41
  ### Parameters
42
42
 
43
- Name | Type | Description | Notes
44
- ------------- | ------------- | ------------- | -------------
45
- **dto** | [**UserInfo**](UserInfo.md)| dto |
43
+ | Name | Type | Description | Notes |
44
+ | ------- | --------------------------- | ----------- | ----- |
45
+ | **dto** | [**UserInfo**](UserInfo.md) | dto |
46
46
 
47
47
  ### Return type
48
48
 
@@ -2,12 +2,12 @@
2
2
 
3
3
  All URIs are relative to *https://localhost*
4
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
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
11
 
12
12
 
13
13
  # **delete_saved_query_using_delete**
@@ -43,9 +43,9 @@ end
43
43
 
44
44
  ### Parameters
45
45
 
46
- Name | Type | Description | Notes
47
- ------------- | ------------- | ------------- | -------------
48
- **updateable_query_id** | **Integer**| updateableQueryId |
46
+ | Name | Type | Description | Notes |
47
+ | ----------------------- | ----------- | ----------------- | ----- |
48
+ | **updateable_query_id** | **Integer** | updateableQueryId |
49
49
 
50
50
  ### Return type
51
51
 
@@ -95,9 +95,9 @@ end
95
95
 
96
96
  ### Parameters
97
97
 
98
- Name | Type | Description | Notes
99
- ------------- | ------------- | ------------- | -------------
100
- **app_id** | **Integer**| appId |
98
+ | Name | Type | Description | Notes |
99
+ | ---------- | ----------- | ----------- | ----- |
100
+ | **app_id** | **Integer** | appId |
101
101
 
102
102
  ### Return type
103
103
 
@@ -147,9 +147,9 @@ end
147
147
 
148
148
  ### Parameters
149
149
 
150
- Name | Type | Description | Notes
151
- ------------- | ------------- | ------------- | -------------
152
- **saved_query_dto** | [**SavedQuery**](SavedQuery.md)| savedQueryDto |
150
+ | Name | Type | Description | Notes |
151
+ | ------------------- | ------------------------------- | ------------- | ----- |
152
+ | **saved_query_dto** | [**SavedQuery**](SavedQuery.md) | savedQueryDto |
153
153
 
154
154
  ### Return type
155
155
 
@@ -201,10 +201,10 @@ end
201
201
 
202
202
  ### Parameters
203
203
 
204
- Name | Type | Description | Notes
205
- ------------- | ------------- | ------------- | -------------
206
- **saved_query_dto** | [**SavedQuery**](SavedQuery.md)| savedQueryDto |
207
- **updateable_query_id** | **Integer**| updateableQueryId |
204
+ | Name | Type | Description | Notes |
205
+ | ----------------------- | ------------------------------- | ----------------- | ----- |
206
+ | **saved_query_dto** | [**SavedQuery**](SavedQuery.md) | savedQueryDto |
207
+ | **updateable_query_id** | **Integer** | updateableQueryId |
208
208
 
209
209
  ### Return type
210
210
 
@@ -1,18 +1,18 @@
1
1
  # SematextCloud::SavedQuery
2
2
 
3
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]
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] |