Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

Commit fbbc72b

Browse files
committed
Autogenerated Update v2.78.2.
1 parent 451987a commit fbbc72b

File tree

10 files changed

+91
-8
lines changed

10 files changed

+91
-8
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.76.1"
6+
"packageVersion": "2.78.2"
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.75.2"
6+
"packageVersion": "2.76.1"
77
}

README.md

Lines changed: 1 addition & 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.76.1
7+
- Package version: 2.78.2
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99

1010
## Requirements.

docs/Annotation.md

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

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

docs/CloudIntegration.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Name | Type | Description | Notes
2828
**last_received_data_point_ms** | **int** | Time that this integration last received a data point, in epoch millis | [optional]
2929
**name** | **str** | The human-readable name of this integration |
3030
**new_relic** | [**NewRelicConfiguration**](NewRelicConfiguration.md) | | [optional]
31+
**reuse_external_id_credential** | **str** | | [optional]
3132
**service** | **str** | A value denoting which cloud service this integration integrates with |
3233
**service_refresh_rate_in_mins** | **int** | Service refresh rate in minutes. | [optional]
3334
**tesla** | [**TeslaConfiguration**](TeslaConfiguration.md) | | [optional]

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

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.76.1/python'
77+
self.user_agent = 'Swagger-Codegen/2.78.2/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.76.1".\
251+
"SDK Package Version: 2.78.2".\
252252
format(env=sys.platform, pyversion=sys.version)

wavefront_api_client/models/annotation.py

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

3638
attribute_map = {
39+
'key': 'key',
40+
'value': 'value'
3741
}
3842

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

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+
4397
def to_dict(self):
4498
"""Returns the model properties as a dict"""
4599
result = {}

wavefront_api_client/models/cloud_integration.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ class CloudIntegration(object):
5656
'last_received_data_point_ms': 'int',
5757
'name': 'str',
5858
'new_relic': 'NewRelicConfiguration',
59+
'reuse_external_id_credential': 'str',
5960
'service': 'str',
6061
'service_refresh_rate_in_mins': 'int',
6162
'tesla': 'TeslaConfiguration',
@@ -89,14 +90,15 @@ class CloudIntegration(object):
8990
'last_received_data_point_ms': 'lastReceivedDataPointMs',
9091
'name': 'name',
9192
'new_relic': 'newRelic',
93+
'reuse_external_id_credential': 'reuseExternalIdCredential',
9294
'service': 'service',
9395
'service_refresh_rate_in_mins': 'serviceRefreshRateInMins',
9496
'tesla': 'tesla',
9597
'updated_epoch_millis': 'updatedEpochMillis',
9698
'updater_id': 'updaterId'
9799
}
98100

99-
def __init__(self, additional_tags=None, app_dynamics=None, azure=None, azure_activity_log=None, cloud_trail=None, cloud_watch=None, created_epoch_millis=None, creator_id=None, deleted=None, disabled=None, ec2=None, force_save=None, gcp=None, gcp_billing=None, id=None, in_trash=None, last_error=None, last_error_event=None, last_error_ms=None, last_metric_count=None, last_processing_timestamp=None, last_processor_id=None, last_received_data_point_ms=None, name=None, new_relic=None, service=None, service_refresh_rate_in_mins=None, tesla=None, updated_epoch_millis=None, updater_id=None): # noqa: E501
101+
def __init__(self, additional_tags=None, app_dynamics=None, azure=None, azure_activity_log=None, cloud_trail=None, cloud_watch=None, created_epoch_millis=None, creator_id=None, deleted=None, disabled=None, ec2=None, force_save=None, gcp=None, gcp_billing=None, id=None, in_trash=None, last_error=None, last_error_event=None, last_error_ms=None, last_metric_count=None, last_processing_timestamp=None, last_processor_id=None, last_received_data_point_ms=None, name=None, new_relic=None, reuse_external_id_credential=None, service=None, service_refresh_rate_in_mins=None, tesla=None, updated_epoch_millis=None, updater_id=None): # noqa: E501
100102
"""CloudIntegration - a model defined in Swagger""" # noqa: E501
101103

102104
self._additional_tags = None
@@ -124,6 +126,7 @@ def __init__(self, additional_tags=None, app_dynamics=None, azure=None, azure_ac
124126
self._last_received_data_point_ms = None
125127
self._name = None
126128
self._new_relic = None
129+
self._reuse_external_id_credential = None
127130
self._service = None
128131
self._service_refresh_rate_in_mins = None
129132
self._tesla = None
@@ -180,6 +183,8 @@ def __init__(self, additional_tags=None, app_dynamics=None, azure=None, azure_ac
180183
self.name = name
181184
if new_relic is not None:
182185
self.new_relic = new_relic
186+
if reuse_external_id_credential is not None:
187+
self.reuse_external_id_credential = reuse_external_id_credential
183188
self.service = service
184189
if service_refresh_rate_in_mins is not None:
185190
self.service_refresh_rate_in_mins = service_refresh_rate_in_mins
@@ -735,6 +740,27 @@ def new_relic(self, new_relic):
735740

736741
self._new_relic = new_relic
737742

743+
@property
744+
def reuse_external_id_credential(self):
745+
"""Gets the reuse_external_id_credential of this CloudIntegration. # noqa: E501
746+
747+
748+
:return: The reuse_external_id_credential of this CloudIntegration. # noqa: E501
749+
:rtype: str
750+
"""
751+
return self._reuse_external_id_credential
752+
753+
@reuse_external_id_credential.setter
754+
def reuse_external_id_credential(self, reuse_external_id_credential):
755+
"""Sets the reuse_external_id_credential of this CloudIntegration.
756+
757+
758+
:param reuse_external_id_credential: The reuse_external_id_credential of this CloudIntegration. # noqa: E501
759+
:type: str
760+
"""
761+
762+
self._reuse_external_id_credential = reuse_external_id_credential
763+
738764
@property
739765
def service(self):
740766
"""Gets the service of this CloudIntegration. # noqa: E501

0 commit comments

Comments
 (0)