Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13992,19 +13992,19 @@ components:
x-enum-varnames:
- NETFLOW_SANKEY
SankeyRumDataSource:
default: rum
description: Sankey widget with RUM data source.
default: product_analytics
description: Product Analytics or RUM data source type.
enum:
- rum
- product_analytics
example: rum
example: product_analytics
type: string
x-enum-varnames:
- RUM
- PRODUCT_ANALYTICS
SankeyRumQuery:
additionalProperties: false
description: Sankey widget with RUM data source query.
description: Query configuration for Product Analytics or RUM Sankey widget.
properties:
audience_filters:
$ref: "#/components/schemas/ProductAnalyticsAudienceFilters"
Expand Down Expand Up @@ -14044,7 +14044,7 @@ components:
type: object
SankeyRumQueryMode:
default: source
description: Sankey mode for RUM queries.
description: Sankey mode for Product Analytics or RUM queries.
enum:
- source
- target
Expand All @@ -14055,7 +14055,7 @@ components:
- TARGET
SankeyRumRequest:
additionalProperties: false
description: Sankey widget with RUM data source.
description: Sankey widget request for Product Analytics or RUM data source.
properties:
query:
$ref: "#/components/schemas/SankeyRumQuery"
Expand Down
4 changes: 2 additions & 2 deletions src/datadog_api_client/v1/model/sankey_rum_data_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@

class SankeyRumDataSource(ModelSimple):
"""
Sankey widget with RUM data source.
Product Analytics or RUM data source type.

:param value: If omitted defaults to "rum". Must be one of ["rum", "product_analytics"].
:param value: If omitted defaults to "product_analytics". Must be one of ["rum", "product_analytics"].
:type value: str
"""

Expand Down
6 changes: 3 additions & 3 deletions src/datadog_api_client/v1/model/sankey_rum_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ def __init__(
**kwargs,
):
"""
Sankey widget with RUM data source query.
Query configuration for Product Analytics or RUM Sankey widget.

:param audience_filters: Product Analytics/RUM audience filters.
:type audience_filters: ProductAnalyticsAudienceFilters, optional

:param data_source: Sankey widget with RUM data source.
:param data_source: Product Analytics or RUM data source type.
:type data_source: SankeyRumDataSource

:param entries_per_step: Entries per step.
Expand All @@ -96,7 +96,7 @@ def __init__(
:param join_keys: Join keys.
:type join_keys: SankeyJoinKeys, optional

:param mode: Sankey mode for RUM queries.
:param mode: Sankey mode for Product Analytics or RUM queries.
:type mode: SankeyRumQueryMode

:param number_of_steps: Number of steps.
Expand Down
2 changes: 1 addition & 1 deletion src/datadog_api_client/v1/model/sankey_rum_query_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

class SankeyRumQueryMode(ModelSimple):
"""
Sankey mode for RUM queries.
Sankey mode for Product Analytics or RUM queries.

:param value: If omitted defaults to "source". Must be one of ["source", "target"].
:type value: str
Expand Down
4 changes: 2 additions & 2 deletions src/datadog_api_client/v1/model/sankey_rum_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ def openapi_types(_):

def __init__(self_, query: SankeyRumQuery, request_type: SankeyWidgetDefinitionType, **kwargs):
"""
Sankey widget with RUM data source.
Sankey widget request for Product Analytics or RUM data source.

:param query: Sankey widget with RUM data source query.
:param query: Query configuration for Product Analytics or RUM Sankey widget.
:type query: SankeyRumQuery

:param request_type: Type of the Sankey widget.
Expand Down
2 changes: 1 addition & 1 deletion src/datadog_api_client/v1/model/sankey_widget_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self, **kwargs):
"""
Request definition for Sankey widget.

:param query: Sankey widget with RUM data source query.
:param query: Query configuration for Product Analytics or RUM Sankey widget.
:type query: SankeyRumQuery

:param request_type: Type of the Sankey widget.
Expand Down
Loading