google-analytics-data 0.3.0 → 0.4.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: ea88d7b57f5c1480694ee1bcbb2f366de3fa1b6538b69af462ef4d988a40ce27
4
- data.tar.gz: c656a4ae0634d46b090ef16546f925885736bee4607df359d1506c3b791da74c
3
+ metadata.gz: 449b984e6c080980edb9206dfa7e2b5cd727142ce8f4e4a540221730d810c9c0
4
+ data.tar.gz: eb22351b550f34fd634ee453adef465b3789feb03edf642fc4b387ed2ef1494d
5
5
  SHA512:
6
- metadata.gz: 862bd35a5e77ccc679a19fcdb1484fcfe41b67ed93bbecec9395e22673cf6e22ef41484b3563d312b8920e413c2c03a1fe929d04a9bd733b51b06c5e7c972770
7
- data.tar.gz: 257d5c7ebe5b5ccf75ab339faa869ce558e05e5ff7b1764e15f3ca214875103c63c49bbc67df1bbb2c08906d30b62dc77d458972a6a702c2235b9d0986592ee3
6
+ metadata.gz: 273efa537e1793a1b26366b8debe3536d58a9c5c7be65d11c2da74a03381355c585301db2a2ca9d1e99b4dbda9fe59be5e9a21a52d37243b3d45881f21dcb19e
7
+ data.tar.gz: 2324cb2e2d2412d91cf171f31d1e943ea11a00ec956fdaaf92416667cd7603d8c0da4b2423a9801097a6df94e0587dfd4a48ce5fd83a1b9f984ad937a491f8f5
data/AUTHENTICATION.md CHANGED
@@ -114,7 +114,7 @@ credentials are discovered.
114
114
  To configure your system for this, simply:
115
115
 
116
116
  1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
117
- 2. Authenticate using OAuth 2.0 `$ gcloud auth login`
117
+ 2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
118
118
  3. Write code as if already authenticated.
119
119
 
120
120
  **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
data/README.md CHANGED
@@ -34,32 +34,6 @@ In order to use this library, you first need to go through the following steps:
34
34
  1. [Enable the API.](https://console.cloud.google.com/apis/library/analyticsdata.googleapis.com)
35
35
  1. {file:AUTHENTICATION.md Set up authentication.}
36
36
 
37
- ## Enabling Logging
38
-
39
- To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
40
- The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
41
- or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
42
- that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
43
- and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
44
-
45
- Configuring a Ruby stdlib logger:
46
-
47
- ```ruby
48
- require "logger"
49
-
50
- module MyLogger
51
- LOGGER = Logger.new $stderr, level: Logger::WARN
52
- def logger
53
- LOGGER
54
- end
55
- end
56
-
57
- # Define a gRPC module-level logger method before grpc/logconfig.rb loads.
58
- module GRPC
59
- extend MyLogger
60
- end
61
- ```
62
-
63
37
  ## Supported Ruby Versions
64
38
 
65
39
  This library is supported on Ruby 2.6+.
@@ -20,7 +20,7 @@
20
20
  module Google
21
21
  module Analytics
22
22
  module Data
23
- VERSION = "0.3.0"
23
+ VERSION = "0.4.0"
24
24
  end
25
25
  end
26
26
  end
@@ -32,11 +32,13 @@ module Google
32
32
  #
33
33
  # By default, this returns an instance of
34
34
  # [Google::Analytics::Data::V1beta::AnalyticsData::Client](https://googleapis.dev/ruby/google-analytics-data-v1beta/latest/Google/Analytics/Data/V1beta/AnalyticsData/Client.html)
35
- # for version V1beta of the API.
36
- # However, you can specify specify a different API version by passing it in the
35
+ # for a gRPC client for version V1beta of the API.
36
+ # However, you can specify a different API version by passing it in the
37
37
  # `version` parameter. If the AnalyticsData service is
38
38
  # supported by that API version, and the corresponding gem is available, the
39
39
  # appropriate versioned client will be returned.
40
+ # You can also specify a different transport by passing `:rest` or `:grpc` in
41
+ # the `transport` parameter.
40
42
  #
41
43
  # ## About AnalyticsData
42
44
  #
@@ -44,17 +46,19 @@ module Google
44
46
  #
45
47
  # @param version [::String, ::Symbol] The API version to connect to. Optional.
46
48
  # Defaults to `:v1beta`.
47
- # @return [AnalyticsData::Client] A client object for the specified version.
49
+ # @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
50
+ # @return [::Object] A client object for the specified version.
48
51
  #
49
- def self.analytics_data version: :v1beta, &block
52
+ def self.analytics_data version: :v1beta, transport: :grpc, &block
50
53
  require "google/analytics/data/#{version.to_s.downcase}"
51
54
 
52
55
  package_name = Google::Analytics::Data
53
56
  .constants
54
57
  .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
55
58
  .first
56
- package_module = Google::Analytics::Data.const_get package_name
57
- package_module.const_get(:AnalyticsData).const_get(:Client).new(&block)
59
+ service_module = Google::Analytics::Data.const_get(package_name).const_get(:AnalyticsData)
60
+ service_module = service_module.const_get(:Rest) if transport == :rest
61
+ service_module.const_get(:Client).new(&block)
58
62
  end
59
63
  end
60
64
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-analytics-data
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.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: 2022-07-01 00:00:00.000000000 Z
11
+ date: 2023-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-analytics-data-v1beta
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.0'
19
+ version: '0.7'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.0'
29
+ version: '0.7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -190,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
190
190
  - !ruby/object:Gem::Version
191
191
  version: '0'
192
192
  requirements: []
193
- rubygems_version: 3.3.14
193
+ rubygems_version: 3.4.2
194
194
  signing_key:
195
195
  specification_version: 4
196
196
  summary: API Client library for the Google Analytics Data API