google-analytics-admin-v1alpha 0.2.2 → 0.3.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2fa9912c70452f75a9a47b08c027918ab245b4ffc160d9be1973d6c0ff5df796
|
|
4
|
+
data.tar.gz: 5b87868d3d1803532ae1ff6efd9660b00de7958a52f87785457708c469eedf3f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78f36f56669257e15a20aacc41cb0f05e7d1f11b1f4dd0ba825d3f9a303c3ed8e8cb94276d20b0b88fb5296656adf2e11c8ff96bd8f1e8b14432f6a2e2fb0337
|
|
7
|
+
data.tar.gz: 914d68eb554bdf7e4ce8e147e20711b208e79eb8a0b945a5ee4a5ad05e51f057f445eed625154b3f3e55a43c90baa17130cce91f57fc2ce1c96296cfaf0d6681
|
|
@@ -92,6 +92,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
92
92
|
end
|
|
93
93
|
add_message "google.analytics.admin.v1alpha.GlobalSiteTag" do
|
|
94
94
|
optional :snippet, :string, 1
|
|
95
|
+
optional :name, :string, 2
|
|
95
96
|
end
|
|
96
97
|
add_message "google.analytics.admin.v1alpha.GoogleAdsLink" do
|
|
97
98
|
optional :name, :string, 1
|
|
@@ -100,8 +100,9 @@ module Google
|
|
|
100
100
|
# Examples: "USD", "EUR", "JPY"
|
|
101
101
|
# @!attribute [r] deleted
|
|
102
102
|
# @return [::Boolean]
|
|
103
|
-
# Output only. Indicates whether this Property is soft-deleted or not.
|
|
104
|
-
# are excluded from List results unless specifically
|
|
103
|
+
# Output only. Indicates whether this Property is soft-deleted or not.
|
|
104
|
+
# Deleted properties are excluded from List results unless specifically
|
|
105
|
+
# requested.
|
|
105
106
|
class Property
|
|
106
107
|
include ::Google::Protobuf::MessageExts
|
|
107
108
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -273,8 +274,8 @@ module Google
|
|
|
273
274
|
# whether they are respected.
|
|
274
275
|
# @!attribute [r] page_views_enabled
|
|
275
276
|
# @return [::Boolean]
|
|
276
|
-
# Output only. If enabled, capture a page view event each time a page loads
|
|
277
|
-
# website changes the browser history state.
|
|
277
|
+
# Output only. If enabled, capture a page view event each time a page loads
|
|
278
|
+
# or the website changes the browser history state.
|
|
278
279
|
# @!attribute [rw] scrolls_enabled
|
|
279
280
|
# @return [::Boolean]
|
|
280
281
|
# If enabled, capture scroll events each time a visitor gets to the bottom of
|
|
@@ -344,9 +345,9 @@ module Google
|
|
|
344
345
|
# Output only. Example format: properties/1234/firebaseLinks/5678
|
|
345
346
|
# @!attribute [rw] project
|
|
346
347
|
# @return [::String]
|
|
347
|
-
# Immutable. Firebase project resource name. When creating a FirebaseLink,
|
|
348
|
-
# provide this resource name using either a project number or project
|
|
349
|
-
# Once this resource has been created, returned FirebaseLinks will always
|
|
348
|
+
# Immutable. Firebase project resource name. When creating a FirebaseLink,
|
|
349
|
+
# you may provide this resource name using either a project number or project
|
|
350
|
+
# ID. Once this resource has been created, returned FirebaseLinks will always
|
|
350
351
|
# have a project_name that contains a project number.
|
|
351
352
|
#
|
|
352
353
|
# Format: 'projects/\\{project number}'
|
|
@@ -367,8 +368,11 @@ module Google
|
|
|
367
368
|
# WebDataStream.
|
|
368
369
|
# @!attribute [rw] snippet
|
|
369
370
|
# @return [::String]
|
|
370
|
-
# Immutable. JavaScript code snippet to be pasted as the first item into the
|
|
371
|
-
# every webpage to measure.
|
|
371
|
+
# Immutable. JavaScript code snippet to be pasted as the first item into the
|
|
372
|
+
# head tag of every webpage to measure.
|
|
373
|
+
# @!attribute [rw] name
|
|
374
|
+
# @return [::String]
|
|
375
|
+
# The resource name of this tag.
|
|
372
376
|
class GlobalSiteTag
|
|
373
377
|
include ::Google::Protobuf::MessageExts
|
|
374
378
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -377,7 +381,8 @@ module Google
|
|
|
377
381
|
# A link between an GA4 property and a Google Ads account.
|
|
378
382
|
# @!attribute [r] name
|
|
379
383
|
# @return [::String]
|
|
380
|
-
# Output only. Format:
|
|
384
|
+
# Output only. Format:
|
|
385
|
+
# properties/\\{propertyId}/googleAdsLinks/\\{googleAdsLinkId}
|
|
381
386
|
#
|
|
382
387
|
# Note: googleAdsLinkId is not the Google Ads customer ID.
|
|
383
388
|
# @!attribute [rw] parent
|
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.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: 2020-
|
|
11
|
+
date: 2020-12-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|