google-apis-analyticsadmin_v1beta 0.10.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/analyticsadmin_v1beta/classes.rb +36 -0
- data/lib/google/apis/analyticsadmin_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/analyticsadmin_v1beta/representations.rb +16 -0
- data/lib/google/apis/analyticsadmin_v1beta/service.rb +20 -16
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b26c47afd908d88811564f298135f01f9fcde6b3bc1a6d3b19bc38d32b4623ac
|
4
|
+
data.tar.gz: 2c96eab77b755b52bde8612d924b69fa2c094f7bc80134de09e1fef2d8b8225a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a51c7e697a613fd6f7fc0d04f6a797e5f129a27674bbab007c13b30c3df8d76a753af430d42c4feeb37fe00dc93d2df6c001454d62f009ec9a319f071025a671
|
7
|
+
data.tar.gz: 960ec735865b2cf3796f88a9c1751839bbc50b9203588179df2de0cf962120ce7be3a33263cc2d02653b27711058515a1a04cdb8214e454a8dd4a4a78b2bc961
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-analyticsadmin_v1beta
|
2
2
|
|
3
|
+
### v0.12.0 (2023-12-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231212
|
6
|
+
|
7
|
+
### v0.11.0 (2023-11-05)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231027
|
10
|
+
|
3
11
|
### v0.10.0 (2023-10-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231004
|
@@ -908,6 +908,12 @@ module Google
|
|
908
908
|
attr_accessor :custom
|
909
909
|
alias_method :custom?, :custom
|
910
910
|
|
911
|
+
# Defines a default value/currency for a conversion event. Both value and
|
912
|
+
# currency must be provided.
|
913
|
+
# Corresponds to the JSON property `defaultConversionValue`
|
914
|
+
# @return [Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue]
|
915
|
+
attr_accessor :default_conversion_value
|
916
|
+
|
911
917
|
# Output only. If set, this event can currently be deleted with
|
912
918
|
# DeleteConversionEvent.
|
913
919
|
# Corresponds to the JSON property `deletable`
|
@@ -936,12 +942,42 @@ module Google
|
|
936
942
|
@counting_method = args[:counting_method] if args.key?(:counting_method)
|
937
943
|
@create_time = args[:create_time] if args.key?(:create_time)
|
938
944
|
@custom = args[:custom] if args.key?(:custom)
|
945
|
+
@default_conversion_value = args[:default_conversion_value] if args.key?(:default_conversion_value)
|
939
946
|
@deletable = args[:deletable] if args.key?(:deletable)
|
940
947
|
@event_name = args[:event_name] if args.key?(:event_name)
|
941
948
|
@name = args[:name] if args.key?(:name)
|
942
949
|
end
|
943
950
|
end
|
944
951
|
|
952
|
+
# Defines a default value/currency for a conversion event. Both value and
|
953
|
+
# currency must be provided.
|
954
|
+
class GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue
|
955
|
+
include Google::Apis::Core::Hashable
|
956
|
+
|
957
|
+
# When a conversion event for this event_name has no set currency, this currency
|
958
|
+
# will be applied as the default. Must be in ISO 4217 currency code format. See
|
959
|
+
# https://en.wikipedia.org/wiki/ISO_4217 for more.
|
960
|
+
# Corresponds to the JSON property `currencyCode`
|
961
|
+
# @return [String]
|
962
|
+
attr_accessor :currency_code
|
963
|
+
|
964
|
+
# This value will be used to populate the value for all conversions of the
|
965
|
+
# specified event_name where the event "value" parameter is unset.
|
966
|
+
# Corresponds to the JSON property `value`
|
967
|
+
# @return [Float]
|
968
|
+
attr_accessor :value
|
969
|
+
|
970
|
+
def initialize(**args)
|
971
|
+
update!(**args)
|
972
|
+
end
|
973
|
+
|
974
|
+
# Update properties of this object
|
975
|
+
def update!(**args)
|
976
|
+
@currency_code = args[:currency_code] if args.key?(:currency_code)
|
977
|
+
@value = args[:value] if args.key?(:value)
|
978
|
+
end
|
979
|
+
end
|
980
|
+
|
945
981
|
# A definition for a CustomDimension.
|
946
982
|
class GoogleAnalyticsAdminV1betaCustomDimension
|
947
983
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AnalyticsadminV1beta
|
18
18
|
# Version of the google-apis-analyticsadmin_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231212"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -202,6 +202,12 @@ module Google
|
|
202
202
|
include Google::Apis::Core::JsonObjectSupport
|
203
203
|
end
|
204
204
|
|
205
|
+
class GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
205
211
|
class GoogleAnalyticsAdminV1betaCustomDimension
|
206
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
213
|
|
@@ -672,12 +678,22 @@ module Google
|
|
672
678
|
property :counting_method, as: 'countingMethod'
|
673
679
|
property :create_time, as: 'createTime'
|
674
680
|
property :custom, as: 'custom'
|
681
|
+
property :default_conversion_value, as: 'defaultConversionValue', class: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue, decorator: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue::Representation
|
682
|
+
|
675
683
|
property :deletable, as: 'deletable'
|
676
684
|
property :event_name, as: 'eventName'
|
677
685
|
property :name, as: 'name'
|
678
686
|
end
|
679
687
|
end
|
680
688
|
|
689
|
+
class GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue
|
690
|
+
# @private
|
691
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
692
|
+
property :currency_code, as: 'currencyCode'
|
693
|
+
property :value, as: 'value'
|
694
|
+
end
|
695
|
+
end
|
696
|
+
|
681
697
|
class GoogleAnalyticsAdminV1betaCustomDimension
|
682
698
|
# @private
|
683
699
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -309,14 +309,16 @@ module Google
|
|
309
309
|
# Returns a customized report of data access records. The report provides
|
310
310
|
# records of each time a user reads Google Analytics reporting data. Access
|
311
311
|
# records are retained for up to 2 years. Data Access Reports can be requested
|
312
|
-
# for a property.
|
313
|
-
#
|
314
|
-
#
|
315
|
-
#
|
316
|
-
#
|
317
|
-
#
|
318
|
-
#
|
319
|
-
#
|
312
|
+
# for a property. Reports may be requested for any property, but dimensions that
|
313
|
+
# aren't related to quota can only be requested on Google Analytics 360
|
314
|
+
# properties. This method is only available to Administrators. These data access
|
315
|
+
# records include GA4 UI Reporting, GA4 UI Explorations, GA4 Data API, and other
|
316
|
+
# products like Firebase & Admob that can retrieve data from Google Analytics
|
317
|
+
# through a linkage. These records don't include property configuration changes
|
318
|
+
# like adding a stream or changing a property's time zone. For configuration
|
319
|
+
# change history, see [searchChangeHistoryEvents](https://developers.google.com/
|
320
|
+
# analytics/devguides/config/admin/v1/rest/v1alpha/accounts/
|
321
|
+
# searchChangeHistoryEvents).
|
320
322
|
# @param [String] entity
|
321
323
|
# The Data Access Report supports requesting at the property level or account
|
322
324
|
# level. If requested at the account level, Data Access Reports include all
|
@@ -651,14 +653,16 @@ module Google
|
|
651
653
|
# Returns a customized report of data access records. The report provides
|
652
654
|
# records of each time a user reads Google Analytics reporting data. Access
|
653
655
|
# records are retained for up to 2 years. Data Access Reports can be requested
|
654
|
-
# for a property.
|
655
|
-
#
|
656
|
-
#
|
657
|
-
#
|
658
|
-
#
|
659
|
-
#
|
660
|
-
#
|
661
|
-
#
|
656
|
+
# for a property. Reports may be requested for any property, but dimensions that
|
657
|
+
# aren't related to quota can only be requested on Google Analytics 360
|
658
|
+
# properties. This method is only available to Administrators. These data access
|
659
|
+
# records include GA4 UI Reporting, GA4 UI Explorations, GA4 Data API, and other
|
660
|
+
# products like Firebase & Admob that can retrieve data from Google Analytics
|
661
|
+
# through a linkage. These records don't include property configuration changes
|
662
|
+
# like adding a stream or changing a property's time zone. For configuration
|
663
|
+
# change history, see [searchChangeHistoryEvents](https://developers.google.com/
|
664
|
+
# analytics/devguides/config/admin/v1/rest/v1alpha/accounts/
|
665
|
+
# searchChangeHistoryEvents).
|
662
666
|
# @param [String] entity
|
663
667
|
# The Data Access Report supports requesting at the property level or account
|
664
668
|
# level. If requested at the account level, Data Access Reports include all
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-analyticsadmin_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.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-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1beta/v0.12.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|