-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from waylayio/chore/regenerate
Regenerate data sdk 🔁
- Loading branch information
Showing
113 changed files
with
633 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.7.0 | ||
7.8.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# MultipleSeriesQueryRequestInner | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**var_from** | [**SeriesQueryRequestFrom**](SeriesQueryRequestFrom.md) | | [optional] | ||
**until** | [**SeriesQueryRequestFrom**](SeriesQueryRequestFrom.md) | | [optional] | ||
**window** | [**SeriesQueryRequestWindow**](SeriesQueryRequestWindow.md) | | [optional] | ||
**metric** | **str** | Key that identifies a single timeseries for a given _Resource_. Corresponds with the top-level keys of _Message Events_ that are processed by the broker for that _Resource_. | | ||
**aggregates** | **List[object]** | | | ||
**grouping** | [**Grouping**](Grouping.md) | | [optional] | ||
**resources** | **List[str]** | | | ||
**max_results** | **int** | | [optional] | ||
**filter** | [**TimeseriesFilter**](TimeseriesFilter.md) | | [optional] | ||
**order** | [**Order**](Order.md) | | [optional] [default to Order.ASCENDING] | ||
|
||
## Example | ||
|
||
```python | ||
from waylay.services.data.models.multiple_series_query_request_inner import MultipleSeriesQueryRequestInner | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of MultipleSeriesQueryRequestInner from a JSON string | ||
multiple_series_query_request_inner_instance = MultipleSeriesQueryRequestInner.from_json(json) | ||
# print the JSON string representation of the object | ||
print MultipleSeriesQueryRequestInner.to_json() | ||
|
||
# convert the object into a dict | ||
multiple_series_query_request_inner_dict = multiple_series_query_request_inner_instance.to_dict() | ||
# create an instance of MultipleSeriesQueryRequestInner from a dict | ||
multiple_series_query_request_inner_form_dict = multiple_series_query_request_inner.from_dict(multiple_series_query_request_inner_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# SeriesQueryWithoutAggregatesRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**var_from** | [**SeriesQueryRequestFrom**](SeriesQueryRequestFrom.md) | | [optional] | ||
**until** | [**SeriesQueryRequestFrom**](SeriesQueryRequestFrom.md) | | [optional] | ||
**window** | [**SeriesQueryRequestWindow**](SeriesQueryRequestWindow.md) | | [optional] | ||
**metric** | **str** | Key that identifies a single timeseries for a given _Resource_. Corresponds with the top-level keys of _Message Events_ that are processed by the broker for that _Resource_. | | ||
**aggregates** | **List[object]** | | [optional] | ||
**resources** | **List[str]** | | | ||
**max_results** | **int** | | [optional] | ||
**filter** | [**TimeseriesFilter**](TimeseriesFilter.md) | | [optional] | ||
**order** | [**Order**](Order.md) | | [optional] [default to Order.ASCENDING] | ||
|
||
## Example | ||
|
||
```python | ||
from waylay.services.data.models.series_query_without_aggregates_request import SeriesQueryWithoutAggregatesRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of SeriesQueryWithoutAggregatesRequest from a JSON string | ||
series_query_without_aggregates_request_instance = SeriesQueryWithoutAggregatesRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print SeriesQueryWithoutAggregatesRequest.to_json() | ||
|
||
# convert the object into a dict | ||
series_query_without_aggregates_request_dict = series_query_without_aggregates_request_instance.to_dict() | ||
# create an instance of SeriesQueryWithoutAggregatesRequest from a dict | ||
series_query_without_aggregates_request_form_dict = series_query_without_aggregates_request.from_dict(series_query_without_aggregates_request_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
pydantic ~= 2.6 | ||
typing-extensions ~= 4.9 | ||
waylay-sdk-core ~= 0.2.3 | ||
waylay-sdk-core ~= 0.2.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.