Skip to content

Commit 952155b

Browse files
yoshi-automationsofisl
authored andcommitted
feat(analyticsdata): update the API
#### analyticsdata:v1beta The following keys were added: - schemas.EmptyFilter.description - schemas.EmptyFilter.id - schemas.EmptyFilter.type - schemas.Filter.properties.emptyFilter.$ref - schemas.Filter.properties.emptyFilter.description
1 parent 9d4dd10 commit 952155b

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

discovery/analyticsdata-v1beta.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@
440440
}
441441
}
442442
},
443-
"revision": "20240825",
443+
"revision": "20241117",
444444
"rootUrl": "https://analyticsdata.googleapis.com/",
445445
"schemas": {
446446
"ActiveMetricRestriction": {
@@ -1007,6 +1007,12 @@
10071007
},
10081008
"type": "object"
10091009
},
1010+
"EmptyFilter": {
1011+
"description": "Filter for empty values.",
1012+
"id": "EmptyFilter",
1013+
"properties": {},
1014+
"type": "object"
1015+
},
10101016
"Filter": {
10111017
"description": "An expression to filter dimension or metric values.",
10121018
"id": "Filter",
@@ -1015,6 +1021,10 @@
10151021
"$ref": "BetweenFilter",
10161022
"description": "A filter for two values."
10171023
},
1024+
"emptyFilter": {
1025+
"$ref": "EmptyFilter",
1026+
"description": "A filter for empty values such as \"(not set)\" and \"\" values."
1027+
},
10181028
"fieldName": {
10191029
"description": "The dimension name or metric name. In most methods, dimensions & metrics can be used for the first time in this field. However in a RunPivotReportRequest, this field must be additionally specified by name in the RunPivotReportRequest's dimensions or metrics.",
10201030
"type": "string"

src/apis/analyticsdata/v1beta.ts

+8
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,10 @@ export namespace analyticsdata_v1beta {
517517
*/
518518
value?: string | null;
519519
}
520+
/**
521+
* Filter for empty values.
522+
*/
523+
export interface Schema$EmptyFilter {}
520524
/**
521525
* An expression to filter dimension or metric values.
522526
*/
@@ -525,6 +529,10 @@ export namespace analyticsdata_v1beta {
525529
* A filter for two values.
526530
*/
527531
betweenFilter?: Schema$BetweenFilter;
532+
/**
533+
* A filter for empty values such as "(not set)" and "" values.
534+
*/
535+
emptyFilter?: Schema$EmptyFilter;
528536
/**
529537
* The dimension name or metric name. In most methods, dimensions & metrics can be used for the first time in this field. However in a RunPivotReportRequest, this field must be additionally specified by name in the RunPivotReportRequest's dimensions or metrics.
530538
*/

0 commit comments

Comments
 (0)