Skip to content

Commit 78d19b8

Browse files
committed
Autogenerated Update v2.38.19.
1 parent 327cb25 commit 78d19b8

File tree

84 files changed

+8659
-308
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+8659
-308
lines changed

.swagger-codegen/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"gitUserId": "wavefrontHQ",
44
"packageName": "wavefront_api_client",
55
"packageUrl": "https://github.com/wavefrontHQ/python-client",
6-
"packageVersion": "2.37.33"
6+
"packageVersion": "2.38.19"
77
}

.swagger-codegen/config.jsone

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"gitUserId": "wavefrontHQ",
44
"packageName": "wavefront_api_client",
55
"packageUrl": "https://github.com/wavefrontHQ/python-client",
6-
"packageVersion": "2.37.31"
6+
"packageVersion": "2.37.33"
77
}

README.md

+57-19
Large diffs are not rendered by default.

docs/Account.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**groups** | **list[str]** | The list of account's permissions. | [optional]
77
**identifier** | **str** | The unique identifier of an account. |
8+
**ingestion_policy_id** | **str** | The identifier of the ingestion policy linked with account. | [optional]
89
**user_groups** | **list[str]** | The list of account's user groups. | [optional]
910

1011
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/AccountUserAndServiceAccountApi.md

+1,395
Large diffs are not rendered by default.

docs/AlertApi.md

+34-34
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ All URIs are relative to *https://YOUR_INSTANCE.wavefront.com*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**add_access**](AlertApi.md#add_access) | **POST** /api/v2/alert/acl/add | Adds the specified ids to the given alerts' ACL
7+
[**add_alert_access**](AlertApi.md#add_alert_access) | **POST** /api/v2/alert/acl/add | Adds the specified ids to the given alerts' ACL
88
[**add_alert_tag**](AlertApi.md#add_alert_tag) | **PUT** /api/v2/alert/{id}/tag/{tagValue} | Add a tag to a specific alert
99
[**clone_alert**](AlertApi.md#clone_alert) | **POST** /api/v2/alert/{id}/clone | Clones the specified alert
1010
[**create_alert**](AlertApi.md#create_alert) | **POST** /api/v2/alert | Create a specific alert
1111
[**delete_alert**](AlertApi.md#delete_alert) | **DELETE** /api/v2/alert/{id} | Delete a specific alert
12-
[**get_access_control_list**](AlertApi.md#get_access_control_list) | **GET** /api/v2/alert/acl | Get Access Control Lists' union for the specified alerts
1312
[**get_alert**](AlertApi.md#get_alert) | **GET** /api/v2/alert/{id} | Get a specific alert
13+
[**get_alert_access_control_list**](AlertApi.md#get_alert_access_control_list) | **GET** /api/v2/alert/acl | Get Access Control Lists' union for the specified alerts
1414
[**get_alert_history**](AlertApi.md#get_alert_history) | **GET** /api/v2/alert/{id}/history | Get the version history of a specific alert
1515
[**get_alert_tags**](AlertApi.md#get_alert_tags) | **GET** /api/v2/alert/{id}/tag | Get all tags associated with a specific alert
1616
[**get_alert_version**](AlertApi.md#get_alert_version) | **GET** /api/v2/alert/{id}/history/{version} | Get a specific historical version of a specific alert
1717
[**get_alerts_summary**](AlertApi.md#get_alerts_summary) | **GET** /api/v2/alert/summary | Count alerts of various statuses for a customer
1818
[**get_all_alert**](AlertApi.md#get_all_alert) | **GET** /api/v2/alert | Get all alerts for a customer
1919
[**hide_alert**](AlertApi.md#hide_alert) | **POST** /api/v2/alert/{id}/uninstall | Hide a specific integration alert
20-
[**remove_access**](AlertApi.md#remove_access) | **POST** /api/v2/alert/acl/remove | Removes the specified ids from the given alerts' ACL
20+
[**remove_alert_access**](AlertApi.md#remove_alert_access) | **POST** /api/v2/alert/acl/remove | Removes the specified ids from the given alerts' ACL
2121
[**remove_alert_tag**](AlertApi.md#remove_alert_tag) | **DELETE** /api/v2/alert/{id}/tag/{tagValue} | Remove a tag from a specific alert
22-
[**set_acl**](AlertApi.md#set_acl) | **PUT** /api/v2/alert/acl/set | Set ACL for the specified alerts
22+
[**set_alert_acl**](AlertApi.md#set_alert_acl) | **PUT** /api/v2/alert/acl/set | Set ACL for the specified alerts
2323
[**set_alert_tags**](AlertApi.md#set_alert_tags) | **POST** /api/v2/alert/{id}/tag | Set all tags associated with a specific alert
2424
[**snooze_alert**](AlertApi.md#snooze_alert) | **POST** /api/v2/alert/{id}/snooze | Snooze a specific alert for some number of seconds
2525
[**undelete_alert**](AlertApi.md#undelete_alert) | **POST** /api/v2/alert/{id}/undelete | Undelete a specific alert
@@ -28,8 +28,8 @@ Method | HTTP request | Description
2828
[**update_alert**](AlertApi.md#update_alert) | **PUT** /api/v2/alert/{id} | Update a specific alert
2929

3030

31-
# **add_access**
32-
> add_access(body=body)
31+
# **add_alert_access**
32+
> add_alert_access(body=body)
3333
3434
Adds the specified ids to the given alerts' ACL
3535

@@ -55,9 +55,9 @@ body = [wavefront_api_client.AccessControlListWriteDTO()] # list[AccessControlLi
5555

5656
try:
5757
# Adds the specified ids to the given alerts' ACL
58-
api_instance.add_access(body=body)
58+
api_instance.add_alert_access(body=body)
5959
except ApiException as e:
60-
print("Exception when calling AlertApi->add_access: %s\n" % e)
60+
print("Exception when calling AlertApi->add_alert_access: %s\n" % e)
6161
```
6262

6363
### Parameters
@@ -303,10 +303,10 @@ Name | Type | Description | Notes
303303

304304
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
305305

306-
# **get_access_control_list**
307-
> ResponseContainerListAccessControlListReadDTO get_access_control_list(id=id)
306+
# **get_alert**
307+
> ResponseContainerAlert get_alert(id)
308308
309-
Get Access Control Lists' union for the specified alerts
309+
Get a specific alert
310310

311311

312312

@@ -326,25 +326,25 @@ configuration.api_key['X-AUTH-TOKEN'] = 'YOUR_API_KEY'
326326

327327
# create an instance of the API class
328328
api_instance = wavefront_api_client.AlertApi(wavefront_api_client.ApiClient(configuration))
329-
id = ['id_example'] # list[str] | (optional)
329+
id = 'id_example' # str |
330330

331331
try:
332-
# Get Access Control Lists' union for the specified alerts
333-
api_response = api_instance.get_access_control_list(id=id)
332+
# Get a specific alert
333+
api_response = api_instance.get_alert(id)
334334
pprint(api_response)
335335
except ApiException as e:
336-
print("Exception when calling AlertApi->get_access_control_list: %s\n" % e)
336+
print("Exception when calling AlertApi->get_alert: %s\n" % e)
337337
```
338338

339339
### Parameters
340340

341341
Name | Type | Description | Notes
342342
------------- | ------------- | ------------- | -------------
343-
**id** | [**list[str]**](str.md)| | [optional]
343+
**id** | **str**| |
344344

345345
### Return type
346346

347-
[**ResponseContainerListAccessControlListReadDTO**](ResponseContainerListAccessControlListReadDTO.md)
347+
[**ResponseContainerAlert**](ResponseContainerAlert.md)
348348

349349
### Authorization
350350

@@ -357,10 +357,10 @@ Name | Type | Description | Notes
357357

358358
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
359359

360-
# **get_alert**
361-
> ResponseContainerAlert get_alert(id)
360+
# **get_alert_access_control_list**
361+
> ResponseContainerListAccessControlListReadDTO get_alert_access_control_list(id=id)
362362
363-
Get a specific alert
363+
Get Access Control Lists' union for the specified alerts
364364

365365

366366

@@ -380,25 +380,25 @@ configuration.api_key['X-AUTH-TOKEN'] = 'YOUR_API_KEY'
380380

381381
# create an instance of the API class
382382
api_instance = wavefront_api_client.AlertApi(wavefront_api_client.ApiClient(configuration))
383-
id = 'id_example' # str |
383+
id = ['id_example'] # list[str] | (optional)
384384

385385
try:
386-
# Get a specific alert
387-
api_response = api_instance.get_alert(id)
386+
# Get Access Control Lists' union for the specified alerts
387+
api_response = api_instance.get_alert_access_control_list(id=id)
388388
pprint(api_response)
389389
except ApiException as e:
390-
print("Exception when calling AlertApi->get_alert: %s\n" % e)
390+
print("Exception when calling AlertApi->get_alert_access_control_list: %s\n" % e)
391391
```
392392

393393
### Parameters
394394

395395
Name | Type | Description | Notes
396396
------------- | ------------- | ------------- | -------------
397-
**id** | **str**| |
397+
**id** | [**list[str]**](str.md)| | [optional]
398398

399399
### Return type
400400

401-
[**ResponseContainerAlert**](ResponseContainerAlert.md)
401+
[**ResponseContainerListAccessControlListReadDTO**](ResponseContainerListAccessControlListReadDTO.md)
402402

403403
### Authorization
404404

@@ -739,8 +739,8 @@ Name | Type | Description | Notes
739739

740740
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
741741

742-
# **remove_access**
743-
> remove_access(body=body)
742+
# **remove_alert_access**
743+
> remove_alert_access(body=body)
744744
745745
Removes the specified ids from the given alerts' ACL
746746

@@ -766,9 +766,9 @@ body = [wavefront_api_client.AccessControlListWriteDTO()] # list[AccessControlLi
766766

767767
try:
768768
# Removes the specified ids from the given alerts' ACL
769-
api_instance.remove_access(body=body)
769+
api_instance.remove_alert_access(body=body)
770770
except ApiException as e:
771-
print("Exception when calling AlertApi->remove_access: %s\n" % e)
771+
print("Exception when calling AlertApi->remove_alert_access: %s\n" % e)
772772
```
773773

774774
### Parameters
@@ -848,8 +848,8 @@ Name | Type | Description | Notes
848848

849849
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
850850

851-
# **set_acl**
852-
> set_acl(body=body)
851+
# **set_alert_acl**
852+
> set_alert_acl(body=body)
853853
854854
Set ACL for the specified alerts
855855

@@ -875,9 +875,9 @@ body = [wavefront_api_client.AccessControlListWriteDTO()] # list[AccessControlLi
875875

876876
try:
877877
# Set ACL for the specified alerts
878-
api_instance.set_acl(body=body)
878+
api_instance.set_alert_acl(body=body)
879879
except ApiException as e:
880-
print("Exception when calling AlertApi->set_acl: %s\n" % e)
880+
print("Exception when calling AlertApi->set_alert_acl: %s\n" % e)
881881
```
882882

883883
### Parameters

docs/AlertMin.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# AlertMin
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**id** | **str** | Unique identifier, also created epoch millis, of the alert | [optional]
7+
**name** | **str** | Name of the alert | [optional]
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+

docs/CustomerFacingUserObject.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
99
**groups** | **list[str]** | List of permission groups this user has been granted access to | [optional]
1010
**id** | **str** | The unique identifier of this user, which should be their valid email address |
1111
**identifier** | **str** | The unique identifier of this user, which should be their valid email address |
12+
**ingestion_policy_id** | **str** | The identifier of the ingestion policy linked with user. | [optional]
1213
**last_successful_login** | **int** | The last time the user logged in, in epoch milliseconds | [optional]
1314
**_self** | **bool** | Whether this user is the one calling the API |
1415
**user_groups** | **list[str]** | List of user group identifiers this user belongs to | [optional]

0 commit comments

Comments
 (0)