google-apis-analyticsadmin_v1beta 0.16.0 → 0.17.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: 424f8452b1fb484e47ec5e28379034ad5e28ecb4538124a11237753f22827e6a
4
- data.tar.gz: 16cd47248178247b04c57f6e81cf299b434db3e5a9ed78286a174f51b44ab54b
3
+ metadata.gz: 1370173bbf9dc7118714c1d6330e6bc3a2ad332365ca85f3ea3de93f9bf38f5e
4
+ data.tar.gz: '089f4511456bd17ca33d893b714634f1f045a5c137e6ebc9b174387d54544ad2'
5
5
  SHA512:
6
- metadata.gz: c56c14167beac23577968cc3797a3e3b77fa30db65a75996396a570afd0392cec5f03650b08840bca2fdf98c2e383a64289ea01c73f29f51f4de357e963ed5d3
7
- data.tar.gz: e1514dd1d9e81e26b58dd772ffd21c95d85fedfd548381a918714c48b4263759c3c1e11ac37e79ef8d8e5598e9d4b7545e7d1b236fe699118c0fe6d0613921e9
6
+ metadata.gz: 2ccbf40c26f90a21fe46b787b5e373a28b191da608a97e5547bf050b88028ed752b59758c1e59fd44b1f93c1d230f54f6b4dcd000498dca8403dec2518b16958
7
+ data.tar.gz: ca097e9db421e3b61a7ca37612d8a5badc1b35a599026119963191c199e18de70b91ae2c88042e52da4c534cf97fb9c40509b843fc57cbcb50cbcf6b3eefb815
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-analyticsadmin_v1beta
2
2
 
3
+ ### v0.17.0 (2024-06-02)
4
+
5
+ * Regenerated from discovery document revision 20240529
6
+
3
7
  ### v0.16.0 (2024-05-19)
4
8
 
5
9
  * Regenerated using generator version 0.15.0
@@ -2085,6 +2085,27 @@ module Google
2085
2085
  end
2086
2086
  end
2087
2087
 
2088
+ # Request message for ReorderEventEditRules RPC.
2089
+ class GoogleAnalyticsAdminV1betaReorderEventEditRulesRequest
2090
+ include Google::Apis::Core::Hashable
2091
+
2092
+ # Required. EventEditRule resource names for the specified data stream, in the
2093
+ # needed processing order. All EventEditRules for the stream must be present in
2094
+ # the list.
2095
+ # Corresponds to the JSON property `eventEditRules`
2096
+ # @return [Array<String>]
2097
+ attr_accessor :event_edit_rules
2098
+
2099
+ def initialize(**args)
2100
+ update!(**args)
2101
+ end
2102
+
2103
+ # Update properties of this object
2104
+ def update!(**args)
2105
+ @event_edit_rules = args[:event_edit_rules] if args.key?(:event_edit_rules)
2106
+ end
2107
+ end
2108
+
2088
2109
  # The request for a Data Access Record Report.
2089
2110
  class GoogleAnalyticsAdminV1betaRunAccessReportRequest
2090
2111
  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.16.0"
19
+ GEM_VERSION = "0.17.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 = "20240402"
25
+ REVISION = "20240529"
26
26
  end
27
27
  end
28
28
  end
@@ -382,6 +382,12 @@ module Google
382
382
  include Google::Apis::Core::JsonObjectSupport
383
383
  end
384
384
 
385
+ class GoogleAnalyticsAdminV1betaReorderEventEditRulesRequest
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
385
391
  class GoogleAnalyticsAdminV1betaRunAccessReportRequest
386
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
387
393
 
@@ -1006,6 +1012,13 @@ module Google
1006
1012
  end
1007
1013
  end
1008
1014
 
1015
+ class GoogleAnalyticsAdminV1betaReorderEventEditRulesRequest
1016
+ # @private
1017
+ class Representation < Google::Apis::Core::JsonRepresentation
1018
+ collection :event_edit_rules, as: 'eventEditRules'
1019
+ end
1020
+ end
1021
+
1009
1022
  class GoogleAnalyticsAdminV1betaRunAccessReportRequest
1010
1023
  # @private
1011
1024
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1452,6 +1452,39 @@ module Google
1452
1452
  execute_or_queue_command(command, &block)
1453
1453
  end
1454
1454
 
1455
+ # Changes the processing order of event edit rules on the specified stream.
1456
+ # @param [String] parent
1457
+ # Required. Example format: properties/123/dataStreams/456
1458
+ # @param [Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaReorderEventEditRulesRequest] google_analytics_admin_v1beta_reorder_event_edit_rules_request_object
1459
+ # @param [String] fields
1460
+ # Selector specifying which fields to include in a partial response.
1461
+ # @param [String] quota_user
1462
+ # Available to use for quota purposes for server-side applications. Can be any
1463
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1464
+ # @param [Google::Apis::RequestOptions] options
1465
+ # Request-specific options
1466
+ #
1467
+ # @yield [result, err] Result & error if block supplied
1468
+ # @yieldparam result [Google::Apis::AnalyticsadminV1beta::GoogleProtobufEmpty] parsed result object
1469
+ # @yieldparam err [StandardError] error object if request failed
1470
+ #
1471
+ # @return [Google::Apis::AnalyticsadminV1beta::GoogleProtobufEmpty]
1472
+ #
1473
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1474
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1475
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1476
+ def reorder_property_data_stream_event_edit_rule(parent, google_analytics_admin_v1beta_reorder_event_edit_rules_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1477
+ command = make_simple_command(:post, 'v1beta/{+parent}/eventEditRules:reorder', options)
1478
+ command.request_representation = Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaReorderEventEditRulesRequest::Representation
1479
+ command.request_object = google_analytics_admin_v1beta_reorder_event_edit_rules_request_object
1480
+ command.response_representation = Google::Apis::AnalyticsadminV1beta::GoogleProtobufEmpty::Representation
1481
+ command.response_class = Google::Apis::AnalyticsadminV1beta::GoogleProtobufEmpty
1482
+ command.params['parent'] = parent unless parent.nil?
1483
+ command.query['fields'] = fields unless fields.nil?
1484
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1485
+ execute_or_queue_command(command, &block)
1486
+ end
1487
+
1455
1488
  # Creates a measurement protocol secret.
1456
1489
  # @param [String] parent
1457
1490
  # 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_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.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-19 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_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1beta/v0.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1beta/v0.17.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: []