google-apis-analyticsdata_v1beta 0.38.0 → 0.39.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: b4af9a846a88e9f171b96e64436e30877e2e83690669735b92ffd10530aa2321
4
- data.tar.gz: d7e0af2bcc9e678718448eecbb35664601e546b6971fdf12f8998309e56538d0
3
+ metadata.gz: ce7c7d8d23807406e96e14e4462b765bc71a491f4865dbf3aad63d1e0c0e454d
4
+ data.tar.gz: d283d1def9f527b09971e34a18b8a9923a17af3d3dc68a4ee40ad4c84d143911
5
5
  SHA512:
6
- metadata.gz: a9b8ccba850d497aa91734f6723d95acd38b368b7f1522b9341747e86686911a16791c25aece89c791a01bf76049820d0638c5ca3ac40f03f17663b2faa179ea
7
- data.tar.gz: 2cf1f0202f05d6ac6e467037843d1935665b7eede449b7c824e44af7d4e7150822dc227de55afdfec1829da90f7bb1b9744c2ba5ae6f857d4e989dc8c019d422
6
+ metadata.gz: 91099250c967576259d1bd47a0f00764177486ffa0f28afc5d680f5be7c1d238cae19151ef687a31c96ee8cebfd262f15b9ae215e90976e3eea6aaaf7d81a2be
7
+ data.tar.gz: e2936d20012b769ab551e6a268104131d5364493d3f127717776e99b2a937558fb4f85ca4afee9a556f726aa2d358ca874211179e76f4800811c89a800f9a9b6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-analyticsdata_v1beta
2
2
 
3
+ ### v0.39.0 (2024-11-24)
4
+
5
+ * Regenerated from discovery document revision 20241117
6
+
3
7
  ### v0.38.0 (2024-09-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20240825
@@ -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.38.0"
19
+ GEM_VERSION = "0.39.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240825"
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,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-analyticsdata_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.38.0
4
+ version: 0.39.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-01 00:00:00.000000000 Z
11
+ date: 2024-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  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.38.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsdata_v1beta/v0.39.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsdata_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Analytics Data API V1beta