google-apis-analyticsadmin_v1alpha 0.84.0 → 0.85.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 +33 -0
- data/lib/google/apis/analyticsadmin_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/analyticsadmin_v1alpha/representations.rb +16 -0
- data/lib/google/apis/analyticsadmin_v1alpha/service.rb +31 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea1fa0f70f2a1648b84ff4c830d74fc0a1131d1c9139ee9bb8e8355644e1d477
|
4
|
+
data.tar.gz: 9776135357756cf8b84395cc1d22305eae71c4d661f39f82624364dc7ee8f08f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4290f2564a7ba9993b2037906f9fce143d6774787cde19e83ad84c76df14409973c8d25dc8918cdecd57331e4e11a7e6c95e9417fe5c2e6ca50c0d0cf525c959
|
7
|
+
data.tar.gz: f7b4fe14a90bd1e76d7f0d1048225b59bb4dda66899e717167460a0e2e72667f1e0057f9df1b52304db6b40ca5adbc6052a30652e403cdc04616ad81cdf2d5b7
|
data/CHANGELOG.md
CHANGED
@@ -1909,6 +1909,11 @@ module Google
|
|
1909
1909
|
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingDataAnnotation]
|
1910
1910
|
attr_accessor :reporting_data_annotation
|
1911
1911
|
|
1912
|
+
# A resource containing settings related to reporting identity.
|
1913
|
+
# Corresponds to the JSON property `reportingIdentitySettings`
|
1914
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings]
|
1915
|
+
attr_accessor :reporting_identity_settings
|
1916
|
+
|
1912
1917
|
# A link between a Google Analytics property and a Search Ads 360 entity.
|
1913
1918
|
# Corresponds to the JSON property `searchAds360Link`
|
1914
1919
|
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link]
|
@@ -1957,6 +1962,7 @@ module Google
|
|
1957
1962
|
@measurement_protocol_secret = args[:measurement_protocol_secret] if args.key?(:measurement_protocol_secret)
|
1958
1963
|
@property = args[:property] if args.key?(:property)
|
1959
1964
|
@reporting_data_annotation = args[:reporting_data_annotation] if args.key?(:reporting_data_annotation)
|
1965
|
+
@reporting_identity_settings = args[:reporting_identity_settings] if args.key?(:reporting_identity_settings)
|
1960
1966
|
@search_ads360_link = args[:search_ads360_link] if args.key?(:search_ads360_link)
|
1961
1967
|
@skadnetwork_conversion_value_schema = args[:skadnetwork_conversion_value_schema] if args.key?(:skadnetwork_conversion_value_schema)
|
1962
1968
|
@subproperty_sync_config = args[:subproperty_sync_config] if args.key?(:subproperty_sync_config)
|
@@ -5295,6 +5301,33 @@ module Google
|
|
5295
5301
|
end
|
5296
5302
|
end
|
5297
5303
|
|
5304
|
+
# A resource containing settings related to reporting identity.
|
5305
|
+
class GoogleAnalyticsAdminV1alphaReportingIdentitySettings
|
5306
|
+
include Google::Apis::Core::Hashable
|
5307
|
+
|
5308
|
+
# Output only. Identifier. Resource name for this reporting identity settings
|
5309
|
+
# singleton resource. Format: properties/`property_id`/reportingIdentitySettings
|
5310
|
+
# Example: "properties/1234/reportingIdentitySettings"
|
5311
|
+
# Corresponds to the JSON property `name`
|
5312
|
+
# @return [String]
|
5313
|
+
attr_accessor :name
|
5314
|
+
|
5315
|
+
# The strategy used for identifying user identities in reports.
|
5316
|
+
# Corresponds to the JSON property `reportingIdentity`
|
5317
|
+
# @return [String]
|
5318
|
+
attr_accessor :reporting_identity
|
5319
|
+
|
5320
|
+
def initialize(**args)
|
5321
|
+
update!(**args)
|
5322
|
+
end
|
5323
|
+
|
5324
|
+
# Update properties of this object
|
5325
|
+
def update!(**args)
|
5326
|
+
@name = args[:name] if args.key?(:name)
|
5327
|
+
@reporting_identity = args[:reporting_identity] if args.key?(:reporting_identity)
|
5328
|
+
end
|
5329
|
+
end
|
5330
|
+
|
5298
5331
|
# A link that references a source property under the parent rollup property.
|
5299
5332
|
class GoogleAnalyticsAdminV1alphaRollupPropertySourceLink
|
5300
5333
|
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.85.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250625"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -934,6 +934,12 @@ module Google
|
|
934
934
|
include Google::Apis::Core::JsonObjectSupport
|
935
935
|
end
|
936
936
|
|
937
|
+
class GoogleAnalyticsAdminV1alphaReportingIdentitySettings
|
938
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
939
|
+
|
940
|
+
include Google::Apis::Core::JsonObjectSupport
|
941
|
+
end
|
942
|
+
|
937
943
|
class GoogleAnalyticsAdminV1alphaRollupPropertySourceLink
|
938
944
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
939
945
|
|
@@ -1637,6 +1643,8 @@ module Google
|
|
1637
1643
|
|
1638
1644
|
property :reporting_data_annotation, as: 'reportingDataAnnotation', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingDataAnnotation, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingDataAnnotation::Representation
|
1639
1645
|
|
1646
|
+
property :reporting_identity_settings, as: 'reportingIdentitySettings', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings::Representation
|
1647
|
+
|
1640
1648
|
property :search_ads360_link, as: 'searchAds360Link', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link::Representation
|
1641
1649
|
|
1642
1650
|
property :skadnetwork_conversion_value_schema, as: 'skadnetworkConversionValueSchema', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
|
@@ -2571,6 +2579,14 @@ module Google
|
|
2571
2579
|
end
|
2572
2580
|
end
|
2573
2581
|
|
2582
|
+
class GoogleAnalyticsAdminV1alphaReportingIdentitySettings
|
2583
|
+
# @private
|
2584
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2585
|
+
property :name, as: 'name'
|
2586
|
+
property :reporting_identity, as: 'reportingIdentity'
|
2587
|
+
end
|
2588
|
+
end
|
2589
|
+
|
2574
2590
|
class GoogleAnalyticsAdminV1alphaRollupPropertySourceLink
|
2575
2591
|
# @private
|
2576
2592
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1097,6 +1097,37 @@ module Google
|
|
1097
1097
|
execute_or_queue_command(command, &block)
|
1098
1098
|
end
|
1099
1099
|
|
1100
|
+
# Returns the singleton data retention settings for this property.
|
1101
|
+
# @param [String] name
|
1102
|
+
# Required. The name of the settings to lookup. Format: properties/`property`/
|
1103
|
+
# reportingIdentitySettings Example: "properties/1000/reportingIdentitySettings"
|
1104
|
+
# @param [String] fields
|
1105
|
+
# Selector specifying which fields to include in a partial response.
|
1106
|
+
# @param [String] quota_user
|
1107
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1108
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1109
|
+
# @param [Google::Apis::RequestOptions] options
|
1110
|
+
# Request-specific options
|
1111
|
+
#
|
1112
|
+
# @yield [result, err] Result & error if block supplied
|
1113
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings] parsed result object
|
1114
|
+
# @yieldparam err [StandardError] error object if request failed
|
1115
|
+
#
|
1116
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings]
|
1117
|
+
#
|
1118
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1119
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1120
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1121
|
+
def get_property_reporting_identity_settings(name, fields: nil, quota_user: nil, options: nil, &block)
|
1122
|
+
command = make_simple_command(:get, 'v1alpha/{+name}', options)
|
1123
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings::Representation
|
1124
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings
|
1125
|
+
command.params['name'] = name unless name.nil?
|
1126
|
+
command.query['fields'] = fields unless fields.nil?
|
1127
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1128
|
+
execute_or_queue_command(command, &block)
|
1129
|
+
end
|
1130
|
+
|
1100
1131
|
# Returns child Properties under the specified parent Account. Properties will
|
1101
1132
|
# be excluded if the caller does not have access. Soft-deleted (ie: "trashed")
|
1102
1133
|
# properties are excluded by default. Returns an empty list if no relevant
|
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.85.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.85.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:
|