google-analytics-data 0.3.1 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2c324b7473860f332f00e57577ef1cbe94ec8b97566a1f58da3c12e7feac45c6
4
- data.tar.gz: aa35a1a20223ad1f157f19f9724b8a76c0c76ae498ba95d11a4383f0f90f4819
3
+ metadata.gz: 449b984e6c080980edb9206dfa7e2b5cd727142ce8f4e4a540221730d810c9c0
4
+ data.tar.gz: eb22351b550f34fd634ee453adef465b3789feb03edf642fc4b387ed2ef1494d
5
5
  SHA512:
6
- metadata.gz: fe4d91d4b83a6c9e9056a3a338cfc9fcb3dabf32c6b4e4fda5e180a1f23e41c20a97d445f0ff5a8fc3c92a6fcc77503ce6f0e7669a653ccf5a5c480043c7354b
7
- data.tar.gz: e06df6bf21438598b3b366e11c96548c838d702ecedf4658afc1246a825f4cb4ba20015ab2d9c6dba8535832d3c52ec7548bc9c60df0f238005078ccda4193de
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
@@ -32,33 +32,7 @@ In order to use this library, you first need to go through the following steps:
32
32
  1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
33
33
  1. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
34
34
  1. [Enable the API.](https://console.cloud.google.com/apis/library/analyticsdata.googleapis.com)
35
- 1. [Set up authentication.](https://github.com/googleapis/google-cloud-ruby/blob/main/google-analytics-data/AUTHENTICATION.md)
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
- ```
35
+ 1. {file:AUTHENTICATION.md Set up authentication.}
62
36
 
63
37
  ## Supported Ruby Versions
64
38
 
@@ -20,7 +20,7 @@
20
20
  module Google
21
21
  module Analytics
22
22
  module Data
23
- VERSION = "0.3.1"
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.1
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-08-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