google-apis-cloudidentity_v1 0.32.0 → 0.33.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: d4c57a3c45376acc4a6fdd545addfb5924ba2ad39e34bd5329a0ed6f112c6bbc
4
- data.tar.gz: af1301ae2349a9c9d5826db4cf8a86910934c74869dfcfdddf4ca18b85995eb6
3
+ metadata.gz: 517704d853510f1ba3396d3b38f49294a137a1a3e5c126b18d96e3b095b200a3
4
+ data.tar.gz: f3cd5c1c744ec762388ed1c8097443c7937850a89868352cde35e323527278f7
5
5
  SHA512:
6
- metadata.gz: f2838bacf1c945df36bdf1578f6db0c7ac34ae38b3cb3560e29db1dab309f63bba36796dac56b7c822122e427d0dbfd1b89ba112fb88aae2bdcf8c35c653f8bc
7
- data.tar.gz: dc53de1d4fdfaead7408865b43b299cec2c4562dd4a94a115e4a5b19387d147643e96bace3f077b84c8107db9fa8cce817b3fa16e2691d63fea9853168c2402a
6
+ metadata.gz: 942b5b3b71b1df34215d1426fec8b6f90762344ae438c8cab11a216d1119d362bacc1cf1c6403ec42dd7c815d2acb63d8e955cd75f0a1048f5e6cbc51c71b245
7
+ data.tar.gz: be883d07eeda905d6986a7fe740bff5112ecbd5f7de1107363e5b2cdb846901407fe431aa5a53e2d7f69c5bcb71c283ae4dc12b7e3e3b5d1ee4e37ccf20163f7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudidentity_v1
2
2
 
3
+ ### v0.33.0 (2023-03-26)
4
+
5
+ * Regenerated from discovery document revision 20230321
6
+
3
7
  ### v0.32.0 (2023-02-15)
4
8
 
5
9
  * Regenerated using generator version 0.12.0
@@ -1426,6 +1426,11 @@ module Google
1426
1426
  class Group
1427
1427
  include Google::Apis::Core::Hashable
1428
1428
 
1429
+ # Output only. Additional group keys associated with the Group.
1430
+ # Corresponds to the JSON property `additionalGroupKeys`
1431
+ # @return [Array<Google::Apis::CloudidentityV1::EntityKey>]
1432
+ attr_accessor :additional_group_keys
1433
+
1429
1434
  # Output only. The time when the `Group` was created.
1430
1435
  # Corresponds to the JSON property `createTime`
1431
1436
  # @return [String]
@@ -1497,6 +1502,7 @@ module Google
1497
1502
 
1498
1503
  # Update properties of this object
1499
1504
  def update!(**args)
1505
+ @additional_group_keys = args[:additional_group_keys] if args.key?(:additional_group_keys)
1500
1506
  @create_time = args[:create_time] if args.key?(:create_time)
1501
1507
  @description = args[:description] if args.key?(:description)
1502
1508
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -2010,6 +2016,11 @@ module Google
2010
2016
  # @return [String]
2011
2017
  attr_accessor :create_time
2012
2018
 
2019
+ # Output only. Delivery setting associated with the membership.
2020
+ # Corresponds to the JSON property `deliverySetting`
2021
+ # @return [String]
2022
+ attr_accessor :delivery_setting
2023
+
2013
2024
  # Output only. The [resource name](https://cloud.google.com/apis/design/
2014
2025
  # resource_names) of the `Membership`. Shall be of the form `groups/`group`/
2015
2026
  # memberships/`membership``.
@@ -2049,6 +2060,7 @@ module Google
2049
2060
  # Update properties of this object
2050
2061
  def update!(**args)
2051
2062
  @create_time = args[:create_time] if args.key?(:create_time)
2063
+ @delivery_setting = args[:delivery_setting] if args.key?(:delivery_setting)
2052
2064
  @name = args[:name] if args.key?(:name)
2053
2065
  @preferred_member_key = args[:preferred_member_key] if args.key?(:preferred_member_key)
2054
2066
  @roles = args[:roles] if args.key?(:roles)
@@ -2085,6 +2097,68 @@ module Google
2085
2097
  end
2086
2098
  end
2087
2099
 
2100
+ # Message containing membership relation.
2101
+ class MembershipRelation
2102
+ include Google::Apis::Core::Hashable
2103
+
2104
+ # An extended description to help users determine the purpose of a `Group`.
2105
+ # Corresponds to the JSON property `description`
2106
+ # @return [String]
2107
+ attr_accessor :description
2108
+
2109
+ # The display name of the `Group`.
2110
+ # Corresponds to the JSON property `displayName`
2111
+ # @return [String]
2112
+ attr_accessor :display_name
2113
+
2114
+ # The [resource name](https://cloud.google.com/apis/design/resource_names) of
2115
+ # the `Group`. Shall be of the form `groups/`group_id``.
2116
+ # Corresponds to the JSON property `group`
2117
+ # @return [String]
2118
+ attr_accessor :group
2119
+
2120
+ # A unique identifier for an entity in the Cloud Identity Groups API. An entity
2121
+ # can represent either a group with an optional `namespace` or a user without a `
2122
+ # namespace`. The combination of `id` and `namespace` must be unique; however,
2123
+ # the same `id` can be used with different `namespace`s.
2124
+ # Corresponds to the JSON property `groupKey`
2125
+ # @return [Google::Apis::CloudidentityV1::EntityKey]
2126
+ attr_accessor :group_key
2127
+
2128
+ # One or more label entries that apply to the Group. Currently supported labels
2129
+ # contain a key with an empty value.
2130
+ # Corresponds to the JSON property `labels`
2131
+ # @return [Hash<String,String>]
2132
+ attr_accessor :labels
2133
+
2134
+ # The [resource name](https://cloud.google.com/apis/design/resource_names) of
2135
+ # the `Membership`. Shall be of the form `groups/`group_id`/memberships/`
2136
+ # membership_id``.
2137
+ # Corresponds to the JSON property `membership`
2138
+ # @return [String]
2139
+ attr_accessor :membership
2140
+
2141
+ # The `MembershipRole`s that apply to the `Membership`.
2142
+ # Corresponds to the JSON property `roles`
2143
+ # @return [Array<Google::Apis::CloudidentityV1::MembershipRole>]
2144
+ attr_accessor :roles
2145
+
2146
+ def initialize(**args)
2147
+ update!(**args)
2148
+ end
2149
+
2150
+ # Update properties of this object
2151
+ def update!(**args)
2152
+ @description = args[:description] if args.key?(:description)
2153
+ @display_name = args[:display_name] if args.key?(:display_name)
2154
+ @group = args[:group] if args.key?(:group)
2155
+ @group_key = args[:group_key] if args.key?(:group_key)
2156
+ @labels = args[:labels] if args.key?(:labels)
2157
+ @membership = args[:membership] if args.key?(:membership)
2158
+ @roles = args[:roles] if args.key?(:roles)
2159
+ end
2160
+ end
2161
+
2088
2162
  # A membership role within the Cloud Identity Groups API. A `MembershipRole`
2089
2163
  # defines the privileges granted to a `Membership`.
2090
2164
  class MembershipRole
@@ -2335,14 +2409,14 @@ module Google
2335
2409
  # The **Logout Redirect URL** (sign-out page URL) of the identity provider. When
2336
2410
  # a user clicks the sign-out link on a Google page, they will be redirected to
2337
2411
  # this URL. This is a pure redirect with no attached SAML `LogoutRequest` i.e.
2338
- # SAML single logout is currently not supported. Must use `HTTPS`.
2412
+ # SAML single logout is not supported. Must use `HTTPS`.
2339
2413
  # Corresponds to the JSON property `logoutRedirectUri`
2340
2414
  # @return [String]
2341
2415
  attr_accessor :logout_redirect_uri
2342
2416
 
2343
2417
  # Required. The `SingleSignOnService` endpoint location (sign-in page URL) of
2344
2418
  # the identity provider. This is the URL where the `AuthnRequest` will be sent.
2345
- # Must use `HTTPS`. Currently assumed to accept the `HTTP-Redirect` binding.
2419
+ # Must use `HTTPS`. Assumed to accept the `HTTP-Redirect` binding.
2346
2420
  # Corresponds to the JSON property `singleSignOnServiceUri`
2347
2421
  # @return [String]
2348
2422
  attr_accessor :single_sign_on_service_uri
@@ -2365,8 +2439,8 @@ module Google
2365
2439
  include Google::Apis::Core::Hashable
2366
2440
 
2367
2441
  # Output only. The SAML **Assertion Consumer Service (ACS) URL** to be used for
2368
- # the IDP-initiated login. Currently assumed to accept response messages via the
2369
- # `HTTP-POST` binding.
2442
+ # the IDP-initiated login. Assumed to accept response messages via the `HTTP-
2443
+ # POST` binding.
2370
2444
  # Corresponds to the JSON property `assertionConsumerServiceUri`
2371
2445
  # @return [String]
2372
2446
  attr_accessor :assertion_consumer_service_uri
@@ -2407,6 +2481,32 @@ module Google
2407
2481
  end
2408
2482
  end
2409
2483
 
2484
+ # The response message for MembershipsService.SearchDirectGroups.
2485
+ class SearchDirectGroupsResponse
2486
+ include Google::Apis::Core::Hashable
2487
+
2488
+ # List of direct groups satisfying the query.
2489
+ # Corresponds to the JSON property `memberships`
2490
+ # @return [Array<Google::Apis::CloudidentityV1::MembershipRelation>]
2491
+ attr_accessor :memberships
2492
+
2493
+ # Token to retrieve the next page of results, or empty if there are no more
2494
+ # results available for listing.
2495
+ # Corresponds to the JSON property `nextPageToken`
2496
+ # @return [String]
2497
+ attr_accessor :next_page_token
2498
+
2499
+ def initialize(**args)
2500
+ update!(**args)
2501
+ end
2502
+
2503
+ # Update properties of this object
2504
+ def update!(**args)
2505
+ @memberships = args[:memberships] if args.key?(:memberships)
2506
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2507
+ end
2508
+ end
2509
+
2410
2510
  # The response message for GroupsService.SearchGroups.
2411
2511
  class SearchGroupsResponse
2412
2512
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudidentityV1
18
18
  # Version of the google-apis-cloudidentity_v1 gem
19
- GEM_VERSION = "0.32.0"
19
+ GEM_VERSION = "0.33.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 = "20230117"
25
+ REVISION = "20230321"
26
26
  end
27
27
  end
28
28
  end
@@ -460,6 +460,12 @@ module Google
460
460
  include Google::Apis::Core::JsonObjectSupport
461
461
  end
462
462
 
463
+ class MembershipRelation
464
+ class Representation < Google::Apis::Core::JsonRepresentation; end
465
+
466
+ include Google::Apis::Core::JsonObjectSupport
467
+ end
468
+
463
469
  class MembershipRole
464
470
  class Representation < Google::Apis::Core::JsonRepresentation; end
465
471
 
@@ -526,6 +532,12 @@ module Google
526
532
  include Google::Apis::Core::JsonObjectSupport
527
533
  end
528
534
 
535
+ class SearchDirectGroupsResponse
536
+ class Representation < Google::Apis::Core::JsonRepresentation; end
537
+
538
+ include Google::Apis::Core::JsonObjectSupport
539
+ end
540
+
529
541
  class SearchGroupsResponse
530
542
  class Representation < Google::Apis::Core::JsonRepresentation; end
531
543
 
@@ -1052,6 +1064,8 @@ module Google
1052
1064
  class Group
1053
1065
  # @private
1054
1066
  class Representation < Google::Apis::Core::JsonRepresentation
1067
+ collection :additional_group_keys, as: 'additionalGroupKeys', class: Google::Apis::CloudidentityV1::EntityKey, decorator: Google::Apis::CloudidentityV1::EntityKey::Representation
1068
+
1055
1069
  property :create_time, as: 'createTime'
1056
1070
  property :description, as: 'description'
1057
1071
  property :display_name, as: 'displayName'
@@ -1221,6 +1235,7 @@ module Google
1221
1235
  # @private
1222
1236
  class Representation < Google::Apis::Core::JsonRepresentation
1223
1237
  property :create_time, as: 'createTime'
1238
+ property :delivery_setting, as: 'deliverySetting'
1224
1239
  property :name, as: 'name'
1225
1240
  property :preferred_member_key, as: 'preferredMemberKey', class: Google::Apis::CloudidentityV1::EntityKey, decorator: Google::Apis::CloudidentityV1::EntityKey::Representation
1226
1241
 
@@ -1240,6 +1255,21 @@ module Google
1240
1255
  end
1241
1256
  end
1242
1257
 
1258
+ class MembershipRelation
1259
+ # @private
1260
+ class Representation < Google::Apis::Core::JsonRepresentation
1261
+ property :description, as: 'description'
1262
+ property :display_name, as: 'displayName'
1263
+ property :group, as: 'group'
1264
+ property :group_key, as: 'groupKey', class: Google::Apis::CloudidentityV1::EntityKey, decorator: Google::Apis::CloudidentityV1::EntityKey::Representation
1265
+
1266
+ hash :labels, as: 'labels'
1267
+ property :membership, as: 'membership'
1268
+ collection :roles, as: 'roles', class: Google::Apis::CloudidentityV1::MembershipRole, decorator: Google::Apis::CloudidentityV1::MembershipRole::Representation
1269
+
1270
+ end
1271
+ end
1272
+
1243
1273
  class MembershipRole
1244
1274
  # @private
1245
1275
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1336,6 +1366,15 @@ module Google
1336
1366
  end
1337
1367
  end
1338
1368
 
1369
+ class SearchDirectGroupsResponse
1370
+ # @private
1371
+ class Representation < Google::Apis::Core::JsonRepresentation
1372
+ collection :memberships, as: 'memberships', class: Google::Apis::CloudidentityV1::MembershipRelation, decorator: Google::Apis::CloudidentityV1::MembershipRelation::Representation
1373
+
1374
+ property :next_page_token, as: 'nextPageToken'
1375
+ end
1376
+ end
1377
+
1339
1378
  class SearchGroupsResponse
1340
1379
  # @private
1341
1380
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1292,13 +1292,19 @@ module Google
1292
1292
  # @param [String] page_token
1293
1293
  # The `next_page_token` value returned from a previous search request, if any.
1294
1294
  # @param [String] query
1295
- # Required. The search query. Must be specified in [Common Expression Language](
1296
- # https://opensource.google/projects/cel). May only contain equality operators
1297
- # on the parent and inclusion operators on labels (e.g., `parent == 'customers/`
1298
- # customer_id`' && 'cloudidentity.googleapis.com/groups.discussion_forum' in
1299
- # labels`). The `customer_id` must begin with "C" (for example, 'C046psxkn'). [
1300
- # Find your customer ID.] (https://support.google.com/cloudidentity/answer/
1301
- # 10070793)
1295
+ # Required. The search query. * Must be specified in [Common Expression Language]
1296
+ # (https://opensource.google/projects/cel). * Must contain equality operators on
1297
+ # the parent, e.g. `parent == 'customers/`customer_id`'`. The `customer_id` must
1298
+ # begin with "C" (for example, 'C046psxkn'). [Find your customer ID.] (https://
1299
+ # support.google.com/cloudidentity/answer/10070793) * Can contain optional
1300
+ # inclusion operators on `labels` such as `'cloudidentity.googleapis.com/groups.
1301
+ # discussion_forum' in labels`). * Can contain an optional equality operator on `
1302
+ # domain_name`. e.g. `domain_name == 'abc.com'` * Can contain optional `
1303
+ # startsWith/contains/equality` operators on `group_key`, e.g. `group_key.
1304
+ # startsWith('dev')`, `group_key.contains('dev'), group_key == 'dev@abc.com'` *
1305
+ # Can contain optional `startsWith/contains/equality` operators on `display_name`
1306
+ # , such as `display_name.startsWith('dev')` , `display_name.contains('dev')`, `
1307
+ # display_name == 'dev'`
1302
1308
  # @param [String] view
1303
1309
  # The level of detail to be returned. If unspecified, defaults to `View.BASIC`.
1304
1310
  # @param [String] fields
@@ -1689,6 +1695,62 @@ module Google
1689
1695
  execute_or_queue_command(command, &block)
1690
1696
  end
1691
1697
 
1698
+ # Searches direct groups of a member.
1699
+ # @param [String] parent
1700
+ # [Resource name](https://cloud.google.com/apis/design/resource_names) of the
1701
+ # group to search transitive memberships in. Format: groups/`group_id`, where
1702
+ # group_id is always '-' as this API will search across all groups for a given
1703
+ # member.
1704
+ # @param [String] order_by
1705
+ # The ordering of membership relation for the display name or email in the
1706
+ # response. The syntax for this field can be found at https://cloud.google.com/
1707
+ # apis/design/design_patterns#sorting_order. Example: Sort by the ascending
1708
+ # display name: order_by="group_name" or order_by="group_name asc". Sort by the
1709
+ # descending display name: order_by="group_name desc". Sort by the ascending
1710
+ # group key: order_by="group_key" or order_by="group_key asc". Sort by the
1711
+ # descending group key: order_by="group_key desc".
1712
+ # @param [Fixnum] page_size
1713
+ # The default page size is 200 (max 1000).
1714
+ # @param [String] page_token
1715
+ # The next_page_token value returned from a previous list request, if any
1716
+ # @param [String] query
1717
+ # Required. A CEL expression that MUST include member specification AND label(s).
1718
+ # Users can search on label attributes of groups. CONTAINS match ('in') is
1719
+ # supported on labels. Identity-mapped groups are uniquely identified by both a `
1720
+ # member_key_id` and a `member_key_namespace`, which requires an additional
1721
+ # query input: `member_key_namespace`. Example query: `member_key_id == '
1722
+ # member_key_id_value' && 'label_value' in labels`
1723
+ # @param [String] fields
1724
+ # Selector specifying which fields to include in a partial response.
1725
+ # @param [String] quota_user
1726
+ # Available to use for quota purposes for server-side applications. Can be any
1727
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1728
+ # @param [Google::Apis::RequestOptions] options
1729
+ # Request-specific options
1730
+ #
1731
+ # @yield [result, err] Result & error if block supplied
1732
+ # @yieldparam result [Google::Apis::CloudidentityV1::SearchDirectGroupsResponse] parsed result object
1733
+ # @yieldparam err [StandardError] error object if request failed
1734
+ #
1735
+ # @return [Google::Apis::CloudidentityV1::SearchDirectGroupsResponse]
1736
+ #
1737
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1738
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1739
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1740
+ def search_group_membership_direct_groups(parent, order_by: nil, page_size: nil, page_token: nil, query: nil, fields: nil, quota_user: nil, options: nil, &block)
1741
+ command = make_simple_command(:get, 'v1/{+parent}/memberships:searchDirectGroups', options)
1742
+ command.response_representation = Google::Apis::CloudidentityV1::SearchDirectGroupsResponse::Representation
1743
+ command.response_class = Google::Apis::CloudidentityV1::SearchDirectGroupsResponse
1744
+ command.params['parent'] = parent unless parent.nil?
1745
+ command.query['orderBy'] = order_by unless order_by.nil?
1746
+ command.query['pageSize'] = page_size unless page_size.nil?
1747
+ command.query['pageToken'] = page_token unless page_token.nil?
1748
+ command.query['query'] = query unless query.nil?
1749
+ command.query['fields'] = fields unless fields.nil?
1750
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1751
+ execute_or_queue_command(command, &block)
1752
+ end
1753
+
1692
1754
  # Search transitive groups of a member. **Note:** This feature is only available
1693
1755
  # to Google Workspace Enterprise Standard, Enterprise Plus, and Enterprise for
1694
1756
  # Education; and Cloud Identity Premium accounts. If the account of the member
@@ -1711,7 +1773,13 @@ module Google
1711
1773
  # CONTAINS match ('in') is supported on labels. Identity-mapped groups are
1712
1774
  # uniquely identified by both a `member_key_id` and a `member_key_namespace`,
1713
1775
  # which requires an additional query input: `member_key_namespace`. Example
1714
- # query: `member_key_id == 'member_key_id_value' && in labels`
1776
+ # query: `member_key_id == 'member_key_id_value' && in labels` Query may
1777
+ # optionally contain equality operators on the parent of the group restricting
1778
+ # the search within a particular customer, e.g. `parent == 'customers/`
1779
+ # customer_id`'`. The `customer_id` must begin with "C" (for example, 'C046psxkn'
1780
+ # ). This filtering is only supported for Admins with groups read permissons on
1781
+ # the input customer. Example query: `member_key_id == 'member_key_id_value' &&
1782
+ # in labels && parent == 'customers/C046psxkn'`
1715
1783
  # @param [String] fields
1716
1784
  # Selector specifying which fields to include in a partial response.
1717
1785
  # @param [String] quota_user
@@ -1882,10 +1950,10 @@ module Google
1882
1950
  # Lists InboundSamlSsoProfiles for a customer.
1883
1951
  # @param [String] filter
1884
1952
  # A [Common Expression Language](https://github.com/google/cel-spec) expression
1885
- # to filter the results. The only currently-supported filter is filtering by
1886
- # customer. For example: `customer=="customers/C0123abc"`. Omitting the filter
1887
- # or specifying a filter of `customer=="customers/my_customer"` will return the
1888
- # profiles for the customer that the caller (authenticated user) belongs to.
1953
+ # to filter the results. The only supported filter is filtering by customer. For
1954
+ # example: `customer=="customers/C0123abc"`. Omitting the filter or specifying a
1955
+ # filter of `customer=="customers/my_customer"` will return the profiles for the
1956
+ # customer that the caller (authenticated user) belongs to.
1889
1957
  # @param [Fixnum] page_size
1890
1958
  # The maximum number of InboundSamlSsoProfiles to return. The service may return
1891
1959
  # fewer than this value. If omitted (or defaulted to zero) the server will use a
@@ -2200,11 +2268,10 @@ module Google
2200
2268
 
2201
2269
  # Lists the InboundSsoAssignments for a `Customer`.
2202
2270
  # @param [String] filter
2203
- # A CEL expression to filter the results. The only currently-supported filter is
2204
- # filtering by customer. For example: `customer==customers/C0123abc`. Omitting
2205
- # the filter or specifying a filter of `customer==customers/my_customer` will
2206
- # return the assignments for the customer that the caller (authenticated user)
2207
- # belongs to.
2271
+ # A CEL expression to filter the results. The only supported filter is filtering
2272
+ # by customer. For example: `customer==customers/C0123abc`. Omitting the filter
2273
+ # or specifying a filter of `customer==customers/my_customer` will return the
2274
+ # assignments for the customer that the caller (authenticated user) belongs to.
2208
2275
  # @param [Fixnum] page_size
2209
2276
  # The maximum number of assignments to return. The service may return fewer than
2210
2277
  # this value. If omitted (or defaulted to zero) the server will use a sensible
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudidentity_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.0
4
+ version: 0.33.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-02-19 00:00:00.000000000 Z
11
+ date: 2023-03-26 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-cloudidentity_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.32.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.33.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1
63
63
  post_install_message:
64
64
  rdoc_options: []