Skip to content

Commit c80cbc7

Browse files
author
wf-jenkins
committed
Autogenerated Update v2.199.1.
1 parent f06954a commit c80cbc7

12 files changed

+15
-15
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.197.1"
6+
"packageVersion": "2.199.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.196.2"
6+
"packageVersion": "2.197.1"
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.197.1
7+
- Package version: 2.199.1
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99

1010
## Requirements.

docs/Alert.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Name | Type | Description | Notes
6161
**orphan** | **bool** | | [optional]
6262
**points_scanned_at_last_query** | **int** | A derived field recording the number of data points scanned when the system last computed this alert's condition | [optional]
6363
**prefiring_host_label_pairs** | [**list[SourceLabelPair]**](SourceLabelPair.md) | Lists the series that are starting to fail, defined as failing for greater than 50% of the checks in the window determined by the \"minutes\" parameter | [optional]
64-
**process_rate_minutes** | **int** | The interval between checks for this alert, in minutes. Defaults to 1 minute | [optional]
64+
**process_rate_minutes** | **int** | The interval between checks for this alert, in minutes. Defaults to 5 minutes | [optional]
6565
**query_failing** | **bool** | Whether there was an exception when the alert condition last ran | [optional]
6666
**query_syntax_error** | **bool** | Whether there was an query syntax exception when the alert condition last ran | [optional]
6767
**resolve_after_minutes** | **int** | The number of consecutive minutes that a firing series matching the condition query must evaluate to \"false\" (zero value) before the alert resolves. When unset, this defaults to the same value as \"minutes\" | [optional]

docs/DerivedMetricDefinition.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Name | Type | Description | Notes
2121
**minutes** | **int** | Number of minutes to query for the derived metric |
2222
**name** | **str** | |
2323
**points_scanned_at_last_query** | **int** | A derived field recording the number of data points scanned when the system last computed the query | [optional]
24-
**process_rate_minutes** | **int** | The interval between executing the query, in minutes. Defaults to 1 minute | [optional]
24+
**process_rate_minutes** | **int** | The interval between executing the query, in minutes. Defaults to 5 minutes | [optional]
2525
**query** | **str** | A Wavefront query that is evaluated at regular intervals (default 1m). |
2626
**query_failing** | **bool** | Whether there was an exception when the query last ran | [optional]
2727
**query_qb_enabled** | **bool** | Whether the query was created using the Query Builder. Default false | [optional]

docs/IngestionPolicyAlert.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Name | Type | Description | Notes
6363
**orphan** | **bool** | | [optional]
6464
**points_scanned_at_last_query** | **int** | A derived field recording the number of data points scanned when the system last computed this alert's condition | [optional]
6565
**prefiring_host_label_pairs** | [**list[SourceLabelPair]**](SourceLabelPair.md) | Lists the series that are starting to fail, defined as failing for greater than 50% of the checks in the window determined by the \"minutes\" parameter | [optional]
66-
**process_rate_minutes** | **int** | The interval between checks for this alert, in minutes. Defaults to 1 minute | [optional]
66+
**process_rate_minutes** | **int** | The interval between checks for this alert, in minutes. Defaults to 5 minutes | [optional]
6767
**query_failing** | **bool** | Whether there was an exception when the alert condition last ran | [optional]
6868
**query_syntax_error** | **bool** | Whether there was an query syntax exception when the alert condition last ran | [optional]
6969
**resolve_after_minutes** | **int** | The number of consecutive minutes that a firing series matching the condition query must evaluate to \"false\" (zero value) before the alert resolves. When unset, this defaults to the same value as \"minutes\" | [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.197.1"
17+
VERSION = "2.199.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.197.1/python'
77+
self.user_agent = 'Swagger-Codegen/2.199.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.197.1".\
254+
"SDK Package Version: 2.199.1".\
255255
format(env=sys.platform, pyversion=sys.version)

wavefront_api_client/models/alert.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1790,7 +1790,7 @@ def prefiring_host_label_pairs(self, prefiring_host_label_pairs):
17901790
def process_rate_minutes(self):
17911791
"""Gets the process_rate_minutes of this Alert. # noqa: E501
17921792
1793-
The interval between checks for this alert, in minutes. Defaults to 1 minute # noqa: E501
1793+
The interval between checks for this alert, in minutes. Defaults to 5 minutes # noqa: E501
17941794
17951795
:return: The process_rate_minutes of this Alert. # noqa: E501
17961796
:rtype: int
@@ -1801,7 +1801,7 @@ def process_rate_minutes(self):
18011801
def process_rate_minutes(self, process_rate_minutes):
18021802
"""Sets the process_rate_minutes of this Alert.
18031803
1804-
The interval between checks for this alert, in minutes. Defaults to 1 minute # noqa: E501
1804+
The interval between checks for this alert, in minutes. Defaults to 5 minutes # noqa: E501
18051805
18061806
:param process_rate_minutes: The process_rate_minutes of this Alert. # noqa: E501
18071807
:type: int

wavefront_api_client/models/derived_metric_definition.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ def points_scanned_at_last_query(self, points_scanned_at_last_query):
602602
def process_rate_minutes(self):
603603
"""Gets the process_rate_minutes of this DerivedMetricDefinition. # noqa: E501
604604
605-
The interval between executing the query, in minutes. Defaults to 1 minute # noqa: E501
605+
The interval between executing the query, in minutes. Defaults to 5 minutes # noqa: E501
606606
607607
:return: The process_rate_minutes of this DerivedMetricDefinition. # noqa: E501
608608
:rtype: int
@@ -613,7 +613,7 @@ def process_rate_minutes(self):
613613
def process_rate_minutes(self, process_rate_minutes):
614614
"""Sets the process_rate_minutes of this DerivedMetricDefinition.
615615
616-
The interval between executing the query, in minutes. Defaults to 1 minute # noqa: E501
616+
The interval between executing the query, in minutes. Defaults to 5 minutes # noqa: E501
617617
618618
:param process_rate_minutes: The process_rate_minutes of this DerivedMetricDefinition. # noqa: E501
619619
:type: int

wavefront_api_client/models/ingestion_policy_alert.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1845,7 +1845,7 @@ def prefiring_host_label_pairs(self, prefiring_host_label_pairs):
18451845
def process_rate_minutes(self):
18461846
"""Gets the process_rate_minutes of this IngestionPolicyAlert. # noqa: E501
18471847
1848-
The interval between checks for this alert, in minutes. Defaults to 1 minute # noqa: E501
1848+
The interval between checks for this alert, in minutes. Defaults to 5 minutes # noqa: E501
18491849
18501850
:return: The process_rate_minutes of this IngestionPolicyAlert. # noqa: E501
18511851
:rtype: int
@@ -1856,7 +1856,7 @@ def process_rate_minutes(self):
18561856
def process_rate_minutes(self, process_rate_minutes):
18571857
"""Sets the process_rate_minutes of this IngestionPolicyAlert.
18581858
1859-
The interval between checks for this alert, in minutes. Defaults to 1 minute # noqa: E501
1859+
The interval between checks for this alert, in minutes. Defaults to 5 minutes # noqa: E501
18601860
18611861
:param process_rate_minutes: The process_rate_minutes of this IngestionPolicyAlert. # noqa: E501
18621862
:type: int

0 commit comments

Comments
 (0)