google-apis-analyticsdata_v1beta 0.28.0 → 0.30.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: b930b9198277576bf8326263af099440eb0678b17af080a72188e471a5a82d3b
4
- data.tar.gz: 93db4e8c687ff5229fd0d9c69516e5c00ca48a774ef4eb48f9821e9568473316
3
+ metadata.gz: f336745b78d9587838a385f7553a5c6ed9ff7878c653b51ca5b926aeb5794986
4
+ data.tar.gz: 9e40c2605383aab52f9db4217260621bfbe07854c4c4ade7c2099e115b3842c4
5
5
  SHA512:
6
- metadata.gz: e44939a6862b72e00f52d66aa9f87815d372489b55fc4bf14dda64820a45b4258095fc6ccfb18918fb4e342b47e3001790bb5683bff593068e89fe7108c49323
7
- data.tar.gz: 9d2208a715a651aebb1de48db0841660fce00ee2d4e8a022648da24b71910d92947774388db40f9a07423b955f8267c078b88057f4d0668d368a5faba056948f
6
+ metadata.gz: 3e0c3c4dad35c83a1b5cbfe2d80e274087618e9620b12252fcb6fb46255a874a713a868f6a536624a9fadb28e79d60f1a1823d8d36b577f726d654ebb36df5d6
7
+ data.tar.gz: bbc5c0978201ed37d05dcbfdcd8e39c6cdb30a4f8dc90336399ef3c13d8741f0efd04ae72161b0b22c7eb44b43f68b2f8dad475d566af9a59086754d68deff99
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-analyticsdata_v1beta
2
2
 
3
+ ### v0.30.0 (2023-09-24)
4
+
5
+ * Regenerated from discovery document revision 20230917
6
+
7
+ ### v0.29.0 (2023-09-10)
8
+
9
+ * Regenerated from discovery document revision 20230904
10
+
3
11
  ### v0.28.0 (2023-08-13)
4
12
 
5
13
  * Regenerated from discovery document revision 20230808
@@ -515,12 +515,19 @@ module Google
515
515
 
516
516
  # The name of the dimension. See the [API Dimensions](https://developers.google.
517
517
  # com/analytics/devguides/reporting/data/v1/api-schema#dimensions) for the list
518
- # of dimension names. If `dimensionExpression` is specified, `name` can be any
519
- # string that you would like within the allowed character set. For example if a `
520
- # dimensionExpression` concatenates `country` and `city`, you could call that
521
- # dimension `countryAndCity`. Dimension names that you choose must match the
522
- # regular expression `^[a-zA-Z0-9_]$`. Dimensions are referenced by `name` in `
523
- # dimensionFilter`, `orderBys`, `dimensionExpression`, and `pivots`.
518
+ # of dimension names supported by core reporting methods such as `runReport` and
519
+ # `batchRunReports`. See [Realtime Dimensions](https://developers.google.com/
520
+ # analytics/devguides/reporting/data/v1/realtime-api-schema#dimensions) for the
521
+ # list of dimension names supported by the `runRealtimeReport` method. See [
522
+ # Funnel Dimensions](https://developers.google.com/analytics/devguides/reporting/
523
+ # data/v1/exploration-api-schema#dimensions) for the list of dimension names
524
+ # supported by the `runFunnelReport` method. If `dimensionExpression` is
525
+ # specified, `name` can be any string that you would like within the allowed
526
+ # character set. For example if a `dimensionExpression` concatenates `country`
527
+ # and `city`, you could call that dimension `countryAndCity`. Dimension names
528
+ # that you choose must match the regular expression `^[a-zA-Z0-9_]$`. Dimensions
529
+ # are referenced by `name` in `dimensionFilter`, `orderBys`, `
530
+ # dimensionExpression`, and `pivots`.
524
531
  # Corresponds to the JSON property `name`
525
532
  # @return [String]
526
533
  attr_accessor :name
@@ -847,7 +854,8 @@ module Google
847
854
  end
848
855
  end
849
856
 
850
- # The dimensions and metrics currently accepted in reporting methods.
857
+ # The dimensions, metrics and comparisons currently accepted in reporting
858
+ # methods.
851
859
  class Metadata
852
860
  include Google::Apis::Core::Hashable
853
861
 
@@ -899,10 +907,16 @@ module Google
899
907
 
900
908
  # The name of the metric. See the [API Metrics](https://developers.google.com/
901
909
  # analytics/devguides/reporting/data/v1/api-schema#metrics) for the list of
902
- # metric names. If `expression` is specified, `name` can be any string that you
903
- # would like within the allowed character set. For example if `expression` is `
904
- # screenPageViews/sessions`, you could call that metric's name = `
905
- # viewsPerSession`. Metric names that you choose must match the regular
910
+ # metric names supported by core reporting methods such as `runReport` and `
911
+ # batchRunReports`. See [Realtime Metrics](https://developers.google.com/
912
+ # analytics/devguides/reporting/data/v1/realtime-api-schema#metrics) for the
913
+ # list of metric names supported by the `runRealtimeReport` method. See [Funnel
914
+ # Metrics](https://developers.google.com/analytics/devguides/reporting/data/v1/
915
+ # exploration-api-schema#metrics) for the list of metric names supported by the `
916
+ # runFunnelReport` method. If `expression` is specified, `name` can be any
917
+ # string that you would like within the allowed character set. For example if `
918
+ # expression` is `screenPageViews/sessions`, you could call that metric's name =
919
+ # `viewsPerSession`. Metric names that you choose must match the regular
906
920
  # expression `^[a-zA-Z0-9_]$`. Metrics are referenced by `name` in `metricFilter`
907
921
  # , `orderBys`, and metric `expression`.
908
922
  # Corresponds to the JSON property `name`
@@ -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.28.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230808"
25
+ REVISION = "20230917"
26
26
  end
27
27
  end
28
28
  end
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.28.0
4
+ version: 0.30.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: 2023-08-20 00:00:00.000000000 Z
11
+ date: 2023-09-24 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.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsdata_v1beta/v0.30.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.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Analytics Data API V1beta