google-analytics-admin-v1alpha 0.15.0 → 0.16.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 +4 -4
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/client.rb +8030 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/service_stub.rb +6245 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest.rb +52 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service.rb +6 -0
- data/lib/google/analytics/admin/v1alpha/rest.rb +37 -0
- data/lib/google/analytics/admin/v1alpha/version.rb +1 -1
- data/lib/google/analytics/admin/v1alpha.rb +5 -0
- metadata +8 -4
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2023 Google LLC
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
# you may not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
# See the License for the specific language governing permissions and
|
|
15
|
+
# limitations under the License.
|
|
16
|
+
|
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
|
18
|
+
|
|
19
|
+
require "gapic/rest"
|
|
20
|
+
require "gapic/config"
|
|
21
|
+
require "gapic/config/method"
|
|
22
|
+
|
|
23
|
+
require "google/analytics/admin/v1alpha/version"
|
|
24
|
+
|
|
25
|
+
require "google/analytics/admin/v1alpha/analytics_admin_service/credentials"
|
|
26
|
+
require "google/analytics/admin/v1alpha/analytics_admin_service/paths"
|
|
27
|
+
require "google/analytics/admin/v1alpha/analytics_admin_service/rest/client"
|
|
28
|
+
|
|
29
|
+
module Google
|
|
30
|
+
module Analytics
|
|
31
|
+
module Admin
|
|
32
|
+
module V1alpha
|
|
33
|
+
##
|
|
34
|
+
# Service Interface for the Analytics Admin API (GA4).
|
|
35
|
+
#
|
|
36
|
+
# To load this service and instantiate a REST client:
|
|
37
|
+
#
|
|
38
|
+
# require "google/analytics/admin/v1alpha/analytics_admin_service/rest"
|
|
39
|
+
# client = ::Google::Analytics::Admin::V1alpha::AnalyticsAdminService::Rest::Client.new
|
|
40
|
+
#
|
|
41
|
+
module AnalyticsAdminService
|
|
42
|
+
# Client for the REST transport
|
|
43
|
+
module Rest
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
helper_path = ::File.join __dir__, "rest", "helpers.rb"
|
|
52
|
+
require "google/analytics/admin/v1alpha/analytics_admin_service/rest/helpers" if ::File.file? helper_path
|
|
@@ -25,6 +25,7 @@ require "google/analytics/admin/v1alpha/version"
|
|
|
25
25
|
require "google/analytics/admin/v1alpha/analytics_admin_service/credentials"
|
|
26
26
|
require "google/analytics/admin/v1alpha/analytics_admin_service/paths"
|
|
27
27
|
require "google/analytics/admin/v1alpha/analytics_admin_service/client"
|
|
28
|
+
require "google/analytics/admin/v1alpha/analytics_admin_service/rest"
|
|
28
29
|
|
|
29
30
|
module Google
|
|
30
31
|
module Analytics
|
|
@@ -38,6 +39,11 @@ module Google
|
|
|
38
39
|
# require "google/analytics/admin/v1alpha/analytics_admin_service"
|
|
39
40
|
# client = ::Google::Analytics::Admin::V1alpha::AnalyticsAdminService::Client.new
|
|
40
41
|
#
|
|
42
|
+
# @example Load this service and instantiate a REST client
|
|
43
|
+
#
|
|
44
|
+
# require "google/analytics/admin/v1alpha/analytics_admin_service/rest"
|
|
45
|
+
# client = ::Google::Analytics::Admin::V1alpha::AnalyticsAdminService::Rest::Client.new
|
|
46
|
+
#
|
|
41
47
|
module AnalyticsAdminService
|
|
42
48
|
end
|
|
43
49
|
end
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2023 Google LLC
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
# you may not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
# See the License for the specific language governing permissions and
|
|
15
|
+
# limitations under the License.
|
|
16
|
+
|
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
|
18
|
+
|
|
19
|
+
require "google/analytics/admin/v1alpha/analytics_admin_service/rest"
|
|
20
|
+
require "google/analytics/admin/v1alpha/version"
|
|
21
|
+
|
|
22
|
+
module Google
|
|
23
|
+
module Analytics
|
|
24
|
+
module Admin
|
|
25
|
+
##
|
|
26
|
+
# To load just the REST part of this package, including all its services, and instantiate a REST client:
|
|
27
|
+
#
|
|
28
|
+
# @example
|
|
29
|
+
#
|
|
30
|
+
# require "google/analytics/admin/v1alpha/rest"
|
|
31
|
+
# client = ::Google::Analytics::Admin::V1alpha::AnalyticsAdminService::Rest::Client.new
|
|
32
|
+
#
|
|
33
|
+
module V1alpha
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
|
@@ -30,6 +30,11 @@ module Google
|
|
|
30
30
|
# require "google/analytics/admin/v1alpha"
|
|
31
31
|
# client = ::Google::Analytics::Admin::V1alpha::AnalyticsAdminService::Client.new
|
|
32
32
|
#
|
|
33
|
+
# @example Load this package, including all its services, and instantiate a REST client
|
|
34
|
+
#
|
|
35
|
+
# require "google/analytics/admin/v1alpha"
|
|
36
|
+
# client = ::Google::Analytics::Admin::V1alpha::AnalyticsAdminService::Rest::Client.new
|
|
37
|
+
#
|
|
33
38
|
module V1alpha
|
|
34
39
|
end
|
|
35
40
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-analytics-admin-v1alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.16.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-
|
|
11
|
+
date: 2023-03-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.18.0
|
|
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.
|
|
29
|
+
version: 0.18.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 2.a
|
|
@@ -178,10 +178,14 @@ files:
|
|
|
178
178
|
- lib/google/analytics/admin/v1alpha/analytics_admin_service/client.rb
|
|
179
179
|
- lib/google/analytics/admin/v1alpha/analytics_admin_service/credentials.rb
|
|
180
180
|
- lib/google/analytics/admin/v1alpha/analytics_admin_service/paths.rb
|
|
181
|
+
- lib/google/analytics/admin/v1alpha/analytics_admin_service/rest.rb
|
|
182
|
+
- lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/client.rb
|
|
183
|
+
- lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/service_stub.rb
|
|
181
184
|
- lib/google/analytics/admin/v1alpha/analytics_admin_services_pb.rb
|
|
182
185
|
- lib/google/analytics/admin/v1alpha/audience_pb.rb
|
|
183
186
|
- lib/google/analytics/admin/v1alpha/expanded_data_set_pb.rb
|
|
184
187
|
- lib/google/analytics/admin/v1alpha/resources_pb.rb
|
|
188
|
+
- lib/google/analytics/admin/v1alpha/rest.rb
|
|
185
189
|
- lib/google/analytics/admin/v1alpha/version.rb
|
|
186
190
|
- proto_docs/README.md
|
|
187
191
|
- proto_docs/google/analytics/admin/v1alpha/access_report.rb
|