google-apis-analyticsadmin_v1alpha 0.82.0 → 0.84.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 +9 -0
- data/lib/google/apis/analyticsadmin_v1alpha/classes.rb +82 -0
- data/lib/google/apis/analyticsadmin_v1alpha/gem_version.rb +3 -3
- data/lib/google/apis/analyticsadmin_v1alpha/representations.rb +33 -0
- data/lib/google/apis/analyticsadmin_v1alpha/service.rb +115 -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: 0cd766cf8d960023ca16df2ef3ac9e7e6bb31e26140e2f586b9e26ead3ecfd0e
|
4
|
+
data.tar.gz: cbec427a894691d2e1ab8f5306cc7e7a1af2400f62cee22ccb7fbbf77e7d8287
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7301cd35cf0105594b7d6e1e2be0be4afdf33caee360483b6474294d3762399287d58833ed12f998d6795ef6463fd38ec027799a69f0a46ffdd4a142a42ec9ad
|
7
|
+
data.tar.gz: 70fd445ee6b16207ec7e4d280f276ea6b3bbc9ce94b11329ac5f6fad741fb22a61d1fba094fb11fe95cad94b20e4921869f7d4f32108d46efff32d0f6c6de098
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-analyticsadmin_v1alpha
|
2
2
|
|
3
|
+
### v0.84.0 (2025-06-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250615
|
6
|
+
|
7
|
+
### v0.83.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250606
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.82.0 (2025-05-04)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
@@ -1919,6 +1919,13 @@ module Google
|
|
1919
1919
|
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema]
|
1920
1920
|
attr_accessor :skadnetwork_conversion_value_schema
|
1921
1921
|
|
1922
|
+
# Subproperty synchronization configuration controls how ordinary property
|
1923
|
+
# configurations are synchronized to subproperties. This resource is provisioned
|
1924
|
+
# automatically for each subproperty.
|
1925
|
+
# Corresponds to the JSON property `subpropertySyncConfig`
|
1926
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig]
|
1927
|
+
attr_accessor :subproperty_sync_config
|
1928
|
+
|
1922
1929
|
def initialize(**args)
|
1923
1930
|
update!(**args)
|
1924
1931
|
end
|
@@ -1952,6 +1959,7 @@ module Google
|
|
1952
1959
|
@reporting_data_annotation = args[:reporting_data_annotation] if args.key?(:reporting_data_annotation)
|
1953
1960
|
@search_ads360_link = args[:search_ads360_link] if args.key?(:search_ads360_link)
|
1954
1961
|
@skadnetwork_conversion_value_schema = args[:skadnetwork_conversion_value_schema] if args.key?(:skadnetwork_conversion_value_schema)
|
1962
|
+
@subproperty_sync_config = args[:subproperty_sync_config] if args.key?(:subproperty_sync_config)
|
1955
1963
|
end
|
1956
1964
|
end
|
1957
1965
|
|
@@ -4713,6 +4721,32 @@ module Google
|
|
4713
4721
|
end
|
4714
4722
|
end
|
4715
4723
|
|
4724
|
+
# Response message for ListSubpropertySyncConfigs RPC.
|
4725
|
+
class GoogleAnalyticsAdminV1alphaListSubpropertySyncConfigsResponse
|
4726
|
+
include Google::Apis::Core::Hashable
|
4727
|
+
|
4728
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
4729
|
+
# field is omitted, there are no subsequent pages.
|
4730
|
+
# Corresponds to the JSON property `nextPageToken`
|
4731
|
+
# @return [String]
|
4732
|
+
attr_accessor :next_page_token
|
4733
|
+
|
4734
|
+
# List of `SubpropertySyncConfig` resources.
|
4735
|
+
# Corresponds to the JSON property `subpropertySyncConfigs`
|
4736
|
+
# @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig>]
|
4737
|
+
attr_accessor :subproperty_sync_configs
|
4738
|
+
|
4739
|
+
def initialize(**args)
|
4740
|
+
update!(**args)
|
4741
|
+
end
|
4742
|
+
|
4743
|
+
# Update properties of this object
|
4744
|
+
def update!(**args)
|
4745
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
4746
|
+
@subproperty_sync_configs = args[:subproperty_sync_configs] if args.key?(:subproperty_sync_configs)
|
4747
|
+
end
|
4748
|
+
end
|
4749
|
+
|
4716
4750
|
# Defines a condition for when an Event Edit or Event Creation rule applies to
|
4717
4751
|
# an event.
|
4718
4752
|
class GoogleAnalyticsAdminV1alphaMatchingCondition
|
@@ -5079,6 +5113,12 @@ module Google
|
|
5079
5113
|
class GoogleAnalyticsAdminV1alphaProvisionSubpropertyRequest
|
5080
5114
|
include Google::Apis::Core::Hashable
|
5081
5115
|
|
5116
|
+
# Optional. The subproperty feature synchronization mode for Custom Dimensions
|
5117
|
+
# and Metrics
|
5118
|
+
# Corresponds to the JSON property `customDimensionAndMetricSynchronizationMode`
|
5119
|
+
# @return [String]
|
5120
|
+
attr_accessor :custom_dimension_and_metric_synchronization_mode
|
5121
|
+
|
5082
5122
|
# A resource message representing a Google Analytics property.
|
5083
5123
|
# Corresponds to the JSON property `subproperty`
|
5084
5124
|
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty]
|
@@ -5095,6 +5135,7 @@ module Google
|
|
5095
5135
|
|
5096
5136
|
# Update properties of this object
|
5097
5137
|
def update!(**args)
|
5138
|
+
@custom_dimension_and_metric_synchronization_mode = args[:custom_dimension_and_metric_synchronization_mode] if args.key?(:custom_dimension_and_metric_synchronization_mode)
|
5098
5139
|
@subproperty = args[:subproperty] if args.key?(:subproperty)
|
5099
5140
|
@subproperty_event_filter = args[:subproperty_event_filter] if args.key?(:subproperty_event_filter)
|
5100
5141
|
end
|
@@ -5898,6 +5939,47 @@ module Google
|
|
5898
5939
|
end
|
5899
5940
|
end
|
5900
5941
|
|
5942
|
+
# Subproperty synchronization configuration controls how ordinary property
|
5943
|
+
# configurations are synchronized to subproperties. This resource is provisioned
|
5944
|
+
# automatically for each subproperty.
|
5945
|
+
class GoogleAnalyticsAdminV1alphaSubpropertySyncConfig
|
5946
|
+
include Google::Apis::Core::Hashable
|
5947
|
+
|
5948
|
+
# Output only. Immutable. Resource name of the subproperty that these settings
|
5949
|
+
# apply to.
|
5950
|
+
# Corresponds to the JSON property `applyToProperty`
|
5951
|
+
# @return [String]
|
5952
|
+
attr_accessor :apply_to_property
|
5953
|
+
|
5954
|
+
# Required. Specifies the Custom Dimension / Metric synchronization mode for the
|
5955
|
+
# subproperty. If set to ALL, Custom Dimension / Metric synchronization will be
|
5956
|
+
# immediately enabled. Local configuration of Custom Dimensions / Metrics will
|
5957
|
+
# not be allowed on the subproperty so long as the synchronization mode is set
|
5958
|
+
# to ALL. If set to NONE, Custom Dimensions / Metric synchronization is disabled.
|
5959
|
+
# Custom Dimensions / Metrics must be configured explicitly on the Subproperty.
|
5960
|
+
# Corresponds to the JSON property `customDimensionAndMetricSyncMode`
|
5961
|
+
# @return [String]
|
5962
|
+
attr_accessor :custom_dimension_and_metric_sync_mode
|
5963
|
+
|
5964
|
+
# Output only. Identifier. Format: properties/`ordinary_property_id`/
|
5965
|
+
# subpropertySyncConfigs/`subproperty_id` Example: properties/1234/
|
5966
|
+
# subpropertySyncConfigs/5678
|
5967
|
+
# Corresponds to the JSON property `name`
|
5968
|
+
# @return [String]
|
5969
|
+
attr_accessor :name
|
5970
|
+
|
5971
|
+
def initialize(**args)
|
5972
|
+
update!(**args)
|
5973
|
+
end
|
5974
|
+
|
5975
|
+
# Update properties of this object
|
5976
|
+
def update!(**args)
|
5977
|
+
@apply_to_property = args[:apply_to_property] if args.key?(:apply_to_property)
|
5978
|
+
@custom_dimension_and_metric_sync_mode = args[:custom_dimension_and_metric_sync_mode] if args.key?(:custom_dimension_and_metric_sync_mode)
|
5979
|
+
@name = args[:name] if args.key?(:name)
|
5980
|
+
end
|
5981
|
+
end
|
5982
|
+
|
5901
5983
|
# Request message for UpdateAccessBinding RPC.
|
5902
5984
|
class GoogleAnalyticsAdminV1alphaUpdateAccessBindingRequest
|
5903
5985
|
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.84.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250615"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -844,6 +844,12 @@ module Google
|
|
844
844
|
include Google::Apis::Core::JsonObjectSupport
|
845
845
|
end
|
846
846
|
|
847
|
+
class GoogleAnalyticsAdminV1alphaListSubpropertySyncConfigsResponse
|
848
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
849
|
+
|
850
|
+
include Google::Apis::Core::JsonObjectSupport
|
851
|
+
end
|
852
|
+
|
847
853
|
class GoogleAnalyticsAdminV1alphaMatchingCondition
|
848
854
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
849
855
|
|
@@ -1018,6 +1024,12 @@ module Google
|
|
1018
1024
|
include Google::Apis::Core::JsonObjectSupport
|
1019
1025
|
end
|
1020
1026
|
|
1027
|
+
class GoogleAnalyticsAdminV1alphaSubpropertySyncConfig
|
1028
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1029
|
+
|
1030
|
+
include Google::Apis::Core::JsonObjectSupport
|
1031
|
+
end
|
1032
|
+
|
1021
1033
|
class GoogleAnalyticsAdminV1alphaUpdateAccessBindingRequest
|
1022
1034
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1023
1035
|
|
@@ -1629,6 +1641,8 @@ module Google
|
|
1629
1641
|
|
1630
1642
|
property :skadnetwork_conversion_value_schema, as: 'skadnetworkConversionValueSchema', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
|
1631
1643
|
|
1644
|
+
property :subproperty_sync_config, as: 'subpropertySyncConfig', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig::Representation
|
1645
|
+
|
1632
1646
|
end
|
1633
1647
|
end
|
1634
1648
|
|
@@ -2406,6 +2420,15 @@ module Google
|
|
2406
2420
|
end
|
2407
2421
|
end
|
2408
2422
|
|
2423
|
+
class GoogleAnalyticsAdminV1alphaListSubpropertySyncConfigsResponse
|
2424
|
+
# @private
|
2425
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2426
|
+
property :next_page_token, as: 'nextPageToken'
|
2427
|
+
collection :subproperty_sync_configs, as: 'subpropertySyncConfigs', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig::Representation
|
2428
|
+
|
2429
|
+
end
|
2430
|
+
end
|
2431
|
+
|
2409
2432
|
class GoogleAnalyticsAdminV1alphaMatchingCondition
|
2410
2433
|
# @private
|
2411
2434
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2498,6 +2521,7 @@ module Google
|
|
2498
2521
|
class GoogleAnalyticsAdminV1alphaProvisionSubpropertyRequest
|
2499
2522
|
# @private
|
2500
2523
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2524
|
+
property :custom_dimension_and_metric_synchronization_mode, as: 'customDimensionAndMetricSynchronizationMode'
|
2501
2525
|
property :subproperty, as: 'subproperty', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty::Representation
|
2502
2526
|
|
2503
2527
|
property :subproperty_event_filter, as: 'subpropertyEventFilter', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertyEventFilter, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertyEventFilter::Representation
|
@@ -2716,6 +2740,15 @@ module Google
|
|
2716
2740
|
end
|
2717
2741
|
end
|
2718
2742
|
|
2743
|
+
class GoogleAnalyticsAdminV1alphaSubpropertySyncConfig
|
2744
|
+
# @private
|
2745
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2746
|
+
property :apply_to_property, as: 'applyToProperty'
|
2747
|
+
property :custom_dimension_and_metric_sync_mode, as: 'customDimensionAndMetricSyncMode'
|
2748
|
+
property :name, as: 'name'
|
2749
|
+
end
|
2750
|
+
end
|
2751
|
+
|
2719
2752
|
class GoogleAnalyticsAdminV1alphaUpdateAccessBindingRequest
|
2720
2753
|
# @private
|
2721
2754
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5966,6 +5966,121 @@ module Google
|
|
5966
5966
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5967
5967
|
execute_or_queue_command(command, &block)
|
5968
5968
|
end
|
5969
|
+
|
5970
|
+
# Lookup for a single `SubpropertySyncConfig`.
|
5971
|
+
# @param [String] name
|
5972
|
+
# Required. Resource name of the SubpropertySyncConfig to lookup. Format:
|
5973
|
+
# properties/`ordinary_property_id`/subpropertySyncConfigs/`subproperty_id`
|
5974
|
+
# Example: properties/1234/subpropertySyncConfigs/5678
|
5975
|
+
# @param [String] fields
|
5976
|
+
# Selector specifying which fields to include in a partial response.
|
5977
|
+
# @param [String] quota_user
|
5978
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
5979
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
5980
|
+
# @param [Google::Apis::RequestOptions] options
|
5981
|
+
# Request-specific options
|
5982
|
+
#
|
5983
|
+
# @yield [result, err] Result & error if block supplied
|
5984
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig] parsed result object
|
5985
|
+
# @yieldparam err [StandardError] error object if request failed
|
5986
|
+
#
|
5987
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig]
|
5988
|
+
#
|
5989
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5990
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5991
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5992
|
+
def get_property_subproperty_sync_config(name, fields: nil, quota_user: nil, options: nil, &block)
|
5993
|
+
command = make_simple_command(:get, 'v1alpha/{+name}', options)
|
5994
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig::Representation
|
5995
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig
|
5996
|
+
command.params['name'] = name unless name.nil?
|
5997
|
+
command.query['fields'] = fields unless fields.nil?
|
5998
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5999
|
+
execute_or_queue_command(command, &block)
|
6000
|
+
end
|
6001
|
+
|
6002
|
+
# List all `SubpropertySyncConfig` resources for a property.
|
6003
|
+
# @param [String] parent
|
6004
|
+
# Required. Resource name of the property. Format: properties/property_id
|
6005
|
+
# Example: properties/123
|
6006
|
+
# @param [Fixnum] page_size
|
6007
|
+
# Optional. The maximum number of resources to return. The service may return
|
6008
|
+
# fewer than this value, even if there are additional pages. If unspecified, at
|
6009
|
+
# most 50 resources will be returned. The maximum value is 200; (higher values
|
6010
|
+
# will be coerced to the maximum)
|
6011
|
+
# @param [String] page_token
|
6012
|
+
# Optional. A page token, received from a previous `ListSubpropertySyncConfig`
|
6013
|
+
# call. Provide this to retrieve the subsequent page. When paginating, all other
|
6014
|
+
# parameters provided to `ListSubpropertySyncConfig` must match the call that
|
6015
|
+
# provided the page token.
|
6016
|
+
# @param [String] fields
|
6017
|
+
# Selector specifying which fields to include in a partial response.
|
6018
|
+
# @param [String] quota_user
|
6019
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
6020
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
6021
|
+
# @param [Google::Apis::RequestOptions] options
|
6022
|
+
# Request-specific options
|
6023
|
+
#
|
6024
|
+
# @yield [result, err] Result & error if block supplied
|
6025
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSubpropertySyncConfigsResponse] parsed result object
|
6026
|
+
# @yieldparam err [StandardError] error object if request failed
|
6027
|
+
#
|
6028
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSubpropertySyncConfigsResponse]
|
6029
|
+
#
|
6030
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6031
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6032
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6033
|
+
def list_property_subproperty_sync_configs(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6034
|
+
command = make_simple_command(:get, 'v1alpha/{+parent}/subpropertySyncConfigs', options)
|
6035
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSubpropertySyncConfigsResponse::Representation
|
6036
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSubpropertySyncConfigsResponse
|
6037
|
+
command.params['parent'] = parent unless parent.nil?
|
6038
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
6039
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
6040
|
+
command.query['fields'] = fields unless fields.nil?
|
6041
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6042
|
+
execute_or_queue_command(command, &block)
|
6043
|
+
end
|
6044
|
+
|
6045
|
+
# Updates a `SubpropertySyncConfig`.
|
6046
|
+
# @param [String] name
|
6047
|
+
# Output only. Identifier. Format: properties/`ordinary_property_id`/
|
6048
|
+
# subpropertySyncConfigs/`subproperty_id` Example: properties/1234/
|
6049
|
+
# subpropertySyncConfigs/5678
|
6050
|
+
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig] google_analytics_admin_v1alpha_subproperty_sync_config_object
|
6051
|
+
# @param [String] update_mask
|
6052
|
+
# Optional. The list of fields to update. Field names must be in snake case (for
|
6053
|
+
# example, "field_to_update"). Omitted fields will not be updated. To replace
|
6054
|
+
# the entire entity, use one path with the string "*" to match all fields.
|
6055
|
+
# @param [String] fields
|
6056
|
+
# Selector specifying which fields to include in a partial response.
|
6057
|
+
# @param [String] quota_user
|
6058
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
6059
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
6060
|
+
# @param [Google::Apis::RequestOptions] options
|
6061
|
+
# Request-specific options
|
6062
|
+
#
|
6063
|
+
# @yield [result, err] Result & error if block supplied
|
6064
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig] parsed result object
|
6065
|
+
# @yieldparam err [StandardError] error object if request failed
|
6066
|
+
#
|
6067
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig]
|
6068
|
+
#
|
6069
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6070
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6071
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6072
|
+
def patch_property_subproperty_sync_config(name, google_analytics_admin_v1alpha_subproperty_sync_config_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
6073
|
+
command = make_simple_command(:patch, 'v1alpha/{+name}', options)
|
6074
|
+
command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig::Representation
|
6075
|
+
command.request_object = google_analytics_admin_v1alpha_subproperty_sync_config_object
|
6076
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig::Representation
|
6077
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertySyncConfig
|
6078
|
+
command.params['name'] = name unless name.nil?
|
6079
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
6080
|
+
command.query['fields'] = fields unless fields.nil?
|
6081
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6082
|
+
execute_or_queue_command(command, &block)
|
6083
|
+
end
|
5969
6084
|
|
5970
6085
|
protected
|
5971
6086
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.84.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1alpha/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.84.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1alpha
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Google Analytics Admin API V1alpha
|
79
79
|
test_files: []
|