Skip to content

Commit

Permalink
Regenerate client from commit e72d1cd of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Feb 14, 2022
1 parent 213eb4d commit dff4b21
Show file tree
Hide file tree
Showing 8 changed files with 95 additions and 91 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.6.2",
"regenerated": "2022-02-11 17:09:49.390149",
"spec_repo_commit": "f8964dd"
"regenerated": "2022-02-14 18:02:49.536307",
"spec_repo_commit": "e72d1cd"
},
"v2": {
"apigentools_version": "1.6.2",
"regenerated": "2022-02-11 17:09:49.404192",
"spec_repo_commit": "f8964dd"
"regenerated": "2022-02-14 18:02:49.548290",
"spec_repo_commit": "e72d1cd"
}
}
}
38 changes: 19 additions & 19 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2563,7 +2563,10 @@ components:
example: '@browser.name:Chrome'
type: string
steps:
$ref: '#/components/schemas/FunnelSteps'
description: List of funnel steps.
items:
$ref: '#/components/schemas/FunnelStep'
type: array
required:
- query_string
- data_source
Expand All @@ -2586,24 +2589,21 @@ components:
type: string
x-enum-varnames:
- RUM
FunnelSteps:
description: List of funnel steps.
items:
description: The funnel step.
properties:
facet:
description: The facet of the step.
example: '@view.name'
type: string
value:
description: The value of the step.
example: /apm/home
type: string
required:
- facet
- value
type: object
type: array
FunnelStep:
description: The funnel step.
properties:
facet:
description: The facet of the step.
example: '@view.name'
type: string
value:
description: The value of the step.
example: /apm/home
type: string
required:
- facet
- value
type: object
FunnelWidgetDefinition:
description: 'The funnel visualization displays a funnel of user sessions that
maps a sequence of view navigation and user interaction in your application.
Expand Down
6 changes: 3 additions & 3 deletions docs/datadog_api_client.v1.model.rst
Original file line number Diff line number Diff line change
Expand Up @@ -889,10 +889,10 @@ funnel\_source
:undoc-members:
:show-inheritance:

funnel\_steps
-------------
funnel\_step
------------

.. automodule:: datadog_api_client.v1.model.funnel_steps
.. automodule:: datadog_api_client.v1.model.funnel_step
:members:
:undoc-members:
:show-inheritance:
Expand Down
3 changes: 1 addition & 2 deletions examples/v1/dashboards/CreateDashboard_927141680.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from datadog_api_client.v1.model.funnel_query import FunnelQuery
from datadog_api_client.v1.model.funnel_request_type import FunnelRequestType
from datadog_api_client.v1.model.funnel_source import FunnelSource
from datadog_api_client.v1.model.funnel_steps import FunnelSteps
from datadog_api_client.v1.model.funnel_widget_definition import FunnelWidgetDefinition
from datadog_api_client.v1.model.funnel_widget_definition_type import FunnelWidgetDefinitionType
from datadog_api_client.v1.model.funnel_widget_request import FunnelWidgetRequest
Expand All @@ -24,7 +23,7 @@
type=FunnelWidgetDefinitionType("funnel"),
requests=[
FunnelWidgetRequest(
query=FunnelQuery(data_source=FunnelSource("rum"), query_string="", steps=FunnelSteps([])),
query=FunnelQuery(data_source=FunnelSource("rum"), query_string="", steps=[]),
request_type=FunnelRequestType("funnel"),
)
],
Expand Down
9 changes: 5 additions & 4 deletions src/datadog_api_client/v1/model/funnel_query.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

62 changes: 62 additions & 0 deletions src/datadog_api_client/v1/model/funnel_step.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

58 changes: 0 additions & 58 deletions src/datadog_api_client/v1/model/funnel_steps.py

This file was deleted.

2 changes: 1 addition & 1 deletion src/datadog_api_client/v1/models/__init__.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit dff4b21

Please sign in to comment.