Skip to content

Commit fa17cdd

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 963b9ad of spec repo (#4035)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 8177d5e commit fa17cdd

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

.generator/schemas/v1/openapi.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13992,19 +13992,19 @@ components:
1399213992
x-enum-varnames:
1399313993
- NETFLOW_SANKEY
1399413994
SankeyRumDataSource:
13995-
default: rum
13996-
description: Sankey widget with RUM data source.
13995+
default: product_analytics
13996+
description: Product Analytics or RUM data source type.
1399713997
enum:
1399813998
- rum
1399913999
- product_analytics
14000-
example: rum
14000+
example: product_analytics
1400114001
type: string
1400214002
x-enum-varnames:
1400314003
- RUM
1400414004
- PRODUCT_ANALYTICS
1400514005
SankeyRumQuery:
1400614006
additionalProperties: false
14007-
description: Sankey widget with RUM data source query.
14007+
description: Query configuration for Product Analytics or RUM Sankey widget.
1400814008
properties:
1400914009
audience_filters:
1401014010
$ref: "#/components/schemas/ProductAnalyticsAudienceFilters"
@@ -14044,7 +14044,7 @@ components:
1404414044
type: object
1404514045
SankeyRumQueryMode:
1404614046
default: source
14047-
description: Sankey mode for RUM queries.
14047+
description: Sankey mode for Product Analytics or RUM queries.
1404814048
enum:
1404914049
- source
1405014050
- target
@@ -14055,7 +14055,7 @@ components:
1405514055
- TARGET
1405614056
SankeyRumRequest:
1405714057
additionalProperties: false
14058-
description: Sankey widget with RUM data source.
14058+
description: Sankey widget request for Product Analytics or RUM data source.
1405914059
properties:
1406014060
query:
1406114061
$ref: "#/components/schemas/SankeyRumQuery"

api/datadogV1/model_sankey_rum_data_source.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
1111
)
1212

13-
// SankeyRumDataSource Sankey widget with RUM data source.
13+
// SankeyRumDataSource Product Analytics or RUM data source type.
1414
type SankeyRumDataSource string
1515

1616
// List of SankeyRumDataSource.

api/datadogV1/model_sankey_rum_query.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ import (
1010
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
1111
)
1212

13-
// SankeyRumQuery Sankey widget with RUM data source query.
13+
// SankeyRumQuery Query configuration for Product Analytics or RUM Sankey widget.
1414
type SankeyRumQuery struct {
1515
// Product Analytics/RUM audience filters.
1616
AudienceFilters *ProductAnalyticsAudienceFilters `json:"audience_filters,omitempty"`
17-
// Sankey widget with RUM data source.
17+
// Product Analytics or RUM data source type.
1818
DataSource SankeyRumDataSource `json:"data_source"`
1919
// Entries per step.
2020
EntriesPerStep *int64 `json:"entries_per_step,omitempty"`
2121
// Join keys.
2222
JoinKeys *SankeyJoinKeys `json:"join_keys,omitempty"`
23-
// Sankey mode for RUM queries.
23+
// Sankey mode for Product Analytics or RUM queries.
2424
Mode SankeyRumQueryMode `json:"mode"`
2525
// Number of steps.
2626
NumberOfSteps *int64 `json:"number_of_steps,omitempty"`
@@ -55,7 +55,7 @@ func NewSankeyRumQuery(dataSource SankeyRumDataSource, mode SankeyRumQueryMode,
5555
// but it doesn't guarantee that properties required by API are set.
5656
func NewSankeyRumQueryWithDefaults() *SankeyRumQuery {
5757
this := SankeyRumQuery{}
58-
var dataSource SankeyRumDataSource = SANKEYRUMDATASOURCE_RUM
58+
var dataSource SankeyRumDataSource = SANKEYRUMDATASOURCE_PRODUCT_ANALYTICS
5959
this.DataSource = dataSource
6060
var mode SankeyRumQueryMode = SANKEYRUMQUERYMODE_SOURCE
6161
this.Mode = mode

api/datadogV1/model_sankey_rum_query_mode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
1111
)
1212

13-
// SankeyRumQueryMode Sankey mode for RUM queries.
13+
// SankeyRumQueryMode Sankey mode for Product Analytics or RUM queries.
1414
type SankeyRumQueryMode string
1515

1616
// List of SankeyRumQueryMode.

api/datadogV1/model_sankey_rum_request.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
1111
)
1212

13-
// SankeyRumRequest Sankey widget with RUM data source.
13+
// SankeyRumRequest Sankey widget request for Product Analytics or RUM data source.
1414
type SankeyRumRequest struct {
15-
// Sankey widget with RUM data source query.
15+
// Query configuration for Product Analytics or RUM Sankey widget.
1616
Query SankeyRumQuery `json:"query"`
1717
// Type of the Sankey widget.
1818
RequestType SankeyWidgetDefinitionType `json:"request_type"`

0 commit comments

Comments
 (0)