google-apis-analyticsdata_v1beta 0.38.0 → 0.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83757f49c5df2957567f27fcc380fd4165c822910fb7e9b363332ac4d8169794
|
4
|
+
data.tar.gz: 22fa00a3d1350c7584507ee225adeda739d319a8c1d4a6409fce02699bf44595
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f26797188c4502e6590b4179218188c053e29d0faec181ac4b014b5198c01d7ef5a82146bc36e7abf739c05289dbd82946e04f660158f6d2b4bb934df4a3ebc3
|
7
|
+
data.tar.gz: 2ea1f5178832abd5c3dbb30773ca8747f4172d3fc5dd9a9566d032d342edc163fcfb85026904259c8526dbf8497201561a64d8fa0f3a86cf437eddd2cf396ddb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-analyticsdata_v1beta
|
2
2
|
|
3
|
+
### v0.40.0 (2025-05-04)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.17.0
|
6
|
+
|
7
|
+
### v0.39.0 (2024-11-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241117
|
10
|
+
|
3
11
|
### v0.38.0 (2024-09-01)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240825
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://developers.google.com/analytics/devguides/re
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -882,6 +882,19 @@ module Google
|
|
882
882
|
end
|
883
883
|
end
|
884
884
|
|
885
|
+
# Filter for empty values.
|
886
|
+
class EmptyFilter
|
887
|
+
include Google::Apis::Core::Hashable
|
888
|
+
|
889
|
+
def initialize(**args)
|
890
|
+
update!(**args)
|
891
|
+
end
|
892
|
+
|
893
|
+
# Update properties of this object
|
894
|
+
def update!(**args)
|
895
|
+
end
|
896
|
+
end
|
897
|
+
|
885
898
|
# An expression to filter dimension or metric values.
|
886
899
|
class Filter
|
887
900
|
include Google::Apis::Core::Hashable
|
@@ -891,6 +904,11 @@ module Google
|
|
891
904
|
# @return [Google::Apis::AnalyticsdataV1beta::BetweenFilter]
|
892
905
|
attr_accessor :between_filter
|
893
906
|
|
907
|
+
# Filter for empty values.
|
908
|
+
# Corresponds to the JSON property `emptyFilter`
|
909
|
+
# @return [Google::Apis::AnalyticsdataV1beta::EmptyFilter]
|
910
|
+
attr_accessor :empty_filter
|
911
|
+
|
894
912
|
# The dimension name or metric name. In most methods, dimensions & metrics can
|
895
913
|
# be used for the first time in this field. However in a RunPivotReportRequest,
|
896
914
|
# this field must be additionally specified by name in the RunPivotReportRequest'
|
@@ -921,6 +939,7 @@ module Google
|
|
921
939
|
# Update properties of this object
|
922
940
|
def update!(**args)
|
923
941
|
@between_filter = args[:between_filter] if args.key?(:between_filter)
|
942
|
+
@empty_filter = args[:empty_filter] if args.key?(:empty_filter)
|
924
943
|
@field_name = args[:field_name] if args.key?(:field_name)
|
925
944
|
@in_list_filter = args[:in_list_filter] if args.key?(:in_list_filter)
|
926
945
|
@numeric_filter = args[:numeric_filter] if args.key?(:numeric_filter)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AnalyticsdataV1beta
|
18
18
|
# Version of the google-apis-analyticsdata_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.40.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241117"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -178,6 +178,12 @@ module Google
|
|
178
178
|
include Google::Apis::Core::JsonObjectSupport
|
179
179
|
end
|
180
180
|
|
181
|
+
class EmptyFilter
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
181
187
|
class Filter
|
182
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
189
|
|
@@ -669,11 +675,19 @@ module Google
|
|
669
675
|
end
|
670
676
|
end
|
671
677
|
|
678
|
+
class EmptyFilter
|
679
|
+
# @private
|
680
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
681
|
+
end
|
682
|
+
end
|
683
|
+
|
672
684
|
class Filter
|
673
685
|
# @private
|
674
686
|
class Representation < Google::Apis::Core::JsonRepresentation
|
675
687
|
property :between_filter, as: 'betweenFilter', class: Google::Apis::AnalyticsdataV1beta::BetweenFilter, decorator: Google::Apis::AnalyticsdataV1beta::BetweenFilter::Representation
|
676
688
|
|
689
|
+
property :empty_filter, as: 'emptyFilter', class: Google::Apis::AnalyticsdataV1beta::EmptyFilter, decorator: Google::Apis::AnalyticsdataV1beta::EmptyFilter::Representation
|
690
|
+
|
677
691
|
property :field_name, as: 'fieldName'
|
678
692
|
property :in_list_filter, as: 'inListFilter', class: Google::Apis::AnalyticsdataV1beta::InListFilter, decorator: Google::Apis::AnalyticsdataV1beta::InListFilter::Representation
|
679
693
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-analyticsdata_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.40.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsdata_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsdata_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsdata_v1beta/v0.40.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsdata_v1beta
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -68,15 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
66
|
requirements:
|
69
67
|
- - ">="
|
70
68
|
- !ruby/object:Gem::Version
|
71
|
-
version: '
|
69
|
+
version: '3.1'
|
72
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
71
|
requirements:
|
74
72
|
- - ">="
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.8
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Google Analytics Data API V1beta
|
82
79
|
test_files: []
|