File tree Expand file tree Collapse file tree
src/main/java/com/datadog/api/client/v1/model Expand file tree Collapse file tree Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change 1818import java .util .HashSet ;
1919import java .util .Set ;
2020
21- /** Sankey widget with RUM data source. */
21+ /** Product Analytics or RUM data source type . */
2222@ JsonSerialize (using = SankeyRumDataSource .SankeyRumDataSourceSerializer .class )
2323public class SankeyRumDataSource extends ModelEnum <String > {
2424
Original file line number Diff line number Diff line change 1313import com .fasterxml .jackson .annotation .JsonPropertyOrder ;
1414import java .util .Objects ;
1515
16- /** Sankey widget with RUM data source query . */
16+ /** Query configuration for Product Analytics or RUM Sankey widget . */
1717@ JsonPropertyOrder ({
1818 SankeyRumQuery .JSON_PROPERTY_AUDIENCE_FILTERS ,
1919 SankeyRumQuery .JSON_PROPERTY_DATA_SOURCE ,
@@ -35,7 +35,7 @@ public class SankeyRumQuery {
3535 private ProductAnalyticsAudienceFilters audienceFilters ;
3636
3737 public static final String JSON_PROPERTY_DATA_SOURCE = "data_source" ;
38- private SankeyRumDataSource dataSource = SankeyRumDataSource .RUM ;
38+ private SankeyRumDataSource dataSource = SankeyRumDataSource .PRODUCT_ANALYTICS ;
3939
4040 public static final String JSON_PROPERTY_ENTRIES_PER_STEP = "entries_per_step" ;
4141 private Long entriesPerStep ;
@@ -108,7 +108,7 @@ public SankeyRumQuery dataSource(SankeyRumDataSource dataSource) {
108108 }
109109
110110 /**
111- * Sankey widget with RUM data source.
111+ * Product Analytics or RUM data source type .
112112 *
113113 * @return dataSource
114114 */
@@ -175,7 +175,7 @@ public SankeyRumQuery mode(SankeyRumQueryMode mode) {
175175 }
176176
177177 /**
178- * Sankey mode for RUM queries.
178+ * Sankey mode for Product Analytics or RUM queries.
179179 *
180180 * @return mode
181181 */
Original file line number Diff line number Diff line change 1818import java .util .HashSet ;
1919import java .util .Set ;
2020
21- /** Sankey mode for RUM queries. */
21+ /** Sankey mode for Product Analytics or RUM queries. */
2222@ JsonSerialize (using = SankeyRumQueryMode .SankeyRumQueryModeSerializer .class )
2323public class SankeyRumQueryMode extends ModelEnum <String > {
2424
Original file line number Diff line number Diff line change 1313import com .fasterxml .jackson .annotation .JsonPropertyOrder ;
1414import java .util .Objects ;
1515
16- /** Sankey widget with RUM data source. */
16+ /** Sankey widget request for Product Analytics or RUM data source. */
1717@ JsonPropertyOrder ({
1818 SankeyRumRequest .JSON_PROPERTY_QUERY ,
1919 SankeyRumRequest .JSON_PROPERTY_REQUEST_TYPE
@@ -48,7 +48,7 @@ public SankeyRumRequest query(SankeyRumQuery query) {
4848 }
4949
5050 /**
51- * Sankey widget with RUM data source query .
51+ * Query configuration for Product Analytics or RUM Sankey widget .
5252 *
5353 * @return query
5454 */
You can’t perform that action at this time.
0 commit comments