google-apis-analyticsadmin_v1alpha 0.65.0 → 0.67.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8d0ea78ee2abb6a53fb2244839390f91f3599b9d136923e3b8a2656b7bae600d
|
4
|
+
data.tar.gz: d4e261104e29701a9e7224e870973cee3db40e0d2a6b2e82b309cb708b3c1685
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31ca3b0180c707036b23b0a5fa6ad03807b5862d5ce791f048f2a01d3e80a741d4b0b46d505803991e08ad5a60d83314b1c4179a20575f46d5e0c4609b6502ba
|
7
|
+
data.tar.gz: 2a80185ea82c749270a416fbf3d1117a6b3fe05f4dcccc1a0cf6f12dba904cc501bb2a50804f2b11f47c00e3fd76146cda810be303ca06a940b611d2dfc09012
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-analyticsadmin_v1alpha
|
2
2
|
|
3
|
+
### v0.67.0 (2023-11-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231112
|
6
|
+
|
7
|
+
### v0.66.0 (2023-11-05)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231027
|
10
|
+
|
3
11
|
### v0.65.0 (2023-10-22)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231018
|
@@ -1906,7 +1906,7 @@ module Google
|
|
1906
1906
|
# @return [String]
|
1907
1907
|
attr_accessor :display_name
|
1908
1908
|
|
1909
|
-
# Required. The grouping rules of channels. Maximum number of rules is
|
1909
|
+
# Required. The grouping rules of channels. Maximum number of rules is 50.
|
1910
1910
|
# Corresponds to the JSON property `groupingRule`
|
1911
1911
|
# @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaGroupingRule>]
|
1912
1912
|
attr_accessor :grouping_rule
|
@@ -2127,6 +2127,12 @@ module Google
|
|
2127
2127
|
attr_accessor :custom
|
2128
2128
|
alias_method :custom?, :custom
|
2129
2129
|
|
2130
|
+
# Defines a default value/currency for a conversion event. Both value and
|
2131
|
+
# currency must be provided.
|
2132
|
+
# Corresponds to the JSON property `defaultConversionValue`
|
2133
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEventDefaultConversionValue]
|
2134
|
+
attr_accessor :default_conversion_value
|
2135
|
+
|
2130
2136
|
# Output only. If set, this event can currently be deleted with
|
2131
2137
|
# DeleteConversionEvent.
|
2132
2138
|
# Corresponds to the JSON property `deletable`
|
@@ -2155,12 +2161,42 @@ module Google
|
|
2155
2161
|
@counting_method = args[:counting_method] if args.key?(:counting_method)
|
2156
2162
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2157
2163
|
@custom = args[:custom] if args.key?(:custom)
|
2164
|
+
@default_conversion_value = args[:default_conversion_value] if args.key?(:default_conversion_value)
|
2158
2165
|
@deletable = args[:deletable] if args.key?(:deletable)
|
2159
2166
|
@event_name = args[:event_name] if args.key?(:event_name)
|
2160
2167
|
@name = args[:name] if args.key?(:name)
|
2161
2168
|
end
|
2162
2169
|
end
|
2163
2170
|
|
2171
|
+
# Defines a default value/currency for a conversion event. Both value and
|
2172
|
+
# currency must be provided.
|
2173
|
+
class GoogleAnalyticsAdminV1alphaConversionEventDefaultConversionValue
|
2174
|
+
include Google::Apis::Core::Hashable
|
2175
|
+
|
2176
|
+
# When a conversion event for this event_name has no set currency, this currency
|
2177
|
+
# will be applied as the default. Must be in ISO 4217 currency code format. See
|
2178
|
+
# https://en.wikipedia.org/wiki/ISO_4217 for more.
|
2179
|
+
# Corresponds to the JSON property `currencyCode`
|
2180
|
+
# @return [String]
|
2181
|
+
attr_accessor :currency_code
|
2182
|
+
|
2183
|
+
# This value will be used to populate the value for all conversions of the
|
2184
|
+
# specified event_name where the event "value" parameter is unset.
|
2185
|
+
# Corresponds to the JSON property `value`
|
2186
|
+
# @return [Float]
|
2187
|
+
attr_accessor :value
|
2188
|
+
|
2189
|
+
def initialize(**args)
|
2190
|
+
update!(**args)
|
2191
|
+
end
|
2192
|
+
|
2193
|
+
# Update properties of this object
|
2194
|
+
def update!(**args)
|
2195
|
+
@currency_code = args[:currency_code] if args.key?(:currency_code)
|
2196
|
+
@value = args[:value] if args.key?(:value)
|
2197
|
+
end
|
2198
|
+
end
|
2199
|
+
|
2164
2200
|
# Conversion value settings for a postback window for SKAdNetwork conversion
|
2165
2201
|
# value schema.
|
2166
2202
|
class GoogleAnalyticsAdminV1alphaConversionValues
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AnalyticsadminV1alpha
|
18
18
|
# Version of the google-apis-analyticsadmin_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.67.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 = "20231112"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -418,6 +418,12 @@ module Google
|
|
418
418
|
include Google::Apis::Core::JsonObjectSupport
|
419
419
|
end
|
420
420
|
|
421
|
+
class GoogleAnalyticsAdminV1alphaConversionEventDefaultConversionValue
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
+
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
425
|
+
end
|
426
|
+
|
421
427
|
class GoogleAnalyticsAdminV1alphaConversionValues
|
422
428
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
429
|
|
@@ -1618,12 +1624,22 @@ module Google
|
|
1618
1624
|
property :counting_method, as: 'countingMethod'
|
1619
1625
|
property :create_time, as: 'createTime'
|
1620
1626
|
property :custom, as: 'custom'
|
1627
|
+
property :default_conversion_value, as: 'defaultConversionValue', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEventDefaultConversionValue, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEventDefaultConversionValue::Representation
|
1628
|
+
|
1621
1629
|
property :deletable, as: 'deletable'
|
1622
1630
|
property :event_name, as: 'eventName'
|
1623
1631
|
property :name, as: 'name'
|
1624
1632
|
end
|
1625
1633
|
end
|
1626
1634
|
|
1635
|
+
class GoogleAnalyticsAdminV1alphaConversionEventDefaultConversionValue
|
1636
|
+
# @private
|
1637
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1638
|
+
property :currency_code, as: 'currencyCode'
|
1639
|
+
property :value, as: 'value'
|
1640
|
+
end
|
1641
|
+
end
|
1642
|
+
|
1627
1643
|
class GoogleAnalyticsAdminV1alphaConversionValues
|
1628
1644
|
# @private
|
1629
1645
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-analyticsadmin_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.67.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-11-19 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_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.67.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|