google-apis-cloudidentity_v1beta1 0.37.0 → 0.38.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: 8968bc7d6bb73ca73d2e69d759727e3beb6c5aa35dd5bd2c2ad9526121e86390
4
- data.tar.gz: 96fe1796feaccc042b55c6642ab67214f558884b532ed32454b327c1b5943205
3
+ metadata.gz: e8c8b054740e801035b7c9598268cbdf02ad72a8a8c805d26dfbe1ba8338ff66
4
+ data.tar.gz: 6652b8e4e8cb2a8c8a7879f1fdb92e9c514cdfafe641ded8adbb5943104cb1bc
5
5
  SHA512:
6
- metadata.gz: 1c56269b14b797d795fcd4e9ef1dfb9b9cfe83feb2d00fd88bbf1fc91af08171b9ec246a6a408c0ea8cdf7cdc7d6020f663fee120f01c83ef03a1f9d40f22324
7
- data.tar.gz: 243df8698581ed1df3c1c47973b278171920412efdb2d82b50f93d21c0f9df8da6fd6a392738ba329a17b153c5e6a26fe959ad9e3d3e8681fcf04e10369e539b
6
+ metadata.gz: b71afb876041f2a4ad96f2048e9c25e0b0b9e7d33fdb630e3f95eeff28b9de2fada46e10a5849cb600c49ae154b5d50b699209a73ca2e7d56a9c918c2ee7898a
7
+ data.tar.gz: c0b3db160cc83e8f4ebd2ed95188ca5904c96310ab7b558a7508c80d2bba4ae83efb205239835dd49b22686e53519a58d2cc05968c63cd949685a0ded962df9a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.38.0 (2023-03-26)
4
+
5
+ * Regenerated from discovery document revision 20230321
6
+
3
7
  ### v0.37.0 (2023-02-15)
4
8
 
5
9
  * Regenerated using generator version 0.12.0
@@ -1886,6 +1886,11 @@ module Google
1886
1886
  class Group
1887
1887
  include Google::Apis::Core::Hashable
1888
1888
 
1889
+ # Output only. Additional group keys associated with the Group.
1890
+ # Corresponds to the JSON property `additionalGroupKeys`
1891
+ # @return [Array<Google::Apis::CloudidentityV1beta1::EntityKey>]
1892
+ attr_accessor :additional_group_keys
1893
+
1889
1894
  # Output only. The time when the `Group` was created.
1890
1895
  # Corresponds to the JSON property `createTime`
1891
1896
  # @return [String]
@@ -1962,6 +1967,7 @@ module Google
1962
1967
 
1963
1968
  # Update properties of this object
1964
1969
  def update!(**args)
1970
+ @additional_group_keys = args[:additional_group_keys] if args.key?(:additional_group_keys)
1965
1971
  @create_time = args[:create_time] if args.key?(:create_time)
1966
1972
  @description = args[:description] if args.key?(:description)
1967
1973
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -2613,6 +2619,11 @@ module Google
2613
2619
  # @return [String]
2614
2620
  attr_accessor :create_time
2615
2621
 
2622
+ # Output only. Delivery setting associated with the membership.
2623
+ # Corresponds to the JSON property `deliverySetting`
2624
+ # @return [String]
2625
+ attr_accessor :delivery_setting
2626
+
2616
2627
  # A unique identifier for an entity in the Cloud Identity Groups API. An entity
2617
2628
  # can represent either a group with an optional `namespace` or a user without a `
2618
2629
  # namespace`. The combination of `id` and `namespace` must be unique; however,
@@ -2660,6 +2671,7 @@ module Google
2660
2671
  # Update properties of this object
2661
2672
  def update!(**args)
2662
2673
  @create_time = args[:create_time] if args.key?(:create_time)
2674
+ @delivery_setting = args[:delivery_setting] if args.key?(:delivery_setting)
2663
2675
  @member_key = args[:member_key] if args.key?(:member_key)
2664
2676
  @name = args[:name] if args.key?(:name)
2665
2677
  @preferred_member_key = args[:preferred_member_key] if args.key?(:preferred_member_key)
@@ -2697,6 +2709,68 @@ module Google
2697
2709
  end
2698
2710
  end
2699
2711
 
2712
+ # Message containing membership relation.
2713
+ class MembershipRelation
2714
+ include Google::Apis::Core::Hashable
2715
+
2716
+ # An extended description to help users determine the purpose of a `Group`.
2717
+ # Corresponds to the JSON property `description`
2718
+ # @return [String]
2719
+ attr_accessor :description
2720
+
2721
+ # The display name of the `Group`.
2722
+ # Corresponds to the JSON property `displayName`
2723
+ # @return [String]
2724
+ attr_accessor :display_name
2725
+
2726
+ # The [resource name](https://cloud.google.com/apis/design/resource_names) of
2727
+ # the `Group`. Shall be of the form `groups/`group_id``.
2728
+ # Corresponds to the JSON property `group`
2729
+ # @return [String]
2730
+ attr_accessor :group
2731
+
2732
+ # A unique identifier for an entity in the Cloud Identity Groups API. An entity
2733
+ # can represent either a group with an optional `namespace` or a user without a `
2734
+ # namespace`. The combination of `id` and `namespace` must be unique; however,
2735
+ # the same `id` can be used with different `namespace`s.
2736
+ # Corresponds to the JSON property `groupKey`
2737
+ # @return [Google::Apis::CloudidentityV1beta1::EntityKey]
2738
+ attr_accessor :group_key
2739
+
2740
+ # One or more label entries that apply to the Group. Currently supported labels
2741
+ # contain a key with an empty value.
2742
+ # Corresponds to the JSON property `labels`
2743
+ # @return [Hash<String,String>]
2744
+ attr_accessor :labels
2745
+
2746
+ # The [resource name](https://cloud.google.com/apis/design/resource_names) of
2747
+ # the `Membership`. Shall be of the form `groups/`group_id`/memberships/`
2748
+ # membership_id``.
2749
+ # Corresponds to the JSON property `membership`
2750
+ # @return [String]
2751
+ attr_accessor :membership
2752
+
2753
+ # The `MembershipRole`s that apply to the `Membership`.
2754
+ # Corresponds to the JSON property `roles`
2755
+ # @return [Array<Google::Apis::CloudidentityV1beta1::MembershipRole>]
2756
+ attr_accessor :roles
2757
+
2758
+ def initialize(**args)
2759
+ update!(**args)
2760
+ end
2761
+
2762
+ # Update properties of this object
2763
+ def update!(**args)
2764
+ @description = args[:description] if args.key?(:description)
2765
+ @display_name = args[:display_name] if args.key?(:display_name)
2766
+ @group = args[:group] if args.key?(:group)
2767
+ @group_key = args[:group_key] if args.key?(:group_key)
2768
+ @labels = args[:labels] if args.key?(:labels)
2769
+ @membership = args[:membership] if args.key?(:membership)
2770
+ @roles = args[:roles] if args.key?(:roles)
2771
+ end
2772
+ end
2773
+
2700
2774
  # A membership role within the Cloud Identity Groups API. A `MembershipRole`
2701
2775
  # defines the privileges granted to a `Membership`.
2702
2776
  class MembershipRole
@@ -3066,14 +3140,14 @@ module Google
3066
3140
  # The **Logout Redirect URL** (sign-out page URL) of the identity provider. When
3067
3141
  # a user clicks the sign-out link on a Google page, they will be redirected to
3068
3142
  # this URL. This is a pure redirect with no attached SAML `LogoutRequest` i.e.
3069
- # SAML single logout is currently not supported. Must use `HTTPS`.
3143
+ # SAML single logout is not supported. Must use `HTTPS`.
3070
3144
  # Corresponds to the JSON property `logoutRedirectUri`
3071
3145
  # @return [String]
3072
3146
  attr_accessor :logout_redirect_uri
3073
3147
 
3074
3148
  # Required. The `SingleSignOnService` endpoint location (sign-in page URL) of
3075
3149
  # the identity provider. This is the URL where the `AuthnRequest` will be sent.
3076
- # Must use `HTTPS`. Currently assumed to accept the `HTTP-Redirect` binding.
3150
+ # Must use `HTTPS`. Assumed to accept the `HTTP-Redirect` binding.
3077
3151
  # Corresponds to the JSON property `singleSignOnServiceUri`
3078
3152
  # @return [String]
3079
3153
  attr_accessor :single_sign_on_service_uri
@@ -3096,8 +3170,8 @@ module Google
3096
3170
  include Google::Apis::Core::Hashable
3097
3171
 
3098
3172
  # Output only. The SAML **Assertion Consumer Service (ACS) URL** to be used for
3099
- # the IDP-initiated login. Currently assumed to accept response messages via the
3100
- # `HTTP-POST` binding.
3173
+ # the IDP-initiated login. Assumed to accept response messages via the `HTTP-
3174
+ # POST` binding.
3101
3175
  # Corresponds to the JSON property `assertionConsumerServiceUri`
3102
3176
  # @return [String]
3103
3177
  attr_accessor :assertion_consumer_service_uri
@@ -3138,6 +3212,32 @@ module Google
3138
3212
  end
3139
3213
  end
3140
3214
 
3215
+ # The response message for MembershipsService.SearchDirectGroups.
3216
+ class SearchDirectGroupsResponse
3217
+ include Google::Apis::Core::Hashable
3218
+
3219
+ # List of direct groups satisfying the query.
3220
+ # Corresponds to the JSON property `memberships`
3221
+ # @return [Array<Google::Apis::CloudidentityV1beta1::MembershipRelation>]
3222
+ attr_accessor :memberships
3223
+
3224
+ # Token to retrieve the next page of results, or empty if there are no more
3225
+ # results available for listing.
3226
+ # Corresponds to the JSON property `nextPageToken`
3227
+ # @return [String]
3228
+ attr_accessor :next_page_token
3229
+
3230
+ def initialize(**args)
3231
+ update!(**args)
3232
+ end
3233
+
3234
+ # Update properties of this object
3235
+ def update!(**args)
3236
+ @memberships = args[:memberships] if args.key?(:memberships)
3237
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3238
+ end
3239
+ end
3240
+
3141
3241
  # The response message for GroupsService.SearchGroups.
3142
3242
  class SearchGroupsResponse
3143
3243
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudidentityV1beta1
18
18
  # Version of the google-apis-cloudidentity_v1beta1 gem
19
- GEM_VERSION = "0.37.0"
19
+ GEM_VERSION = "0.38.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 = "20221221"
25
+ REVISION = "20230321"
26
26
  end
27
27
  end
28
28
  end
@@ -502,6 +502,12 @@ module Google
502
502
  include Google::Apis::Core::JsonObjectSupport
503
503
  end
504
504
 
505
+ class MembershipRelation
506
+ class Representation < Google::Apis::Core::JsonRepresentation; end
507
+
508
+ include Google::Apis::Core::JsonObjectSupport
509
+ end
510
+
505
511
  class MembershipRole
506
512
  class Representation < Google::Apis::Core::JsonRepresentation; end
507
513
 
@@ -586,6 +592,12 @@ module Google
586
592
  include Google::Apis::Core::JsonObjectSupport
587
593
  end
588
594
 
595
+ class SearchDirectGroupsResponse
596
+ class Representation < Google::Apis::Core::JsonRepresentation; end
597
+
598
+ include Google::Apis::Core::JsonObjectSupport
599
+ end
600
+
589
601
  class SearchGroupsResponse
590
602
  class Representation < Google::Apis::Core::JsonRepresentation; end
591
603
 
@@ -1211,6 +1223,8 @@ module Google
1211
1223
  class Group
1212
1224
  # @private
1213
1225
  class Representation < Google::Apis::Core::JsonRepresentation
1226
+ collection :additional_group_keys, as: 'additionalGroupKeys', class: Google::Apis::CloudidentityV1beta1::EntityKey, decorator: Google::Apis::CloudidentityV1beta1::EntityKey::Representation
1227
+
1214
1228
  property :create_time, as: 'createTime'
1215
1229
  property :description, as: 'description'
1216
1230
  property :display_name, as: 'displayName'
@@ -1427,6 +1441,7 @@ module Google
1427
1441
  # @private
1428
1442
  class Representation < Google::Apis::Core::JsonRepresentation
1429
1443
  property :create_time, as: 'createTime'
1444
+ property :delivery_setting, as: 'deliverySetting'
1430
1445
  property :member_key, as: 'memberKey', class: Google::Apis::CloudidentityV1beta1::EntityKey, decorator: Google::Apis::CloudidentityV1beta1::EntityKey::Representation
1431
1446
 
1432
1447
  property :name, as: 'name'
@@ -1448,6 +1463,21 @@ module Google
1448
1463
  end
1449
1464
  end
1450
1465
 
1466
+ class MembershipRelation
1467
+ # @private
1468
+ class Representation < Google::Apis::Core::JsonRepresentation
1469
+ property :description, as: 'description'
1470
+ property :display_name, as: 'displayName'
1471
+ property :group, as: 'group'
1472
+ property :group_key, as: 'groupKey', class: Google::Apis::CloudidentityV1beta1::EntityKey, decorator: Google::Apis::CloudidentityV1beta1::EntityKey::Representation
1473
+
1474
+ hash :labels, as: 'labels'
1475
+ property :membership, as: 'membership'
1476
+ collection :roles, as: 'roles', class: Google::Apis::CloudidentityV1beta1::MembershipRole, decorator: Google::Apis::CloudidentityV1beta1::MembershipRole::Representation
1477
+
1478
+ end
1479
+ end
1480
+
1451
1481
  class MembershipRole
1452
1482
  # @private
1453
1483
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1571,6 +1601,15 @@ module Google
1571
1601
  end
1572
1602
  end
1573
1603
 
1604
+ class SearchDirectGroupsResponse
1605
+ # @private
1606
+ class Representation < Google::Apis::Core::JsonRepresentation
1607
+ collection :memberships, as: 'memberships', class: Google::Apis::CloudidentityV1beta1::MembershipRelation, decorator: Google::Apis::CloudidentityV1beta1::MembershipRelation::Representation
1608
+
1609
+ property :next_page_token, as: 'nextPageToken'
1610
+ end
1611
+ end
1612
+
1574
1613
  class SearchGroupsResponse
1575
1614
  # @private
1576
1615
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1222,13 +1222,14 @@ module Google
1222
1222
  # the parent, e.g. `parent == 'customers/`customer_id`'`. The `customer_id` must
1223
1223
  # begin with "C" (for example, 'C046psxkn'). [Find your customer ID.] (https://
1224
1224
  # support.google.com/cloudidentity/answer/10070793) * Can contain optional
1225
- # inclusion operators on `labels` such as `cloudidentity.googleapis.com/groups.
1225
+ # inclusion operators on `labels` such as `'cloudidentity.googleapis.com/groups.
1226
1226
  # discussion_forum' in labels`). * Can contain an optional equality operator on `
1227
- # domain_name` or `startsWith/contains/equality` operator on `group_key`, e.g. `
1228
- # domain_name == 'abc.com'`, `group_key.startsWith('dev')`, `group_key.contains('
1229
- # dev'), group_key == 'dev@abc.com'` * Can contain an optional `startsWith/
1230
- # contains/equality` operator on `display_name`, such as `display_name.
1231
- # startsWith('dev')` , `display_name.contains('dev')`, `display_name == 'dev'`
1227
+ # domain_name`. e.g. `domain_name == 'abc.com'` * Can contain optional `
1228
+ # startsWith/contains/equality` operators on `group_key`, e.g. `group_key.
1229
+ # startsWith('dev')`, `group_key.contains('dev'), group_key == 'dev@abc.com'` *
1230
+ # Can contain optional `startsWith/contains/equality` operators on `display_name`
1231
+ # , such as `display_name.startsWith('dev')` , `display_name.contains('dev')`, `
1232
+ # display_name == 'dev'`
1232
1233
  # @param [String] view
1233
1234
  # The level of detail to be returned. If unspecified, defaults to `View.BASIC`.
1234
1235
  # @param [String] fields
@@ -1618,6 +1619,62 @@ module Google
1618
1619
  execute_or_queue_command(command, &block)
1619
1620
  end
1620
1621
 
1622
+ # Searches direct groups of a member.
1623
+ # @param [String] parent
1624
+ # [Resource name](https://cloud.google.com/apis/design/resource_names) of the
1625
+ # group to search transitive memberships in. Format: groups/`group_id`, where
1626
+ # group_id is always '-' as this API will search across all groups for a given
1627
+ # member.
1628
+ # @param [String] order_by
1629
+ # The ordering of membership relation for the display name or email in the
1630
+ # response. The syntax for this field can be found at https://cloud.google.com/
1631
+ # apis/design/design_patterns#sorting_order. Example: Sort by the ascending
1632
+ # display name: order_by="group_name" or order_by="group_name asc". Sort by the
1633
+ # descending display name: order_by="group_name desc". Sort by the ascending
1634
+ # group key: order_by="group_key" or order_by="group_key asc". Sort by the
1635
+ # descending group key: order_by="group_key desc".
1636
+ # @param [Fixnum] page_size
1637
+ # The default page size is 200 (max 1000).
1638
+ # @param [String] page_token
1639
+ # The next_page_token value returned from a previous list request, if any
1640
+ # @param [String] query
1641
+ # Required. A CEL expression that MUST include member specification AND label(s).
1642
+ # Users can search on label attributes of groups. CONTAINS match ('in') is
1643
+ # supported on labels. Identity-mapped groups are uniquely identified by both a `
1644
+ # member_key_id` and a `member_key_namespace`, which requires an additional
1645
+ # query input: `member_key_namespace`. Example query: `member_key_id == '
1646
+ # member_key_id_value' && 'label_value' in labels`
1647
+ # @param [String] fields
1648
+ # Selector specifying which fields to include in a partial response.
1649
+ # @param [String] quota_user
1650
+ # Available to use for quota purposes for server-side applications. Can be any
1651
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1652
+ # @param [Google::Apis::RequestOptions] options
1653
+ # Request-specific options
1654
+ #
1655
+ # @yield [result, err] Result & error if block supplied
1656
+ # @yieldparam result [Google::Apis::CloudidentityV1beta1::SearchDirectGroupsResponse] parsed result object
1657
+ # @yieldparam err [StandardError] error object if request failed
1658
+ #
1659
+ # @return [Google::Apis::CloudidentityV1beta1::SearchDirectGroupsResponse]
1660
+ #
1661
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1662
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1663
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1664
+ 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)
1665
+ command = make_simple_command(:get, 'v1beta1/{+parent}/memberships:searchDirectGroups', options)
1666
+ command.response_representation = Google::Apis::CloudidentityV1beta1::SearchDirectGroupsResponse::Representation
1667
+ command.response_class = Google::Apis::CloudidentityV1beta1::SearchDirectGroupsResponse
1668
+ command.params['parent'] = parent unless parent.nil?
1669
+ command.query['orderBy'] = order_by unless order_by.nil?
1670
+ command.query['pageSize'] = page_size unless page_size.nil?
1671
+ command.query['pageToken'] = page_token unless page_token.nil?
1672
+ command.query['query'] = query unless query.nil?
1673
+ command.query['fields'] = fields unless fields.nil?
1674
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1675
+ execute_or_queue_command(command, &block)
1676
+ end
1677
+
1621
1678
  # Search transitive groups of a member. **Note:** This feature is only available
1622
1679
  # to Google Workspace Enterprise Standard, Enterprise Plus, and Enterprise for
1623
1680
  # Education; and Cloud Identity Premium accounts. A transitive group is any
@@ -1638,7 +1695,13 @@ module Google
1638
1695
  # CONTAINS match ('in') is supported on labels. Identity-mapped groups are
1639
1696
  # uniquely identified by both a `member_key_id` and a `member_key_namespace`,
1640
1697
  # which requires an additional query input: `member_key_namespace`. Example
1641
- # query: `member_key_id == 'member_key_id_value' && in labels`
1698
+ # query: `member_key_id == 'member_key_id_value' && in labels` Query may
1699
+ # optionally contain equality operators on the parent of the group restricting
1700
+ # the search within a particular customer, e.g. `parent == 'customers/`
1701
+ # customer_id`'`. The `customer_id` must begin with "C" (for example, 'C046psxkn'
1702
+ # ). This filtering is only supported for Admins with groups read permissons on
1703
+ # the input customer. Example query: `member_key_id == 'member_key_id_value' &&
1704
+ # in labels && parent == 'customers/C046psxkn'`
1642
1705
  # @param [String] fields
1643
1706
  # Selector specifying which fields to include in a partial response.
1644
1707
  # @param [String] quota_user
@@ -1808,10 +1871,10 @@ module Google
1808
1871
  # Lists InboundSamlSsoProfiles for a customer.
1809
1872
  # @param [String] filter
1810
1873
  # A [Common Expression Language](https://github.com/google/cel-spec) expression
1811
- # to filter the results. The only currently-supported filter is filtering by
1812
- # customer. For example: `customer=="customers/C0123abc"`. Omitting the filter
1813
- # or specifying a filter of `customer=="customers/my_customer"` will return the
1814
- # profiles for the customer that the caller (authenticated user) belongs to.
1874
+ # to filter the results. The only supported filter is filtering by customer. For
1875
+ # example: `customer=="customers/C0123abc"`. Omitting the filter or specifying a
1876
+ # filter of `customer=="customers/my_customer"` will return the profiles for the
1877
+ # customer that the caller (authenticated user) belongs to.
1815
1878
  # @param [Fixnum] page_size
1816
1879
  # The maximum number of InboundSamlSsoProfiles to return. The service may return
1817
1880
  # fewer than this value. If omitted (or defaulted to zero) the server will use a
@@ -2126,11 +2189,10 @@ module Google
2126
2189
 
2127
2190
  # Lists the InboundSsoAssignments for a `Customer`.
2128
2191
  # @param [String] filter
2129
- # A CEL expression to filter the results. The only currently-supported filter is
2130
- # filtering by customer. For example: `customer==customers/C0123abc`. Omitting
2131
- # the filter or specifying a filter of `customer==customers/my_customer` will
2132
- # return the assignments for the customer that the caller (authenticated user)
2133
- # belongs to.
2192
+ # A CEL expression to filter the results. The only supported filter is filtering
2193
+ # by customer. For example: `customer==customers/C0123abc`. Omitting the filter
2194
+ # or specifying a filter of `customer==customers/my_customer` will return the
2195
+ # assignments for the customer that the caller (authenticated user) belongs to.
2134
2196
  # @param [Fixnum] page_size
2135
2197
  # The maximum number of assignments to return. The service may return fewer than
2136
2198
  # 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_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.37.0
4
+ version: 0.38.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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.37.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.38.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []