Skip to content

Commit f8c7b66

Browse files
committed
Autogenerated Update v2.64.5.
1 parent 6665852 commit f8c7b66

File tree

10 files changed

+15
-63
lines changed

10 files changed

+15
-63
lines changed

.swagger-codegen/config.json

Lines changed: 1 addition & 1 deletion
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.64.3"
6+
"packageVersion": "2.64.5"
77
}

.swagger-codegen/config.jsone

Lines changed: 1 addition & 1 deletion
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.63.18"
6+
"packageVersion": "2.64.3"
77
}

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
55

66
- API version: v2
7-
- Package version: 2.64.3
7+
- Package version: 2.64.5
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99

1010
## Requirements.
@@ -125,6 +125,12 @@ Class | Method | HTTP request | Description
125125
*AlertApi* | [**unhide_alert**](docs/AlertApi.md#unhide_alert) | **POST** /api/v2/alert/{id}/install | Unhide a specific integration alert
126126
*AlertApi* | [**unsnooze_alert**](docs/AlertApi.md#unsnooze_alert) | **POST** /api/v2/alert/{id}/unsnooze | Unsnooze a specific alert
127127
*AlertApi* | [**update_alert**](docs/AlertApi.md#update_alert) | **PUT** /api/v2/alert/{id} | Update a specific alert
128+
*AnomalyApi* | [**get_all_anomalies**](docs/AnomalyApi.md#get_all_anomalies) | **GET** /api/v2/anomaly | Get all anomalies for a customer during a time interval
129+
*AnomalyApi* | [**get_anomalies_for_chart_and_param_hash**](docs/AnomalyApi.md#get_anomalies_for_chart_and_param_hash) | **GET** /api/v2/anomaly/{dashboardId}/chart/{chartHash}/{paramHash} | Get all anomalies for a chart with a set of dashboard parameters during a time interval
130+
*AnomalyApi* | [**get_chart_anomalies_for_chart**](docs/AnomalyApi.md#get_chart_anomalies_for_chart) | **GET** /api/v2/anomaly/{dashboardId}/chart/{chartHash} | Get all anomalies for a chart during a time interval
131+
*AnomalyApi* | [**get_chart_anomalies_of_one_dashboard**](docs/AnomalyApi.md#get_chart_anomalies_of_one_dashboard) | **GET** /api/v2/anomaly/{dashboardId} | Get all anomalies for a dashboard that does not have any dashboard parameters during a time interval
132+
*AnomalyApi* | [**get_dashboard_anomalies**](docs/AnomalyApi.md#get_dashboard_anomalies) | **GET** /api/v2/anomaly/{dashboardId}/{paramHash} | Get all anomalies for a dashboard with a particular set of dashboard parameters as identified by paramHash, during a time interval
133+
*AnomalyApi* | [**get_related_anomalies**](docs/AnomalyApi.md#get_related_anomalies) | **GET** /api/v2/anomaly/{eventId}/anomalies | Get all related anomalies for a firing event with a time span
128134
*ApiTokenApi* | [**create_token**](docs/ApiTokenApi.md#create_token) | **POST** /api/v2/apitoken | Create new api token
129135
*ApiTokenApi* | [**delete_token**](docs/ApiTokenApi.md#delete_token) | **DELETE** /api/v2/apitoken/{id} | Delete the specified api token
130136
*ApiTokenApi* | [**delete_token_service_account**](docs/ApiTokenApi.md#delete_token_service_account) | **DELETE** /api/v2/apitoken/serviceaccount/{id}/{token} | Delete the specified api token of the given service account

docs/Annotation.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**key** | **str** | | [optional]
7-
**value** | **str** | | [optional]
86

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from setuptools import setup, find_packages # noqa: H301
1515

1616
NAME = "wavefront-api-client"
17-
VERSION = "2.64.3"
17+
VERSION = "2.64.5"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install

wavefront_api_client/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
# import apis into sdk package
1919
from wavefront_api_client.api.account__user_and_service_account_api import AccountUserAndServiceAccountApi
2020
from wavefront_api_client.api.alert_api import AlertApi
21+
from wavefront_api_client.api.anomaly_api import AnomalyApi
2122
from wavefront_api_client.api.api_token_api import ApiTokenApi
2223
from wavefront_api_client.api.cloud_integration_api import CloudIntegrationApi
2324
from wavefront_api_client.api.dashboard_api import DashboardApi

wavefront_api_client/api/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# import apis into api package
66
from wavefront_api_client.api.account__user_and_service_account_api import AccountUserAndServiceAccountApi
77
from wavefront_api_client.api.alert_api import AlertApi
8+
from wavefront_api_client.api.anomaly_api import AnomalyApi
89
from wavefront_api_client.api.api_token_api import ApiTokenApi
910
from wavefront_api_client.api.cloud_integration_api import CloudIntegrationApi
1011
from wavefront_api_client.api.dashboard_api import DashboardApi

wavefront_api_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7474
self.default_headers[header_name] = header_value
7575
self.cookie = cookie
7676
# Set default User-Agent.
77-
self.user_agent = 'Swagger-Codegen/2.64.3/python'
77+
self.user_agent = 'Swagger-Codegen/2.64.5/python'
7878

7979
def __del__(self):
8080
if self._pool is not None:

wavefront_api_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,5 +248,5 @@ def to_debug_report(self):
248248
"OS: {env}\n"\
249249
"Python Version: {pyversion}\n"\
250250
"Version of the API: v2\n"\
251-
"SDK Package Version: 2.64.3".\
251+
"SDK Package Version: 2.64.5".\
252252
format(env=sys.platform, pyversion=sys.version)

wavefront_api_client/models/annotation.py

Lines changed: 1 addition & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -31,69 +31,15 @@ class Annotation(object):
3131
and the value is json key in definition.
3232
"""
3333
swagger_types = {
34-
'key': 'str',
35-
'value': 'str'
3634
}
3735

3836
attribute_map = {
39-
'key': 'key',
40-
'value': 'value'
4137
}
4238

43-
def __init__(self, key=None, value=None): # noqa: E501
39+
def __init__(self): # noqa: E501
4440
"""Annotation - a model defined in Swagger""" # noqa: E501
45-
46-
self._key = None
47-
self._value = None
4841
self.discriminator = None
4942

50-
if key is not None:
51-
self.key = key
52-
if value is not None:
53-
self.value = value
54-
55-
@property
56-
def key(self):
57-
"""Gets the key of this Annotation. # noqa: E501
58-
59-
60-
:return: The key of this Annotation. # noqa: E501
61-
:rtype: str
62-
"""
63-
return self._key
64-
65-
@key.setter
66-
def key(self, key):
67-
"""Sets the key of this Annotation.
68-
69-
70-
:param key: The key of this Annotation. # noqa: E501
71-
:type: str
72-
"""
73-
74-
self._key = key
75-
76-
@property
77-
def value(self):
78-
"""Gets the value of this Annotation. # noqa: E501
79-
80-
81-
:return: The value of this Annotation. # noqa: E501
82-
:rtype: str
83-
"""
84-
return self._value
85-
86-
@value.setter
87-
def value(self, value):
88-
"""Sets the value of this Annotation.
89-
90-
91-
:param value: The value of this Annotation. # noqa: E501
92-
:type: str
93-
"""
94-
95-
self._value = value
96-
9743
def to_dict(self):
9844
"""Returns the model properties as a dict"""
9945
result = {}

0 commit comments

Comments
 (0)