Skip to content

Commit f06954a

Browse files
author
wf-jenkins
committed
Autogenerated Update v2.197.1.
1 parent 2e9beb1 commit f06954a

10 files changed

+8
-66
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.196.2"
6+
"packageVersion": "2.197.1"
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.194.1"
6+
"packageVersion": "2.196.2"
77
}

README.md

+1-1
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.196.2
7+
- Package version: 2.197.1
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99

1010
## Requirements.

docs/IngestionPolicyReadModel.md

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**accounts** | [**list[AccessControlElement]**](AccessControlElement.md) | The accounts associated with the ingestion policy | [optional]
77
**alert** | [**Alert**](Alert.md) | The alert object connected with the ingestion policy. | [optional]
8-
**alert_id** | **str** | The ingestion policy alert Id | [optional]
98
**customer** | **str** | ID of the customer to which the ingestion policy belongs | [optional]
109
**description** | **str** | The description of the ingestion policy | [optional]
1110
**groups** | [**list[AccessControlElement]**](AccessControlElement.md) | The groups associated with the ingestion policy | [optional]

docs/IngestionPolicyWriteModel.md

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**accounts** | **list[str]** | The accounts associated with the ingestion policy | [optional]
77
**alert** | [**IngestionPolicyAlert**](IngestionPolicyAlert.md) | The alert DTO object associated with the ingestion policy. | [optional]
8-
**alert_id** | **str** | The ingestion policy alert Id | [optional]
98
**customer** | **str** | ID of the customer to which the ingestion policy belongs | [optional]
109
**description** | **str** | The description of the ingestion policy | [optional]
1110
**groups** | **list[str]** | The groups associated with the ingestion policy | [optional]

setup.py

+1-1
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.196.2"
17+
VERSION = "2.197.1"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install

wavefront_api_client/api_client.py

+1-1
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.196.2/python'
77+
self.user_agent = 'Swagger-Codegen/2.197.1/python'
7878
self.client_side_validation = configuration.client_side_validation
7979

8080
def __del__(self):

wavefront_api_client/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,5 +251,5 @@ def to_debug_report(self):
251251
"OS: {env}\n"\
252252
"Python Version: {pyversion}\n"\
253253
"Version of the API: v2\n"\
254-
"SDK Package Version: 2.196.2".\
254+
"SDK Package Version: 2.197.1".\
255255
format(env=sys.platform, pyversion=sys.version)

wavefront_api_client/models/ingestion_policy_read_model.py

+1-29
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ class IngestionPolicyReadModel(object):
3535
swagger_types = {
3636
'accounts': 'list[AccessControlElement]',
3737
'alert': 'Alert',
38-
'alert_id': 'str',
3938
'customer': 'str',
4039
'description': 'str',
4140
'groups': 'list[AccessControlElement]',
@@ -56,7 +55,6 @@ class IngestionPolicyReadModel(object):
5655
attribute_map = {
5756
'accounts': 'accounts',
5857
'alert': 'alert',
59-
'alert_id': 'alertId',
6058
'customer': 'customer',
6159
'description': 'description',
6260
'groups': 'groups',
@@ -74,15 +72,14 @@ class IngestionPolicyReadModel(object):
7472
'tags_anded': 'tagsAnded'
7573
}
7674

77-
def __init__(self, accounts=None, alert=None, alert_id=None, customer=None, description=None, groups=None, id=None, is_limited=None, last_updated_account_id=None, last_updated_ms=None, limit_pps=None, metadata=None, name=None, namespaces=None, point_tags=None, scope=None, sources=None, tags_anded=None, _configuration=None): # noqa: E501
75+
def __init__(self, accounts=None, alert=None, customer=None, description=None, groups=None, id=None, is_limited=None, last_updated_account_id=None, last_updated_ms=None, limit_pps=None, metadata=None, name=None, namespaces=None, point_tags=None, scope=None, sources=None, tags_anded=None, _configuration=None): # noqa: E501
7876
"""IngestionPolicyReadModel - a model defined in Swagger""" # noqa: E501
7977
if _configuration is None:
8078
_configuration = Configuration()
8179
self._configuration = _configuration
8280

8381
self._accounts = None
8482
self._alert = None
85-
self._alert_id = None
8683
self._customer = None
8784
self._description = None
8885
self._groups = None
@@ -104,8 +101,6 @@ def __init__(self, accounts=None, alert=None, alert_id=None, customer=None, desc
104101
self.accounts = accounts
105102
if alert is not None:
106103
self.alert = alert
107-
if alert_id is not None:
108-
self.alert_id = alert_id
109104
if customer is not None:
110105
self.customer = customer
111106
if description is not None:
@@ -183,29 +178,6 @@ def alert(self, alert):
183178

184179
self._alert = alert
185180

186-
@property
187-
def alert_id(self):
188-
"""Gets the alert_id of this IngestionPolicyReadModel. # noqa: E501
189-
190-
The ingestion policy alert Id # noqa: E501
191-
192-
:return: The alert_id of this IngestionPolicyReadModel. # noqa: E501
193-
:rtype: str
194-
"""
195-
return self._alert_id
196-
197-
@alert_id.setter
198-
def alert_id(self, alert_id):
199-
"""Sets the alert_id of this IngestionPolicyReadModel.
200-
201-
The ingestion policy alert Id # noqa: E501
202-
203-
:param alert_id: The alert_id of this IngestionPolicyReadModel. # noqa: E501
204-
:type: str
205-
"""
206-
207-
self._alert_id = alert_id
208-
209181
@property
210182
def customer(self):
211183
"""Gets the customer of this IngestionPolicyReadModel. # noqa: E501

wavefront_api_client/models/ingestion_policy_write_model.py

+1-29
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ class IngestionPolicyWriteModel(object):
3535
swagger_types = {
3636
'accounts': 'list[str]',
3737
'alert': 'IngestionPolicyAlert',
38-
'alert_id': 'str',
3938
'customer': 'str',
4039
'description': 'str',
4140
'groups': 'list[str]',
@@ -55,7 +54,6 @@ class IngestionPolicyWriteModel(object):
5554
attribute_map = {
5655
'accounts': 'accounts',
5756
'alert': 'alert',
58-
'alert_id': 'alertId',
5957
'customer': 'customer',
6058
'description': 'description',
6159
'groups': 'groups',
@@ -72,15 +70,14 @@ class IngestionPolicyWriteModel(object):
7270
'tags_anded': 'tagsAnded'
7371
}
7472

75-
def __init__(self, accounts=None, alert=None, alert_id=None, customer=None, description=None, groups=None, id=None, is_limited=None, last_updated_account_id=None, last_updated_ms=None, limit_pps=None, name=None, namespaces=None, point_tags=None, scope=None, sources=None, tags_anded=None, _configuration=None): # noqa: E501
73+
def __init__(self, accounts=None, alert=None, customer=None, description=None, groups=None, id=None, is_limited=None, last_updated_account_id=None, last_updated_ms=None, limit_pps=None, name=None, namespaces=None, point_tags=None, scope=None, sources=None, tags_anded=None, _configuration=None): # noqa: E501
7674
"""IngestionPolicyWriteModel - a model defined in Swagger""" # noqa: E501
7775
if _configuration is None:
7876
_configuration = Configuration()
7977
self._configuration = _configuration
8078

8179
self._accounts = None
8280
self._alert = None
83-
self._alert_id = None
8481
self._customer = None
8582
self._description = None
8683
self._groups = None
@@ -101,8 +98,6 @@ def __init__(self, accounts=None, alert=None, alert_id=None, customer=None, desc
10198
self.accounts = accounts
10299
if alert is not None:
103100
self.alert = alert
104-
if alert_id is not None:
105-
self.alert_id = alert_id
106101
if customer is not None:
107102
self.customer = customer
108103
if description is not None:
@@ -178,29 +173,6 @@ def alert(self, alert):
178173

179174
self._alert = alert
180175

181-
@property
182-
def alert_id(self):
183-
"""Gets the alert_id of this IngestionPolicyWriteModel. # noqa: E501
184-
185-
The ingestion policy alert Id # noqa: E501
186-
187-
:return: The alert_id of this IngestionPolicyWriteModel. # noqa: E501
188-
:rtype: str
189-
"""
190-
return self._alert_id
191-
192-
@alert_id.setter
193-
def alert_id(self, alert_id):
194-
"""Sets the alert_id of this IngestionPolicyWriteModel.
195-
196-
The ingestion policy alert Id # noqa: E501
197-
198-
:param alert_id: The alert_id of this IngestionPolicyWriteModel. # noqa: E501
199-
:type: str
200-
"""
201-
202-
self._alert_id = alert_id
203-
204176
@property
205177
def customer(self):
206178
"""Gets the customer of this IngestionPolicyWriteModel. # noqa: E501

0 commit comments

Comments
 (0)