google-apis-analyticsadmin_v1alpha 0.60.0 → 0.61.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: 87b0ca3f585446d291a820d4eb7f7eda558d2618f656ff4e7fd75d2401340114
4
- data.tar.gz: 701b5ed42ea20a895b8151b4d2b9c35a82daba0361b9a8b73c4a8e289f548ec2
3
+ metadata.gz: bb3b31cb08919fea4aa69133e1de7508442d1357aab1fc0f144c3045832475f7
4
+ data.tar.gz: '023829de737a4eb6ccddcf86698d7d48928ecab8330c7a2bc6d52a0300e305ad'
5
5
  SHA512:
6
- metadata.gz: 45f14ebe9d2d6259266b9d94aa97d9cdbd5864913d0baf97a8d79369ef9be479dbfb903c728a80ae080a7d6f5b65dc80e5e03a56d78436720442a289c79783db
7
- data.tar.gz: db2d7c19ea8adaa46e91d8988e29f12005b7f978050349bab8e983bc1bd9d9a5ab10189ac43375486ebfaf3c4e6ceab914eb54fa44e7a667e3bddef05613bb31
6
+ metadata.gz: ac6d4f3ce71db3b6c3f273f7ee4c5da237ec9b920846b841432e706b221b9891fff0e9e080075c8295da4aae2c3f44e150a2888646cd16a9b477320c676610b1
7
+ data.tar.gz: e72cb239773fe71de4bcca07cb9a4d377b848c48faa6943c5374230b982ad00d4cec220400360871a767d85a5acc09ac4c4d333d3866f7a2a9c6363872d0909f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.61.0 (2023-08-13)
4
+
5
+ * Regenerated from discovery document revision 20230809
6
+
3
7
  ### v0.60.0 (2023-08-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20230802
@@ -2313,6 +2313,13 @@ module Google
2313
2313
  class GoogleAnalyticsAdminV1alphaConversionEvent
2314
2314
  include Google::Apis::Core::Hashable
2315
2315
 
2316
+ # Optional. The method by which conversions will be counted across multiple
2317
+ # events within a session. If this value is not provided, it will be set to `
2318
+ # ONCE_PER_EVENT`.
2319
+ # Corresponds to the JSON property `countingMethod`
2320
+ # @return [String]
2321
+ attr_accessor :counting_method
2322
+
2316
2323
  # Output only. Time when this conversion event was created in the property.
2317
2324
  # Corresponds to the JSON property `createTime`
2318
2325
  # @return [String]
@@ -2354,6 +2361,7 @@ module Google
2354
2361
 
2355
2362
  # Update properties of this object
2356
2363
  def update!(**args)
2364
+ @counting_method = args[:counting_method] if args.key?(:counting_method)
2357
2365
  @create_time = args[:create_time] if args.key?(:create_time)
2358
2366
  @custom = args[:custom] if args.key?(:custom)
2359
2367
  @deletable = args[:deletable] if args.key?(:deletable)
@@ -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.60.0"
19
+ GEM_VERSION = "0.61.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 = "20230802"
25
+ REVISION = "20230809"
26
26
  end
27
27
  end
28
28
  end
@@ -1657,6 +1657,7 @@ module Google
1657
1657
  class GoogleAnalyticsAdminV1alphaConversionEvent
1658
1658
  # @private
1659
1659
  class Representation < Google::Apis::Core::JsonRepresentation
1660
+ property :counting_method, as: 'countingMethod'
1660
1661
  property :create_time, as: 'createTime'
1661
1662
  property :custom, as: 'custom'
1662
1663
  property :deletable, as: 'deletable'
@@ -2766,6 +2766,45 @@ module Google
2766
2766
  execute_or_queue_command(command, &block)
2767
2767
  end
2768
2768
 
2769
+ # Updates a conversion event with the specified attributes.
2770
+ # @param [String] name
2771
+ # Output only. Resource name of this conversion event. Format: properties/`
2772
+ # property`/conversionEvents/`conversion_event`
2773
+ # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent] google_analytics_admin_v1alpha_conversion_event_object
2774
+ # @param [String] update_mask
2775
+ # Required. The list of fields to be updated. Field names must be in snake case (
2776
+ # e.g., "field_to_update"). Omitted fields will not be updated. To replace the
2777
+ # entire entity, use one path with the string "*" to match all fields.
2778
+ # @param [String] fields
2779
+ # Selector specifying which fields to include in a partial response.
2780
+ # @param [String] quota_user
2781
+ # Available to use for quota purposes for server-side applications. Can be any
2782
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2783
+ # @param [Google::Apis::RequestOptions] options
2784
+ # Request-specific options
2785
+ #
2786
+ # @yield [result, err] Result & error if block supplied
2787
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent] parsed result object
2788
+ # @yieldparam err [StandardError] error object if request failed
2789
+ #
2790
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent]
2791
+ #
2792
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2793
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2794
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2795
+ def patch_property_conversion_event(name, google_analytics_admin_v1alpha_conversion_event_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
2796
+ command = make_simple_command(:patch, 'v1alpha/{+name}', options)
2797
+ command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent::Representation
2798
+ command.request_object = google_analytics_admin_v1alpha_conversion_event_object
2799
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent::Representation
2800
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent
2801
+ command.params['name'] = name unless name.nil?
2802
+ command.query['updateMask'] = update_mask unless update_mask.nil?
2803
+ command.query['fields'] = fields unless fields.nil?
2804
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2805
+ execute_or_queue_command(command, &block)
2806
+ end
2807
+
2769
2808
  # Archives a CustomDimension on a property.
2770
2809
  # @param [String] name
2771
2810
  # Required. The name of the CustomDimension to archive. Example format:
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.60.0
4
+ version: 0.61.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-08-06 00:00:00.000000000 Z
11
+ date: 2023-08-20 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.60.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.61.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: []