google-analytics-admin 0.2.0 → 0.3.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: bd5be19a56602178452c030aa1053ec910c306eabc5fe3074b4f94cb9fc8eac2
4
- data.tar.gz: e03c128f0b30f040d256a56b03c1dce1fc44f92a09a22c2ea6834efaa82cd930
3
+ metadata.gz: d2acc0e86b1655a875bc5fe9db27282c7407a8c1138260c57629b4846c6c9e1b
4
+ data.tar.gz: dc91deb1b7f30d8cf4ceb82ce3c8c20d182c7dab709f196b712f9cd8d2f2d93a
5
5
  SHA512:
6
- metadata.gz: 68e6b287ddb6f1f6a1e89c04f96a29015176306f96ac19a1c52ce62e7cc0664971561e2448275d5d51970878d05a6ddd759863fde1c696c4b3b23bc54b72e60c
7
- data.tar.gz: c3fea6a78430bb1b438f9160e8ac61fdf928712a6d20433b05fe6c88bddcdb38d208f095a79e2b9bbb106c8f1b188540f2f5a707a47e90310e17f78603cfd592
6
+ metadata.gz: 86b232d70039c61c8a6598d90f2785d107c09548049e303be74719bfa0b185f0e7a601d3541e77a61f32ba646eb85ac7b95c152ee87e2db243cf958c63045db1
7
+ data.tar.gz: 3d47bc3b13f4e82a72512a5c153fc46b581ca5687919d44714bd62004aef2a3e98148f64291b0c25ca4e88cd91c7186cc11d74b0fbfb41f76de182f2573f8922
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
@@ -31,32 +31,6 @@ In order to use this library, you first need to go through the following steps:
31
31
  1. [Enable the API.](https://console.cloud.google.com/apis/library/analyticsadmin.googleapis.com)
32
32
  1. {file:AUTHENTICATION.md Set up authentication.}
33
33
 
34
- ## Enabling Logging
35
-
36
- To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
37
- The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
38
- or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
39
- 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)
40
- and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
41
-
42
- Configuring a Ruby stdlib logger:
43
-
44
- ```ruby
45
- require "logger"
46
-
47
- module MyLogger
48
- LOGGER = Logger.new $stderr, level: Logger::WARN
49
- def logger
50
- LOGGER
51
- end
52
- end
53
-
54
- # Define a gRPC module-level logger method before grpc/logconfig.rb loads.
55
- module GRPC
56
- extend MyLogger
57
- end
58
- ```
59
-
60
34
  ## Supported Ruby Versions
61
35
 
62
36
  This library is supported on Ruby 2.6+.
@@ -20,7 +20,7 @@
20
20
  module Google
21
21
  module Analytics
22
22
  module Admin
23
- VERSION = "0.2.0"
23
+ VERSION = "0.3.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::Admin::V1alpha::AnalyticsAdminService::Client](https://googleapis.dev/ruby/google-analytics-admin-v1alpha/latest/Google/Analytics/Admin/V1alpha/AnalyticsAdminService/Client.html)
35
- # for version V1alpha 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 V1alpha of the API.
36
+ # However, you can specify a different API version by passing it in the
37
37
  # `version` parameter. If the AnalyticsAdminService 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 AnalyticsAdminService
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 `:v1alpha`.
47
- # @return [AnalyticsAdminService::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_admin_service version: :v1alpha, &block
52
+ def self.analytics_admin_service version: :v1alpha, transport: :grpc, &block
50
53
  require "google/analytics/admin/#{version.to_s.downcase}"
51
54
 
52
55
  package_name = Google::Analytics::Admin
53
56
  .constants
54
57
  .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
55
58
  .first
56
- package_module = Google::Analytics::Admin.const_get package_name
57
- package_module.const_get(:AnalyticsAdminService).const_get(:Client).new(&block)
59
+ service_module = Google::Analytics::Admin.const_get(package_name).const_get(:AnalyticsAdminService)
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-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.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-admin-v1alpha
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.0'
19
+ version: '0.16'
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.16'
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 Admin API