google-apis-analyticsadmin_v1beta 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f4cf1c5b3893fc8f3786fcd3b3967f23ca83d4c0189b898046755a5aafc06652
4
- data.tar.gz: a30d49711e547fafe1573388a041335459fb9a32aa5e682ee2d6ee0d7d0cc57e
3
+ metadata.gz: 1425a5f1e30f1a1c52964889f57492c94c7cfa21689e0899ea84073574a06be1
4
+ data.tar.gz: bfe8ae98bbe664a5543f8dfb0ef65a00e4599e796efb9409ceba4cc2c4a32ca6
5
5
  SHA512:
6
- metadata.gz: 8e10931a8a399f74a66b9617ea98fef06605a60a1fd8cafe66bca2ac4bee8fc81214694397d6e3d825a0be810e865e66f7c62c37a254916ddc7dc5ec086e4590
7
- data.tar.gz: 862a93eb959b929483a669b3a8d56b428d68e9f97b4d5f42219bcdf9326e5861803f49f121afd37e8879e29dabd4634d0b2cc4dac1f263a57b173db6a5451dad
6
+ metadata.gz: e38cb59901693346d45fb2367612df0e1f1fca694e24f45f83549112e716b0a486b2dc9d7881dea683d826d01bfacd5105f215d285a4bc27a1dae5433c8cfeb3
7
+ data.tar.gz: 42cf410318bbd073659bf79d9c8dc5b0eebd8d0eef74ef0d50b9ce63cbebd515b58e3a31d6949da56fa99525626c884ad8ced23bb1074fea26abadd747f79a5b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-analyticsadmin_v1beta
2
2
 
3
+ ### v0.10.0 (2023-10-08)
4
+
5
+ * Regenerated from discovery document revision 20231004
6
+
3
7
  ### v0.9.0 (2023-08-13)
4
8
 
5
9
  * Regenerated from discovery document revision 20230809
@@ -1790,8 +1790,7 @@ module Google
1790
1790
 
1791
1791
  # Immutable. The property type for this Property resource. When creating a
1792
1792
  # property, if the type is "PROPERTY_TYPE_UNSPECIFIED", then "ORDINARY_PROPERTY"
1793
- # will be implied. "SUBPROPERTY" and "ROLLUP_PROPERTY" types cannot yet be
1794
- # created with the Google Analytics Admin API.
1793
+ # will be implied.
1795
1794
  # Corresponds to the JSON property `propertyType`
1796
1795
  # @return [String]
1797
1796
  attr_accessor :property_type
@@ -1946,6 +1945,25 @@ module Google
1946
1945
  # @return [Array<Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaAccessDimension>]
1947
1946
  attr_accessor :dimensions
1948
1947
 
1948
+ # Optional. Decides whether to return the users within user groups. This field
1949
+ # works only when include_all_users is set to true. If true, it will return all
1950
+ # users with access to the specified property or account. If false, only the
1951
+ # users with direct access will be returned.
1952
+ # Corresponds to the JSON property `expandGroups`
1953
+ # @return [Boolean]
1954
+ attr_accessor :expand_groups
1955
+ alias_method :expand_groups?, :expand_groups
1956
+
1957
+ # Optional. Determines whether to include users who have never made an API call
1958
+ # in the response. If true, all users with access to the specified property or
1959
+ # account are included in the response, regardless of whether they have made an
1960
+ # API call or not. If false, only the users who have made an API call will be
1961
+ # included.
1962
+ # Corresponds to the JSON property `includeAllUsers`
1963
+ # @return [Boolean]
1964
+ attr_accessor :include_all_users
1965
+ alias_method :include_all_users?, :include_all_users
1966
+
1949
1967
  # The number of rows to return. If unspecified, 10,000 rows are returned. The
1950
1968
  # API returns a maximum of 100,000 rows per request, no matter how many you ask
1951
1969
  # for. `limit` must be positive. The API may return fewer rows than the
@@ -2011,6 +2029,8 @@ module Google
2011
2029
  @date_ranges = args[:date_ranges] if args.key?(:date_ranges)
2012
2030
  @dimension_filter = args[:dimension_filter] if args.key?(:dimension_filter)
2013
2031
  @dimensions = args[:dimensions] if args.key?(:dimensions)
2032
+ @expand_groups = args[:expand_groups] if args.key?(:expand_groups)
2033
+ @include_all_users = args[:include_all_users] if args.key?(:include_all_users)
2014
2034
  @limit = args[:limit] if args.key?(:limit)
2015
2035
  @metric_filter = args[:metric_filter] if args.key?(:metric_filter)
2016
2036
  @metrics = args[:metrics] if args.key?(:metrics)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AnalyticsadminV1beta
18
18
  # Version of the google-apis-analyticsadmin_v1beta gem
19
- GEM_VERSION = "0.9.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230809"
25
+ REVISION = "20231004"
26
26
  end
27
27
  end
28
28
  end
@@ -949,6 +949,8 @@ module Google
949
949
 
950
950
  collection :dimensions, as: 'dimensions', class: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaAccessDimension, decorator: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaAccessDimension::Representation
951
951
 
952
+ property :expand_groups, as: 'expandGroups'
953
+ property :include_all_users, as: 'includeAllUsers'
952
954
  property :limit, :numeric_string => true, as: 'limit'
953
955
  property :metric_filter, as: 'metricFilter', class: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaAccessFilterExpression, decorator: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaAccessFilterExpression::Representation
954
956
 
@@ -97,7 +97,7 @@ module Google
97
97
  # does not have a method to restore soft-deleted accounts. However, they can be
98
98
  # restored using the Trash Can UI. If the accounts are not restored before the
99
99
  # expiration time, the account and all child resources (eg: Properties,
100
- # GoogleAdsLinks, Streams, UserLinks) will be permanently purged. https://
100
+ # GoogleAdsLinks, Streams, AccessBindings) will be permanently purged. https://
101
101
  # support.google.com/analytics/answer/6154772 Returns an error if the target is
102
102
  # not found.
103
103
  # @param [String] name
@@ -457,9 +457,9 @@ module Google
457
457
  # does not have a method to restore soft-deleted properties. However, they can
458
458
  # be restored using the Trash Can UI. If the properties are not restored before
459
459
  # the expiration time, the Property and all child resources (eg: GoogleAdsLinks,
460
- # Streams, UserLinks) will be permanently purged. https://support.google.com/
461
- # analytics/answer/6154772 Returns an error if the target is not found, or is
462
- # not a GA4 Property.
460
+ # Streams, AccessBindings) will be permanently purged. https://support.google.
461
+ # com/analytics/answer/6154772 Returns an error if the target is not found, or
462
+ # is not a GA4 Property.
463
463
  # @param [String] name
464
464
  # Required. The name of the Property to soft-delete. Format: properties/`
465
465
  # property_id` Example: "properties/1000"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-analyticsadmin_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.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: 2023-08-13 00:00:00.000000000 Z
11
+ date: 2023-10-08 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_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1beta/v0.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1beta/v0.10.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Analytics Admin API V1beta