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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/analyticsadmin_v1alpha/classes.rb +21 -0
- data/lib/google/apis/analyticsadmin_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/analyticsadmin_v1alpha/representations.rb +13 -0
- data/lib/google/apis/analyticsadmin_v1alpha/service.rb +33 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90f4c0c89268d08d108375f764a0c9962df2a36c82deee4689b3d6ac91420848
|
4
|
+
data.tar.gz: 929973c6bb555c15a413907867ccc64ade279c3ca7c793ea83d2b6f12f4c5b80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 260d604a7a44ca103edd97ab58d8fad43375200465d6a9c0a7ff61a8ca1f1728349582dc521e9c4b0ce47ee286f2ea15f1de7c1c297f728601699bcee28e8c77
|
7
|
+
data.tar.gz: 39078d4486eb304b3d1baad054ff620ad5121d0661e505c5bddc9bd87dea8d9371c1e66ed069c8f89429eb8a8e709d1c7e0405553188492459fcbe5dcd1efbf9
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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 = "
|
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.
|
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-
|
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.
|
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: []
|