google-apis-analyticsadmin_v1alpha 0.73.0 → 0.74.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: e50c3c6824080af725ee4fdb79e7cddaa99175b059a3ecbf27fe51943faa150c
4
- data.tar.gz: 0d1c8979c75c34876ff50fe8b64453507aedeb13d3b6dbcbf154e624293448c1
3
+ metadata.gz: 90f4c0c89268d08d108375f764a0c9962df2a36c82deee4689b3d6ac91420848
4
+ data.tar.gz: 929973c6bb555c15a413907867ccc64ade279c3ca7c793ea83d2b6f12f4c5b80
5
5
  SHA512:
6
- metadata.gz: b57aa0b14a04fddcd8d53a20611b05b4f5355e69b8bb80e35876ca1b7aca0d95133e363328786034b180b5fdce7e38dae312b2d01345568a630ec85d314f84b9
7
- data.tar.gz: 3ccd5fdcced66248e13240aaed2efb76b736be11cde210834ddda43716167df7a990bb1f14a19b440bf17807716061b4d40bea1f175adcfb6df1ef97c82a0646
6
+ metadata.gz: 260d604a7a44ca103edd97ab58d8fad43375200465d6a9c0a7ff61a8ca1f1728349582dc521e9c4b0ce47ee286f2ea15f1de7c1c297f728601699bcee28e8c77
7
+ data.tar.gz: 39078d4486eb304b3d1baad054ff620ad5121d0661e505c5bddc9bd87dea8d9371c1e66ed069c8f89429eb8a8e709d1c7e0405553188492459fcbe5dcd1efbf9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.74.0 (2024-06-02)
4
+
5
+ * Regenerated from discovery document revision 20240529
6
+
3
7
  ### v0.73.0 (2024-05-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20240517
@@ -4973,6 +4973,27 @@ module Google
4973
4973
  end
4974
4974
  end
4975
4975
 
4976
+ # Request message for ReorderEventEditRules RPC.
4977
+ class GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest
4978
+ include Google::Apis::Core::Hashable
4979
+
4980
+ # Required. EventEditRule resource names for the specified data stream, in the
4981
+ # needed processing order. All EventEditRules for the stream must be present in
4982
+ # the list.
4983
+ # Corresponds to the JSON property `eventEditRules`
4984
+ # @return [Array<String>]
4985
+ attr_accessor :event_edit_rules
4986
+
4987
+ def initialize(**args)
4988
+ update!(**args)
4989
+ end
4990
+
4991
+ # Update properties of this object
4992
+ def update!(**args)
4993
+ @event_edit_rules = args[:event_edit_rules] if args.key?(:event_edit_rules)
4994
+ end
4995
+ end
4996
+
4976
4997
  # A link that references a source property under the parent rollup property.
4977
4998
  class GoogleAnalyticsAdminV1alphaRollupPropertySourceLink
4978
4999
  include Google::Apis::Core::Hashable
@@ -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.73.0"
19
+ GEM_VERSION = "0.74.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240517"
25
+ REVISION = "20240529"
26
26
  end
27
27
  end
28
28
  end
@@ -892,6 +892,12 @@ module Google
892
892
  include Google::Apis::Core::JsonObjectSupport
893
893
  end
894
894
 
895
+ class GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest
896
+ class Representation < Google::Apis::Core::JsonRepresentation; end
897
+
898
+ include Google::Apis::Core::JsonObjectSupport
899
+ end
900
+
895
901
  class GoogleAnalyticsAdminV1alphaRollupPropertySourceLink
896
902
  class Representation < Google::Apis::Core::JsonRepresentation; end
897
903
 
@@ -2436,6 +2442,13 @@ module Google
2436
2442
  end
2437
2443
  end
2438
2444
 
2445
+ class GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest
2446
+ # @private
2447
+ class Representation < Google::Apis::Core::JsonRepresentation
2448
+ collection :event_edit_rules, as: 'eventEditRules'
2449
+ end
2450
+ end
2451
+
2439
2452
  class GoogleAnalyticsAdminV1alphaRollupPropertySourceLink
2440
2453
  # @private
2441
2454
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3589,6 +3589,39 @@ module Google
3589
3589
  execute_or_queue_command(command, &block)
3590
3590
  end
3591
3591
 
3592
+ # Changes the processing order of event edit rules on the specified stream.
3593
+ # @param [String] parent
3594
+ # Required. Example format: properties/123/dataStreams/456
3595
+ # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest] google_analytics_admin_v1alpha_reorder_event_edit_rules_request_object
3596
+ # @param [String] fields
3597
+ # Selector specifying which fields to include in a partial response.
3598
+ # @param [String] quota_user
3599
+ # Available to use for quota purposes for server-side applications. Can be any
3600
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3601
+ # @param [Google::Apis::RequestOptions] options
3602
+ # Request-specific options
3603
+ #
3604
+ # @yield [result, err] Result & error if block supplied
3605
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty] parsed result object
3606
+ # @yieldparam err [StandardError] error object if request failed
3607
+ #
3608
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty]
3609
+ #
3610
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3611
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3612
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3613
+ def reorder_property_data_stream_event_edit_rule(parent, google_analytics_admin_v1alpha_reorder_event_edit_rules_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
3614
+ command = make_simple_command(:post, 'v1alpha/{+parent}/eventEditRules:reorder', options)
3615
+ command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest::Representation
3616
+ command.request_object = google_analytics_admin_v1alpha_reorder_event_edit_rules_request_object
3617
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty::Representation
3618
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty
3619
+ command.params['parent'] = parent unless parent.nil?
3620
+ command.query['fields'] = fields unless fields.nil?
3621
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3622
+ execute_or_queue_command(command, &block)
3623
+ end
3624
+
3592
3625
  # Creates a measurement protocol secret.
3593
3626
  # @param [String] parent
3594
3627
  # Required. The parent resource where this secret will be created. 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.73.0
4
+ version: 0.74.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: 2024-05-26 00:00:00.000000000 Z
11
+ date: 2024-06-02 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.73.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.74.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: []