google-apis-analyticsadmin_v1alpha 0.89.0 → 0.90.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 43f8517ce2a58d6721ff8f550fdfe68f259137ad8ce414221b5fad1b9afdd204
|
|
4
|
+
data.tar.gz: 7e3a175b1838c9e1b0f5a5126f527a99a05a2a6a564e388dad86fee003bb3f41
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eac8eef3eaa66c7db978ef60eda722673df67faf0665cbb47cd03b276b9d06bf1ec9d01da6a85e55b538aafc82e0cb9459b4808261c60516ebd4ac8abd9e1de9
|
|
7
|
+
data.tar.gz: 78b668e5421d70d717182b56f6c3fad9e7c06e65096108fb5e6ce7e3618eb33995adf01e8d7a98959a7c25ba01841f9b9d3e371095b630a1809e54b4aa793317
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-analyticsadmin_v1alpha
|
|
2
2
|
|
|
3
|
+
### v0.90.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260607
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.89.0 (2026-04-19)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20260412
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](http://code.google.com/apis/analytics/docs/mgmt/home
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -4841,6 +4841,13 @@ module Google
|
|
|
4841
4841
|
class GoogleAnalyticsAdminV1alphaPropertySummary
|
|
4842
4842
|
include Google::Apis::Core::Hashable
|
|
4843
4843
|
|
|
4844
|
+
# If true, then the user has a Google Analytics role that permits them to edit
|
|
4845
|
+
# the property.
|
|
4846
|
+
# Corresponds to the JSON property `canEdit`
|
|
4847
|
+
# @return [Boolean]
|
|
4848
|
+
attr_accessor :can_edit
|
|
4849
|
+
alias_method :can_edit?, :can_edit
|
|
4850
|
+
|
|
4844
4851
|
# Display name for the property referred to in this property summary.
|
|
4845
4852
|
# Corresponds to the JSON property `displayName`
|
|
4846
4853
|
# @return [String]
|
|
@@ -4870,6 +4877,7 @@ module Google
|
|
|
4870
4877
|
|
|
4871
4878
|
# Update properties of this object
|
|
4872
4879
|
def update!(**args)
|
|
4880
|
+
@can_edit = args[:can_edit] if args.key?(:can_edit)
|
|
4873
4881
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
4874
4882
|
@parent = args[:parent] if args.key?(:parent)
|
|
4875
4883
|
@property = args[:property] if args.key?(:property)
|
|
@@ -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.90.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260607"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2390,6 +2390,7 @@ module Google
|
|
|
2390
2390
|
class GoogleAnalyticsAdminV1alphaPropertySummary
|
|
2391
2391
|
# @private
|
|
2392
2392
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2393
|
+
property :can_edit, as: 'canEdit'
|
|
2393
2394
|
property :display_name, as: 'displayName'
|
|
2394
2395
|
property :parent, as: 'parent'
|
|
2395
2396
|
property :property, as: 'property'
|
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.90.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.90.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:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|