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

Commit 957b9d9

Browse files
committed
Autogenerated Update v2.111.0.
1 parent 169cbe3 commit 957b9d9

File tree

13 files changed

+369
-10
lines changed

13 files changed

+369
-10
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.110.1"
6+
"packageVersion": "2.111.0"
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.108.0"
6+
"packageVersion": "2.110.1"
77
}

README.md

Lines changed: 2 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.110.1
7+
- Package version: 2.111.0
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99

1010
## Requirements.
@@ -621,6 +621,7 @@ Class | Method | HTTP request | Description
621621
- [UserRequestDTO](docs/UserRequestDTO.md)
622622
- [UserToCreate](docs/UserToCreate.md)
623623
- [ValidatedUsersDTO](docs/ValidatedUsersDTO.md)
624+
- [VropsConfiguration](docs/VropsConfiguration.md)
624625
- [WFTags](docs/WFTags.md)
625626

626627

docs/CloudIntegration.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Name | Type | Description | Notes
3434
**tesla** | [**TeslaConfiguration**](TeslaConfiguration.md) | | [optional]
3535
**updated_epoch_millis** | **int** | | [optional]
3636
**updater_id** | **str** | | [optional]
37+
**vrops** | [**VropsConfiguration**](VropsConfiguration.md) | | [optional]
3738

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

docs/VropsConfiguration.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# VropsConfiguration
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**adapter_names** | **dict(str, list[str])** | Adapter names: Metrics will be fetched of only these adapter if given | [optional]
7+
**base_url** | **str** | The base url for vrops api, Default : https://www.mgmt.cloud.vmware.com/vrops-cloud | [optional]
8+
**categories_to_fetch** | **list[str]** | A list of vRops Adpater and Resource kind to fetch metrics. Allowable values are VMWARE_DATASTORE, VMWARE_DATASTORE) | [optional]
9+
**metric_filter_regex** | **str** | A regular expression that a metric name must match (case-insensitively) in order to be ingested | [optional]
10+
**organization_id** | **str** | OrganizationID will be derived from api token | [optional]
11+
**vrops_api_token** | **str** | The vRops API Token |
12+
13+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
14+
15+

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

test/test_vrops_configuration.py

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# coding: utf-8
2+
3+
"""
4+
Wavefront REST API
5+
6+
<p>The Wavefront REST API enables you to interact with Wavefront servers using standard REST API tools. You can use the REST API to automate commonly executed operations such as automatically tagging sources.</p><p>When you make REST API calls outside the Wavefront REST API documentation you must add the header \"Authorization: Bearer &lt;&lt;API-TOKEN&gt;&gt;\" to your HTTP requests.</p> # noqa: E501
7+
8+
OpenAPI spec version: v2
9+
Contact: chitimba@wavefront.com
10+
Generated by: https://github.com/swagger-api/swagger-codegen.git
11+
"""
12+
13+
14+
from __future__ import absolute_import
15+
16+
import unittest
17+
18+
import wavefront_api_client
19+
from wavefront_api_client.models.vrops_configuration import VropsConfiguration # noqa: E501
20+
from wavefront_api_client.rest import ApiException
21+
22+
23+
class TestVropsConfiguration(unittest.TestCase):
24+
"""VropsConfiguration unit test stubs"""
25+
26+
def setUp(self):
27+
pass
28+
29+
def tearDown(self):
30+
pass
31+
32+
def testVropsConfiguration(self):
33+
"""Test VropsConfiguration"""
34+
# FIXME: construct object with mandatory attributes with example values
35+
# model = wavefront_api_client.models.vrops_configuration.VropsConfiguration() # noqa: E501
36+
pass
37+
38+
39+
if __name__ == '__main__':
40+
unittest.main()

wavefront_api_client/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,4 +279,5 @@
279279
from wavefront_api_client.models.user_request_dto import UserRequestDTO
280280
from wavefront_api_client.models.user_to_create import UserToCreate
281281
from wavefront_api_client.models.validated_users_dto import ValidatedUsersDTO
282+
from wavefront_api_client.models.vrops_configuration import VropsConfiguration
282283
from wavefront_api_client.models.wf_tags import WFTags

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

8080
def __del__(self):

wavefront_api_client/configuration.py

Lines changed: 1 addition & 1 deletion
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.110.1".\
254+
"SDK Package Version: 2.111.0".\
255255
format(env=sys.platform, pyversion=sys.version)

0 commit comments

Comments
 (0)