google-apis-analyticsadmin_v1alpha 0.90.0 → 0.91.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: 43f8517ce2a58d6721ff8f550fdfe68f259137ad8ce414221b5fad1b9afdd204
4
- data.tar.gz: 7e3a175b1838c9e1b0f5a5126f527a99a05a2a6a564e388dad86fee003bb3f41
3
+ metadata.gz: 1571116e1f79f860e2a025ce1a8c417abc2ddf7003ea283774c18e9117eea874
4
+ data.tar.gz: a4fddd7986b61f71ca705f8031426bce867fa81f18ff74742efe90059c6ba40a
5
5
  SHA512:
6
- metadata.gz: eac8eef3eaa66c7db978ef60eda722673df67faf0665cbb47cd03b276b9d06bf1ec9d01da6a85e55b538aafc82e0cb9459b4808261c60516ebd4ac8abd9e1de9
7
- data.tar.gz: 78b668e5421d70d717182b56f6c3fad9e7c06e65096108fb5e6ce7e3618eb33995adf01e8d7a98959a7c25ba01841f9b9d3e371095b630a1809e54b4aa793317
6
+ metadata.gz: 2fad015b6f12eb021c2f664d9fc7c2ef6f45be946851a0218f1476b984e3265d7ab24884295906264cd73ceae6ef3ff0ff2fd41e68b1e57bef2c0be856f4743d
7
+ data.tar.gz: db33d9b160d0f492713cf50634f9f1d9178304aeb7fa1b7f7fb2e5ee31fad2a5105f012ba3c367354e82fc5295bc830d6a1babe38482790c8ee8decedb46ae0e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.91.0 (2026-06-21)
4
+
5
+ * Regenerated from discovery document revision 20260616
6
+
3
7
  ### v0.90.0 (2026-06-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20260607
@@ -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.90.0"
19
+ GEM_VERSION = "0.91.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260607"
25
+ REVISION = "20260616"
26
26
  end
27
27
  end
28
28
  end
@@ -1362,6 +1362,48 @@ module Google
1362
1362
  execute_or_queue_command(command, &block)
1363
1363
  end
1364
1364
 
1365
+ # Updates the reporting identity settings for this property.
1366
+ # @param [String] name
1367
+ # Output only. Identifier. Resource name for this reporting identity settings
1368
+ # singleton resource. Format: properties/`property_id`/reportingIdentitySettings
1369
+ # Example: "properties/1234/reportingIdentitySettings"
1370
+ # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings] google_analytics_admin_v1alpha_reporting_identity_settings_object
1371
+ # @param [String] update_mask
1372
+ # Optional. The list of fields to be updated. Field names must be in snake case (
1373
+ # for example, "field_to_update"). Omitted fields will not be updated. To
1374
+ # replace the entire entity, use one path with the string "*" to match all
1375
+ # fields. If omitted, the service will treat it as an implied field mask
1376
+ # equivalent to all fields that are populated.
1377
+ # @param [String] fields
1378
+ # Selector specifying which fields to include in a partial response.
1379
+ # @param [String] quota_user
1380
+ # Available to use for quota purposes for server-side applications. Can be any
1381
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1382
+ # @param [Google::Apis::RequestOptions] options
1383
+ # Request-specific options
1384
+ #
1385
+ # @yield [result, err] Result & error if block supplied
1386
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings] parsed result object
1387
+ # @yieldparam err [StandardError] error object if request failed
1388
+ #
1389
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings]
1390
+ #
1391
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1392
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1393
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1394
+ def update_property_reporting_identity_settings(name, google_analytics_admin_v1alpha_reporting_identity_settings_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
1395
+ command = make_simple_command(:patch, 'v1alpha/{+name}', options)
1396
+ command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings::Representation
1397
+ command.request_object = google_analytics_admin_v1alpha_reporting_identity_settings_object
1398
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings::Representation
1399
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings
1400
+ command.params['name'] = name unless name.nil?
1401
+ command.query['updateMask'] = update_mask unless update_mask.nil?
1402
+ command.query['fields'] = fields unless fields.nil?
1403
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1404
+ execute_or_queue_command(command, &block)
1405
+ end
1406
+
1365
1407
  # Creates information about multiple access bindings to an account or property.
1366
1408
  # This method is transactional. If any AccessBinding cannot be created, none of
1367
1409
  # the AccessBindings will be created.
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.90.0
4
+ version: 0.91.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.90.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.91.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: