Skip to content

Commit

Permalink
Regenerate client from commit 9cb48f2 of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Jul 29, 2021
1 parent 4209e2a commit 7076315
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.4.1.dev11",
"regenerated": "2021-07-23 09:17:27.076054",
"spec_repo_commit": "0b10309"
"regenerated": "2021-07-29 18:36:58.344870",
"spec_repo_commit": "9cb48f2"
},
"v2": {
"apigentools_version": "1.4.1.dev11",
"regenerated": "2021-07-23 09:17:49.537097",
"spec_repo_commit": "0b10309"
"regenerated": "2021-07-29 18:37:21.022086",
"spec_repo_commit": "9cb48f2"
}
}
}
2 changes: 1 addition & 1 deletion docs/v1/ListStreamSource.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Source from which to query items to display in the stream.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**value** | **str** | Source from which to query items to display in the stream. | defaults to "issue_stream", must be one of ["issue_stream", "logs_stream", ]
**value** | **str** | Source from which to query items to display in the stream. | defaults to "issue_stream", must be one of ["issue_stream", "logs_stream", "audit_stream", ]

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

Expand Down
5 changes: 3 additions & 2 deletions src/datadog_api_client/v1/model/list_stream_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ class ListStreamSource(ModelSimple):
("value",): {
"ISSUE_STREAM": "issue_stream",
"LOGS_STREAM": "logs_stream",
"AUDIT_STREAM": "audit_stream",
},
}

Expand Down Expand Up @@ -95,10 +96,10 @@ def __init__(self, *args, **kwargs):
Note that value can be passed either in args or in kwargs, but not in both.
Args:
args[0] (str): Source from which to query items to display in the stream.. if omitted defaults to "issue_stream", must be one of ["issue_stream", "logs_stream", ] # noqa: E501
args[0] (str): Source from which to query items to display in the stream.. if omitted defaults to "issue_stream", must be one of ["issue_stream", "logs_stream", "audit_stream", ] # noqa: E501
Keyword Args:
value (str): Source from which to query items to display in the stream.. if omitted defaults to "issue_stream", must be one of ["issue_stream", "logs_stream", ] # noqa: E501
value (str): Source from which to query items to display in the stream.. if omitted defaults to "issue_stream", must be one of ["issue_stream", "logs_stream", "audit_stream", ] # noqa: E501
_check_type (bool): if True, values for parameters in openapi_types
will be type checked and a TypeError will be
raised if the wrong type is input.
Expand Down
2 changes: 2 additions & 0 deletions src/datadog_api_client/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3333,11 +3333,13 @@ components:
enum:
- issue_stream
- logs_stream
- audit_stream
example: issue_stream
type: string
x-enum-varnames:
- ISSUE_STREAM
- LOGS_STREAM
- AUDIT_STREAM
ListStreamWidgetDefinition:
description: 'The list stream visualization displays a table of recent events
in your application that
Expand Down
2 changes: 1 addition & 1 deletion tests/v1/features/synthetics.feature
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Feature: Synthetics
And a valid "appKeyAuth" key in the system
And an instance of "Synthetics" API

@replay-only @skip-python @skip-typescript @skip-java @skip-ruby
@replay-only @skip-java @skip-python @skip-ruby @skip-typescript
Scenario: Client is resilient to enum and oneOf deserialization errors
Given new "ListTests" request
When the request is sent
Expand Down

0 comments on commit 7076315

Please sign in to comment.