google-apis-analyticsadmin_v1alpha 0.65.0 → 0.66.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: 3163550729dde776ea50aabfbd7d5284510437d7f5426f163583cfcd7d57451f
4
- data.tar.gz: 1a18cc490b6af850d8aa934f35e5577dcc32afeb293078f0f4b85874bcbbcf13
3
+ metadata.gz: 33afe9f21203d9f15bb01ee6095137e2bafff9e872ad6d25208fdcd2148edd64
4
+ data.tar.gz: f9e22b6a78fac27e57b3cf711d60b910a477754def00b96b9cd7c3953a482bec
5
5
  SHA512:
6
- metadata.gz: 7ed040646acd92729bf269bda2ac602a6bd1e249db1b2e5e9140229728cb857e7f826b8933c0ac1fc5d05c1ad296f4b49c6eaedc9e9b0370a8da3422906e27a9
7
- data.tar.gz: fdac90543e317aa422e67f5e5525f91500a678294232324ae5f80c8e1f2612bd9d0e2c6dcc7c8a4d45524728f967c1d937254d33c9d56436d717dec372034fff
6
+ metadata.gz: a7b6c5e86919ce4ed83e6cb6e3104a9a9ad637785b13da98e4858fa5c55a86c1c43bf5e1b94babd847999471e0121074ae6767ee4d23f7c1b7cc0e4366e6fcb0
7
+ data.tar.gz: 31864bbd02b485db84dd323db11a439706a7f4e580c0464fa08005c184a2150542027f219d586243bb8e985a7692df5ee977e56e1ebac6647f9b095d80c4ae7f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.66.0 (2023-11-05)
4
+
5
+ * Regenerated from discovery document revision 20231027
6
+
3
7
  ### v0.65.0 (2023-10-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20231018
@@ -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.65.0"
19
+ GEM_VERSION = "0.66.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 = "20231018"
25
+ REVISION = "20231027"
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.65.0
4
+ version: 0.66.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-10-22 00:00:00.000000000 Z
11
+ date: 2023-11-05 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.65.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.66.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: []