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
@@ -1,10 +1,10 @@
1
1
  # SematextCloud::AlertRuleScheduleWeekdayDto
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **day** | **String** | | [optional]
7
- **index** | **Integer** | | [optional]
8
- **intervals** | [**Array<AlertRuleScheduleTimeRangeDto>**](AlertRuleScheduleTimeRangeDto.md) | | [optional]
9
- **label** | **String** | | [optional]
10
- **type** | **String** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | ------------- | ---------------------------------------------------------------------------------- | ----------- | ---------- |
6
+ | **day** | **String** | | [optional] |
7
+ | **index** | **Integer** | | [optional] |
8
+ | **intervals** | [**Array<AlertRuleScheduleTimeRangeDto>**](AlertRuleScheduleTimeRangeDto.md) | | [optional] |
9
+ | **label** | **String** | | [optional] |
10
+ | **type** | **String** | | [optional] |
@@ -2,13 +2,13 @@
2
2
 
3
3
  All URIs are relative to *https://localhost*
4
4
 
5
- Method | HTTP request | Description
6
- ------------- | ------------- | -------------
7
- [**create_alert_using_post**](AlertsApi.md#create_alert_using_post) | **POST** /users-web/api/v3/alerts | Create alert rule
8
- [**delete_alert_rule_using_delete**](AlertsApi.md#delete_alert_rule_using_delete) | **DELETE** /users-web/api/v3/alerts/{updateableAlertId} | Delete alert rule
9
- [**disable_alert_rule_using_put**](AlertsApi.md#disable_alert_rule_using_put) | **PUT** /users-web/api/v3/alerts/{updateableAlertId}/disable | Disable alert rule
10
- [**enable_alert_rule_using_put**](AlertsApi.md#enable_alert_rule_using_put) | **PUT** /users-web/api/v3/alerts/{updateableAlertId}/enable | Enable alert rule
11
- [**get_alert_rules_for_app_using_get**](AlertsApi.md#get_alert_rules_for_app_using_get) | **GET** /users-web/api/v3/apps/{appId}/alerts | Get alert rules for an app
5
+ | Method | HTTP request | Description |
6
+ | --------------------------------------------------------------------------------------- | ------------------------------------------------------------ | -------------------------- |
7
+ | [**create_alert_using_post**](AlertsApi.md#create_alert_using_post) | **POST** /users-web/api/v3/alerts | Create alert rule |
8
+ | [**delete_alert_rule_using_delete**](AlertsApi.md#delete_alert_rule_using_delete) | **DELETE** /users-web/api/v3/alerts/{updateableAlertId} | Delete alert rule |
9
+ | [**disable_alert_rule_using_put**](AlertsApi.md#disable_alert_rule_using_put) | **PUT** /users-web/api/v3/alerts/{updateableAlertId}/disable | Disable alert rule |
10
+ | [**enable_alert_rule_using_put**](AlertsApi.md#enable_alert_rule_using_put) | **PUT** /users-web/api/v3/alerts/{updateableAlertId}/enable | Enable alert rule |
11
+ | [**get_alert_rules_for_app_using_get**](AlertsApi.md#get_alert_rules_for_app_using_get) | **GET** /users-web/api/v3/apps/{appId}/alerts | Get alert rules for an app |
12
12
 
13
13
 
14
14
  # **create_alert_using_post**
@@ -44,9 +44,9 @@ end
44
44
 
45
45
  ### Parameters
46
46
 
47
- Name | Type | Description | Notes
48
- ------------- | ------------- | ------------- | -------------
49
- **dto** | [**AlertRule**](AlertRule.md)| dto |
47
+ | Name | Type | Description | Notes |
48
+ | ------- | ----------------------------- | ----------- | ----- |
49
+ | **dto** | [**AlertRule**](AlertRule.md) | dto |
50
50
 
51
51
  ### Return type
52
52
 
@@ -96,9 +96,9 @@ end
96
96
 
97
97
  ### Parameters
98
98
 
99
- Name | Type | Description | Notes
100
- ------------- | ------------- | ------------- | -------------
101
- **updateable_alert_id** | **Integer**| updateableAlertId |
99
+ | Name | Type | Description | Notes |
100
+ | ----------------------- | ----------- | ----------------- | ----- |
101
+ | **updateable_alert_id** | **Integer** | updateableAlertId |
102
102
 
103
103
  ### Return type
104
104
 
@@ -148,9 +148,9 @@ end
148
148
 
149
149
  ### Parameters
150
150
 
151
- Name | Type | Description | Notes
152
- ------------- | ------------- | ------------- | -------------
153
- **updateable_alert_id** | **Integer**| updateableAlertId |
151
+ | Name | Type | Description | Notes |
152
+ | ----------------------- | ----------- | ----------------- | ----- |
153
+ | **updateable_alert_id** | **Integer** | updateableAlertId |
154
154
 
155
155
  ### Return type
156
156
 
@@ -200,9 +200,9 @@ end
200
200
 
201
201
  ### Parameters
202
202
 
203
- Name | Type | Description | Notes
204
- ------------- | ------------- | ------------- | -------------
205
- **updateable_alert_id** | **Integer**| updateableAlertId |
203
+ | Name | Type | Description | Notes |
204
+ | ----------------------- | ----------- | ----------------- | ----- |
205
+ | **updateable_alert_id** | **Integer** | updateableAlertId |
206
206
 
207
207
  ### Return type
208
208
 
@@ -252,9 +252,9 @@ end
252
252
 
253
253
  ### Parameters
254
254
 
255
- Name | Type | Description | Notes
256
- ------------- | ------------- | ------------- | -------------
257
- **app_id** | **Integer**| appId |
255
+ | Name | Type | Description | Notes |
256
+ | ---------- | ----------- | ----------- | ----- |
257
+ | **app_id** | **Integer** | appId |
258
258
 
259
259
  ### Return type
260
260
 
@@ -1,32 +1,36 @@
1
1
  # SematextCloud::App
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **ajax_threshold** | **Integer** | | [optional]
7
- **app_type** | **String** | | [optional]
8
- **app_type_id** | **Integer** | | [optional]
9
- **creator_email** | **String** | | [optional]
10
- **credit_card_expiry** | **String** | | [optional]
11
- **credit_card_number** | **String** | | [optional]
12
- **description** | **String** | | [optional]
13
- **display_status** | **String** | | [optional]
14
- **first_data_saved_date** | **Integer** | | [optional]
15
- **id** | **Integer** | | [optional]
16
- **integration** | [**ServiceIntegration**](ServiceIntegration.md) | | [optional]
17
- **last_data_received_date** | **Integer** | | [optional]
18
- **last_data_saved_date** | **Integer** | | [optional]
19
- **logged_in_user_app_role** | **String** | | [optional]
20
- **monthly_invoice_account** | **BOOLEAN** | | [optional]
21
- **name** | **String** | | [optional]
22
- **owner_email** | **String** | | [optional]
23
- **owning_organization** | [**BasicOrganizationDto**](BasicOrganizationDto.md) | | [optional]
24
- **page_load_threshold** | **Integer** | | [optional]
25
- **payment_method_id** | **Integer** | | [optional]
26
- **plan** | [**Plan**](Plan.md) | | [optional]
27
- **prepaid_account** | **BOOLEAN** | | [optional]
28
- **status** | **String** | | [optional]
29
- **token** | **String** | | [optional]
30
- **trial_end_date** | **Integer** | | [optional]
31
- **url_group_limit** | **Integer** | | [optional]
32
- **user_roles** | [**Array<UserRole>**](UserRole.md) | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | --------------------------- | --------------------------------------------------- | ----------- | ---------- |
6
+ | **ajax_threshold** | **Integer** | | [optional] |
7
+ | **app_type** | **String** | | [optional] |
8
+ | **app_type_id** | **Integer** | | [optional] |
9
+ | **creator_email** | **String** | | [optional] |
10
+ | **credit_card_expiry** | **String** | | [optional] |
11
+ | **credit_card_number** | **String** | | [optional] |
12
+ | **description** | **String** | | [optional] |
13
+ | **display_status** | **String** | | [optional] |
14
+ | **first_data_saved_date** | **Integer** | | [optional] |
15
+ | **id** | **Integer** | | [optional] |
16
+ | **integration** | [**ServiceIntegration**](ServiceIntegration.md) | | [optional] |
17
+ | **last_data_received_date** | **Integer** | | [optional] |
18
+ | **last_data_saved_date** | **Integer** | | [optional] |
19
+ | **logged_in_user_app_role** | **String** | | [optional] |
20
+ | **monthly_invoice_account** | **BOOLEAN** | | [optional] |
21
+ | **name** | **String** | | [optional] |
22
+ | **owner_email** | **String** | | [optional] |
23
+ | **owning_organization** | [**BasicOrganizationDto**](BasicOrganizationDto.md) | | [optional] |
24
+ | **page_load_threshold** | **Integer** | | [optional] |
25
+ | **payment_method_id** | **Integer** | | [optional] |
26
+ | **plan** | [**Plan**](Plan.md) | | [optional] |
27
+ | **prepaid_account** | **BOOLEAN** | | [optional] |
28
+ | **read_token** | **String** | | [optional] |
29
+ | **read_write_token** | **String** | | [optional] |
30
+ | **registration_date** | **Integer** | | [optional] |
31
+ | **status** | **String** | | [optional] |
32
+ | **token** | **String** | | [optional] |
33
+ | **trial_end_date** | **Integer** | | [optional] |
34
+ | **url_group_limit** | **Integer** | | [optional] |
35
+ | **user_roles** | [**Array<UserRole>**](UserRole.md) | | [optional] |
36
+ | **write_token** | **String** | | [optional] |
@@ -1,6 +1,6 @@
1
1
  # SematextCloud::AppDescription
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **description** | **String** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | --------------- | ---------- | ----------- | ---------- |
6
+ | **description** | **String** | | [optional] |
@@ -1,10 +1,10 @@
1
1
  # SematextCloud::AppMetadata
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **aws_cloud_watch_access_key** | **String** | | [optional]
7
- **aws_cloud_watch_secret_key** | **String** | | [optional]
8
- **aws_fetch_frequency** | **String** | | [optional]
9
- **aws_region** | **String** | | [optional]
10
- **sub_types** | **Array<String>** | Comma separated list of AWS types monitored by created app | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | ------------------------------ | ----------------------- | ---------------------------------------------------------- | ---------- |
6
+ | **aws_cloud_watch_access_key** | **String** | | [optional] |
7
+ | **aws_cloud_watch_secret_key** | **String** | | [optional] |
8
+ | **aws_fetch_frequency** | **String** | | [optional] |
9
+ | **aws_region** | **String** | | [optional] |
10
+ | **sub_types** | **Array<String>** | Comma separated list of AWS types monitored by created app | [optional] |
@@ -2,15 +2,15 @@
2
2
 
3
3
  All URIs are relative to *https://localhost*
4
4
 
5
- Method | HTTP request | Description
6
- ------------- | ------------- | -------------
7
- [**get_app_types_using_get**](AppsApi.md#get_app_types_using_get) | **GET** /users-web/api/v3/apps/types | Get all App types supported for the account identified with apiKey
8
- [**get_using_get**](AppsApi.md#get_using_get) | **GET** /users-web/api/v3/apps/{anyStateAppId} | Gets defails for one particular App
9
- [**invite_app_guests_using_post**](AppsApi.md#invite_app_guests_using_post) | **POST** /users-web/api/v3/apps/guests | Invite guests to an app
10
- [**list_apps_users_using_get**](AppsApi.md#list_apps_users_using_get) | **GET** /users-web/api/v3/apps/users | Get all users of apps accessible to this account
11
- [**list_using_get**](AppsApi.md#list_using_get) | **GET** /users-web/api/v3/apps | Get all apps accessible by account identified with apiKey
12
- [**update_description_using_put**](AppsApi.md#update_description_using_put) | **PUT** /users-web/api/v3/apps/{anyStateAppId}/description | Update description of the app
13
- [**update_using_put1**](AppsApi.md#update_using_put1) | **PUT** /users-web/api/v3/apps/{anyStateAppId} | Update app
5
+ | Method | HTTP request | Description |
6
+ | --------------------------------------------------------------------------- | ---------------------------------------------------------- | ------------------------------------------------------------------ |
7
+ | [**get_app_types_using_get**](AppsApi.md#get_app_types_using_get) | **GET** /users-web/api/v3/apps/types | Get all App types supported for the account identified with apiKey |
8
+ | [**get_using_get**](AppsApi.md#get_using_get) | **GET** /users-web/api/v3/apps/{anyStateAppId} | Gets defails for one particular App |
9
+ | [**invite_app_guests_using_post**](AppsApi.md#invite_app_guests_using_post) | **POST** /users-web/api/v3/apps/guests | Invite guests to an app |
10
+ | [**list_apps_users_using_get**](AppsApi.md#list_apps_users_using_get) | **GET** /users-web/api/v3/apps/users | Get all users of apps accessible to this account |
11
+ | [**list_using_get**](AppsApi.md#list_using_get) | **GET** /users-web/api/v3/apps | Get all apps accessible by account identified with apiKey |
12
+ | [**update_description_using_put**](AppsApi.md#update_description_using_put) | **PUT** /users-web/api/v3/apps/{anyStateAppId}/description | Update description of the app |
13
+ | [**update_using_put1**](AppsApi.md#update_using_put1) | **PUT** /users-web/api/v3/apps/{anyStateAppId} | Update app |
14
14
 
15
15
 
16
16
  # **get_app_types_using_get**
@@ -92,9 +92,9 @@ end
92
92
 
93
93
  ### Parameters
94
94
 
95
- Name | Type | Description | Notes
96
- ------------- | ------------- | ------------- | -------------
97
- **any_state_app_id** | **Integer**| anyStateAppId |
95
+ | Name | Type | Description | Notes |
96
+ | -------------------- | ----------- | ------------- | ----- |
97
+ | **any_state_app_id** | **Integer** | anyStateAppId |
98
98
 
99
99
  ### Return type
100
100
 
@@ -144,9 +144,9 @@ end
144
144
 
145
145
  ### Parameters
146
146
 
147
- Name | Type | Description | Notes
148
- ------------- | ------------- | ------------- | -------------
149
- **invitation** | [**Invitation**](Invitation.md)| For `app` and `apps` fields only `id` needs to be populated.Other fields can be left empty or with default values |
147
+ | Name | Type | Description | Notes |
148
+ | -------------- | ------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | ----- |
149
+ | **invitation** | [**Invitation**](Invitation.md) | For `app` and `apps` fields only `id` needs to be populated.Other fields can be left empty or with default values |
150
150
 
151
151
  ### Return type
152
152
 
@@ -293,10 +293,10 @@ end
293
293
 
294
294
  ### Parameters
295
295
 
296
- Name | Type | Description | Notes
297
- ------------- | ------------- | ------------- | -------------
298
- **any_state_app_id** | **Integer**| App Id |
299
- **update_details** | [**AppDescription**](AppDescription.md)| Update Details | [optional]
296
+ | Name | Type | Description | Notes |
297
+ | -------------------- | --------------------------------------- | -------------- | ---------- |
298
+ | **any_state_app_id** | **Integer** | App Id |
299
+ | **update_details** | [**AppDescription**](AppDescription.md) | Update Details | [optional] |
300
300
 
301
301
  ### Return type
302
302
 
@@ -350,10 +350,10 @@ end
350
350
 
351
351
  ### Parameters
352
352
 
353
- Name | Type | Description | Notes
354
- ------------- | ------------- | ------------- | -------------
355
- **dto** | [**UpdateAppInfo**](UpdateAppInfo.md)| dto |
356
- **any_state_app_id** | **Integer**| App Id |
353
+ | Name | Type | Description | Notes |
354
+ | -------------------- | ------------------------------------- | ----------- | ----- |
355
+ | **dto** | [**UpdateAppInfo**](UpdateAppInfo.md) | dto |
356
+ | **any_state_app_id** | **Integer** | App Id |
357
357
 
358
358
  ### Return type
359
359
 
@@ -2,9 +2,9 @@
2
2
 
3
3
  All URIs are relative to *https://localhost*
4
4
 
5
- Method | HTTP request | Description
6
- ------------- | ------------- | -------------
7
- [**update_using_put**](AwsSettingsControllerApi.md#update_using_put) | **PUT** /users-web/api/v3/apps/{appId}/aws | Update App's AWS CloudWatch settings
5
+ | Method | HTTP request | Description |
6
+ | -------------------------------------------------------------------- | ------------------------------------------ | ---------------------------------------- |
7
+ | [**update_using_put**](AwsSettingsControllerApi.md#update_using_put) | **PUT** /users-web/api/v3/apps/{appId}/aws | Update App's AWS CloudWatch settings |
8
8
 
9
9
 
10
10
  # **update_using_put**
@@ -44,10 +44,10 @@ end
44
44
 
45
45
  ### Parameters
46
46
 
47
- Name | Type | Description | Notes
48
- ------------- | ------------- | ------------- | -------------
49
- **app_id** | **Integer**| appId |
50
- **dto** | [**CloudWatchSettings**](CloudWatchSettings.md)| dto |
47
+ | Name | Type | Description | Notes |
48
+ | ---------- | ----------------------------------------------- | ----------- | ----- |
49
+ | **app_id** | **Integer** | appId |
50
+ | **dto** | [**CloudWatchSettings**](CloudWatchSettings.md) | dto |
51
51
 
52
52
  ### Return type
53
53
 
@@ -1,7 +1,7 @@
1
1
  # SematextCloud::BasicAuthMethodDto
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **auth_type** | **String** | | [optional]
7
- **uuid** | **String** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | ------------- | ---------- | ----------- | ---------- |
6
+ | **auth_type** | **String** | | [optional] |
7
+ | **uuid** | **String** | | [optional] |
@@ -1,9 +1,9 @@
1
1
  # SematextCloud::BasicOrganizationDto
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **auth_methods** | [**Array<BasicAuthMethodDto>**](BasicAuthMethodDto.md) | | [optional]
7
- **name** | **String** | | [optional]
8
- **status** | **String** | | [optional]
9
- **uuid** | **String** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | ---------------- | ------------------------------------------------------------ | ----------- | ---------- |
6
+ | **auth_methods** | [**Array<BasicAuthMethodDto>**](BasicAuthMethodDto.md) | | [optional] |
7
+ | **name** | **String** | | [optional] |
8
+ | **status** | **String** | | [optional] |
9
+ | **uuid** | **String** | | [optional] |
@@ -2,11 +2,11 @@
2
2
 
3
3
  All URIs are relative to *https://localhost*
4
4
 
5
- Method | HTTP request | Description
6
- ------------- | ------------- | -------------
7
- [**get_detailed_invoice_using_get**](BillingApi.md#get_detailed_invoice_using_get) | **GET** /users-web/api/v3/billing/invoice/{service}/{year}/{month} | Get invoice details
8
- [**list_available_plans_using_get**](BillingApi.md#list_available_plans_using_get) | **GET** /users-web/api/v3/billing/availablePlans | Get available plans
9
- [**update_plan_using_put**](BillingApi.md#update_plan_using_put) | **PUT** /users-web/api/v3/billing/info/{appId} | Update plan for an app
5
+ | Method | HTTP request | Description |
6
+ | ---------------------------------------------------------------------------------- | ------------------------------------------------------------------ | ---------------------- |
7
+ | [**get_detailed_invoice_using_get**](BillingApi.md#get_detailed_invoice_using_get) | **GET** /users-web/api/v3/billing/invoice/{service}/{year}/{month} | Get invoice details |
8
+ | [**list_available_plans_using_get**](BillingApi.md#list_available_plans_using_get) | **GET** /users-web/api/v3/billing/availablePlans | Get available plans |
9
+ | [**update_plan_using_put**](BillingApi.md#update_plan_using_put) | **PUT** /users-web/api/v3/billing/info/{appId} | Update plan for an app |
10
10
 
11
11
 
12
12
  # **get_detailed_invoice_using_get**
@@ -46,11 +46,11 @@ end
46
46
 
47
47
  ### Parameters
48
48
 
49
- Name | Type | Description | Notes
50
- ------------- | ------------- | ------------- | -------------
51
- **service** | **String**| service |
52
- **year** | **Integer**| year |
53
- **month** | **Integer**| month |
49
+ | Name | Type | Description | Notes |
50
+ | ----------- | ----------- | ----------- | ----- |
51
+ | **service** | **String** | service |
52
+ | **year** | **Integer** | year |
53
+ | **month** | **Integer** | month |
54
54
 
55
55
  ### Return type
56
56
 
@@ -102,10 +102,10 @@ end
102
102
 
103
103
  ### Parameters
104
104
 
105
- Name | Type | Description | Notes
106
- ------------- | ------------- | ------------- | -------------
107
- **integration_id** | **Integer**| integrationId | [optional]
108
- **app_type** | **String**| appType | [optional]
105
+ | Name | Type | Description | Notes |
106
+ | ------------------ | ----------- | ------------- | ---------- |
107
+ | **integration_id** | **Integer** | integrationId | [optional] |
108
+ | **app_type** | **String** | appType | [optional] |
109
109
 
110
110
  ### Return type
111
111
 
@@ -157,10 +157,10 @@ end
157
157
 
158
158
  ### Parameters
159
159
 
160
- Name | Type | Description | Notes
161
- ------------- | ------------- | ------------- | -------------
162
- **app_id** | **Integer**| appId |
163
- **dto** | [**BillingInfo**](BillingInfo.md)| dto |
160
+ | Name | Type | Description | Notes |
161
+ | ---------- | --------------------------------- | ----------- | ----- |
162
+ | **app_id** | **Integer** | appId |
163
+ | **dto** | [**BillingInfo**](BillingInfo.md) | dto |
164
164
 
165
165
  ### Return type
166
166
 
@@ -1,8 +1,8 @@
1
1
  # SematextCloud::BillingInfo
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **credit_card_id** | **Integer** | | [optional]
7
- **payment_method** | **String** | | [optional]
8
- **plan_id** | **Integer** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | ------------------ | ----------- | ----------- | ---------- |
6
+ | **credit_card_id** | **Integer** | | [optional] |
7
+ | **payment_method** | **String** | | [optional] |
8
+ | **plan_id** | **Integer** | | [optional] |
@@ -1,9 +1,9 @@
1
1
  # SematextCloud::CloudWatchSettings
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **access_key** | **String** | | [optional]
7
- **fetch_frequency** | **String** | | [optional]
8
- **region** | **String** | | [optional]
9
- **secret_key** | **String** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | ------------------- | ---------- | ----------- | ---------- |
6
+ | **access_key** | **String** | | [optional] |
7
+ | **fetch_frequency** | **String** | | [optional] |
8
+ | **region** | **String** | | [optional] |
9
+ | **secret_key** | **String** | | [optional] |
@@ -1,10 +1,10 @@
1
1
  # SematextCloud::CreateAppInfo
2
2
 
3
3
  ## Properties
4
- Name | Type | Description | Notes
5
- ------------ | ------------- | ------------- | -------------
6
- **app_type** | **String** | | [optional]
7
- **discount_code** | **String** | | [optional]
8
- **initial_plan_id** | **Integer** | | [optional]
9
- **meta_data** | [**AppMetadata**](AppMetadata.md) | AWS app meta data. Applicable only for `aws` appType | [optional]
10
- **name** | **String** | | [optional]
4
+ | Name | Type | Description | Notes |
5
+ | ------------------- | --------------------------------- | -------------------------------------------------------------- | ---------- |
6
+ | **app_type** | **String** | | [optional] |
7
+ | **discount_code** | **String** | | [optional] |
8
+ | **initial_plan_id** | **Integer** | | [optional] |
9
+ | **meta_data** | [**AppMetadata**](AppMetadata.md) | AWS app meta data. Applicable only for `aws` appType | [optional] |
10
+ | **name** | **String** | | [optional] |