google-apis-cloudidentity_v1beta1 0.54.0 → 0.56.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: f7c1512baf7bbb14de2a946f6abb47072b3c75183c3dce7318e96494695a9cd2
4
- data.tar.gz: 25a107e3ec5607dd8f23b6550541b496e408271b81b5b898fe4fd43a26925811
3
+ metadata.gz: 109980802e4dbeb4becff80f8ff68f6522e207fdbf1440306fc9a7644ee9bd23
4
+ data.tar.gz: 9c894a35ad4ce4c20c43b46c86356f48e120b4225cac21eaa1aeb85b51fd7321
5
5
  SHA512:
6
- metadata.gz: d7fc7c098e4db7b4ad83731d009b44f374138282517806e1eaee067245e26edc613f764441bf465c32139ac1413c9b5fd728fb9aa5be6dbd792e18a0e2ceb67d
7
- data.tar.gz: d3b75202b9220aec77c0632887de9f1c3082be22a043ad413e2794b97a25015d6c4840d144ec335f9cddab895f4554ef2b8216d79bf398e8d9028b38cac8d826
6
+ metadata.gz: 8a40e2a35229635fdc1cf4e24ac76ed5f930da966dd51fcd68365defd392b5dff1a973470b6e8e3d3ab1dd33999ad4651f396dab9060f15e8771484062bfe634
7
+ data.tar.gz: ef24a12f502f9025ebbd74c05dd970ef9f69beeb33117067fe61acc7ad6fe5d4f0741f607a7bc53ddce6970f77e626b5e096dfc9d44a2170e95de7ffeed928b2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.56.0 (2025-09-21)
4
+
5
+ * Regenerated from discovery document revision 20250916
6
+
7
+ ### v0.55.0 (2025-08-10)
8
+
9
+ * Regenerated from discovery document revision 20250805
10
+
3
11
  ### v0.54.0 (2025-07-06)
4
12
 
5
13
  * Regenerated from discovery document revision 20250701
@@ -737,6 +737,28 @@ module Google
737
737
  end
738
738
  end
739
739
 
740
+ # LRO response metadata for InboundOidcSsoProfilesService.
741
+ # CreateInboundOidcSsoProfile.
742
+ class CreateInboundOidcSsoProfileOperationMetadata
743
+ include Google::Apis::Core::Hashable
744
+
745
+ # State of this Operation Will be "awaiting-multi-party-approval" when the
746
+ # operation is deferred due to the target customer having enabled [Multi-party
747
+ # approval for sensitive actions](https://support.google.com/a/answer/13790448).
748
+ # Corresponds to the JSON property `state`
749
+ # @return [String]
750
+ attr_accessor :state
751
+
752
+ def initialize(**args)
753
+ update!(**args)
754
+ end
755
+
756
+ # Update properties of this object
757
+ def update!(**args)
758
+ @state = args[:state] if args.key?(:state)
759
+ end
760
+ end
761
+
740
762
  # LRO response metadata for InboundSamlSsoProfilesService.
741
763
  # CreateInboundSamlSsoProfile.
742
764
  class CreateInboundSamlSsoProfileOperationMetadata
@@ -818,6 +840,20 @@ module Google
818
840
  end
819
841
  end
820
842
 
843
+ # LRO response metadata for InboundOidcSsoProfilesService.
844
+ # DeleteInboundOidcSsoProfile.
845
+ class DeleteInboundOidcSsoProfileOperationMetadata
846
+ include Google::Apis::Core::Hashable
847
+
848
+ def initialize(**args)
849
+ update!(**args)
850
+ end
851
+
852
+ # Update properties of this object
853
+ def update!(**args)
854
+ end
855
+ end
856
+
821
857
  # LRO response metadata for InboundSamlSsoProfilesService.
822
858
  # DeleteInboundSamlSsoProfile.
823
859
  class DeleteInboundSamlSsoProfileOperationMetadata
@@ -2663,6 +2699,51 @@ module Google
2663
2699
  end
2664
2700
  end
2665
2701
 
2702
+ # An [OIDC](https://openid.net/developers/how-connect-works/) federation between
2703
+ # a Google enterprise customer and an OIDC identity provider.
2704
+ class InboundOidcSsoProfile
2705
+ include Google::Apis::Core::Hashable
2706
+
2707
+ # Immutable. The customer. For example: `customers/C0123abc`.
2708
+ # Corresponds to the JSON property `customer`
2709
+ # @return [String]
2710
+ attr_accessor :customer
2711
+
2712
+ # Human-readable name of the OIDC SSO profile.
2713
+ # Corresponds to the JSON property `displayName`
2714
+ # @return [String]
2715
+ attr_accessor :display_name
2716
+
2717
+ # OIDC IDP (identity provider) configuration.
2718
+ # Corresponds to the JSON property `idpConfig`
2719
+ # @return [Google::Apis::CloudidentityV1beta1::OidcIdpConfig]
2720
+ attr_accessor :idp_config
2721
+
2722
+ # Output only. [Resource name](https://cloud.google.com/apis/design/
2723
+ # resource_names) of the OIDC SSO profile.
2724
+ # Corresponds to the JSON property `name`
2725
+ # @return [String]
2726
+ attr_accessor :name
2727
+
2728
+ # OIDC RP (relying party) configuration.
2729
+ # Corresponds to the JSON property `rpConfig`
2730
+ # @return [Google::Apis::CloudidentityV1beta1::OidcRpConfig]
2731
+ attr_accessor :rp_config
2732
+
2733
+ def initialize(**args)
2734
+ update!(**args)
2735
+ end
2736
+
2737
+ # Update properties of this object
2738
+ def update!(**args)
2739
+ @customer = args[:customer] if args.key?(:customer)
2740
+ @display_name = args[:display_name] if args.key?(:display_name)
2741
+ @idp_config = args[:idp_config] if args.key?(:idp_config)
2742
+ @name = args[:name] if args.key?(:name)
2743
+ @rp_config = args[:rp_config] if args.key?(:rp_config)
2744
+ end
2745
+ end
2746
+
2666
2747
  # A [SAML 2.0](https://www.oasis-open.org/standards#samlv2.0) federation between
2667
2748
  # a Google enterprise customer and a SAML identity provider.
2668
2749
  class InboundSamlSsoProfile
@@ -2723,6 +2804,11 @@ module Google
2723
2804
  # @return [String]
2724
2805
  attr_accessor :name
2725
2806
 
2807
+ # Details that are applicable when `sso_mode` is set to `OIDC_SSO`.
2808
+ # Corresponds to the JSON property `oidcSsoInfo`
2809
+ # @return [Google::Apis::CloudidentityV1beta1::OidcSsoInfo]
2810
+ attr_accessor :oidc_sso_info
2811
+
2726
2812
  # Must be zero (which is the default value so it can be omitted) for assignments
2727
2813
  # with `target_org_unit` set and must be greater-than-or-equal-to one for
2728
2814
  # assignments with `target_group` set.
@@ -2763,6 +2849,7 @@ module Google
2763
2849
  def update!(**args)
2764
2850
  @customer = args[:customer] if args.key?(:customer)
2765
2851
  @name = args[:name] if args.key?(:name)
2852
+ @oidc_sso_info = args[:oidc_sso_info] if args.key?(:oidc_sso_info)
2766
2853
  @rank = args[:rank] if args.key?(:rank)
2767
2854
  @saml_sso_info = args[:saml_sso_info] if args.key?(:saml_sso_info)
2768
2855
  @sign_in_behavior = args[:sign_in_behavior] if args.key?(:sign_in_behavior)
@@ -2919,6 +3006,33 @@ module Google
2919
3006
  end
2920
3007
  end
2921
3008
 
3009
+ # Response of the InboundOidcSsoProfilesService.ListInboundOidcSsoProfiles
3010
+ # method.
3011
+ class ListInboundOidcSsoProfilesResponse
3012
+ include Google::Apis::Core::Hashable
3013
+
3014
+ # List of InboundOidcSsoProfiles.
3015
+ # Corresponds to the JSON property `inboundOidcSsoProfiles`
3016
+ # @return [Array<Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile>]
3017
+ attr_accessor :inbound_oidc_sso_profiles
3018
+
3019
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
3020
+ # field is omitted, there are no subsequent pages.
3021
+ # Corresponds to the JSON property `nextPageToken`
3022
+ # @return [String]
3023
+ attr_accessor :next_page_token
3024
+
3025
+ def initialize(**args)
3026
+ update!(**args)
3027
+ end
3028
+
3029
+ # Update properties of this object
3030
+ def update!(**args)
3031
+ @inbound_oidc_sso_profiles = args[:inbound_oidc_sso_profiles] if args.key?(:inbound_oidc_sso_profiles)
3032
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3033
+ end
3034
+ end
3035
+
2922
3036
  # Response of the InboundSamlSsoProfilesService.ListInboundSamlSsoProfiles
2923
3037
  # method.
2924
3038
  class ListInboundSamlSsoProfilesResponse
@@ -3533,6 +3647,87 @@ module Google
3533
3647
  end
3534
3648
  end
3535
3649
 
3650
+ # OIDC IDP (identity provider) configuration.
3651
+ class OidcIdpConfig
3652
+ include Google::Apis::Core::Hashable
3653
+
3654
+ # The **Change Password URL** of the identity provider. Users will be sent to
3655
+ # this URL when changing their passwords at `myaccount.google.com`. This takes
3656
+ # precedence over the change password URL configured at customer-level. Must use
3657
+ # `HTTPS`.
3658
+ # Corresponds to the JSON property `changePasswordUri`
3659
+ # @return [String]
3660
+ attr_accessor :change_password_uri
3661
+
3662
+ # Required. The Issuer identifier for the IdP. Must be a URL. The discovery URL
3663
+ # will be derived from this as described in Section 4 of [the OIDC specification]
3664
+ # (https://openid.net/specs/openid-connect-discovery-1_0.html).
3665
+ # Corresponds to the JSON property `issuerUri`
3666
+ # @return [String]
3667
+ attr_accessor :issuer_uri
3668
+
3669
+ def initialize(**args)
3670
+ update!(**args)
3671
+ end
3672
+
3673
+ # Update properties of this object
3674
+ def update!(**args)
3675
+ @change_password_uri = args[:change_password_uri] if args.key?(:change_password_uri)
3676
+ @issuer_uri = args[:issuer_uri] if args.key?(:issuer_uri)
3677
+ end
3678
+ end
3679
+
3680
+ # OIDC RP (relying party) configuration.
3681
+ class OidcRpConfig
3682
+ include Google::Apis::Core::Hashable
3683
+
3684
+ # OAuth2 client ID for OIDC.
3685
+ # Corresponds to the JSON property `clientId`
3686
+ # @return [String]
3687
+ attr_accessor :client_id
3688
+
3689
+ # Input only. OAuth2 client secret for OIDC.
3690
+ # Corresponds to the JSON property `clientSecret`
3691
+ # @return [String]
3692
+ attr_accessor :client_secret
3693
+
3694
+ # Output only. The URL(s) that this client may use in authentication requests.
3695
+ # Corresponds to the JSON property `redirectUris`
3696
+ # @return [Array<String>]
3697
+ attr_accessor :redirect_uris
3698
+
3699
+ def initialize(**args)
3700
+ update!(**args)
3701
+ end
3702
+
3703
+ # Update properties of this object
3704
+ def update!(**args)
3705
+ @client_id = args[:client_id] if args.key?(:client_id)
3706
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
3707
+ @redirect_uris = args[:redirect_uris] if args.key?(:redirect_uris)
3708
+ end
3709
+ end
3710
+
3711
+ # Details that are applicable when `sso_mode` is set to `OIDC_SSO`.
3712
+ class OidcSsoInfo
3713
+ include Google::Apis::Core::Hashable
3714
+
3715
+ # Required. Name of the `InboundOidcSsoProfile` to use. Must be of the form `
3716
+ # inboundOidcSsoProfiles/`inbound_oidc_sso_profile``.
3717
+ # Corresponds to the JSON property `inboundOidcSsoProfile`
3718
+ # @return [String]
3719
+ attr_accessor :inbound_oidc_sso_profile
3720
+
3721
+ def initialize(**args)
3722
+ update!(**args)
3723
+ end
3724
+
3725
+ # Update properties of this object
3726
+ def update!(**args)
3727
+ @inbound_oidc_sso_profile = args[:inbound_oidc_sso_profile] if args.key?(:inbound_oidc_sso_profile)
3728
+ end
3729
+ end
3730
+
3536
3731
  # This resource represents a long-running operation that is the result of a
3537
3732
  # network API call.
3538
3733
  class Operation
@@ -4182,6 +4377,28 @@ module Google
4182
4377
  end
4183
4378
  end
4184
4379
 
4380
+ # LRO response metadata for InboundOidcSsoProfilesService.
4381
+ # UpdateInboundOidcSsoProfile.
4382
+ class UpdateInboundOidcSsoProfileOperationMetadata
4383
+ include Google::Apis::Core::Hashable
4384
+
4385
+ # State of this Operation Will be "awaiting-multi-party-approval" when the
4386
+ # operation is deferred due to the target customer having enabled [Multi-party
4387
+ # approval for sensitive actions](https://support.google.com/a/answer/13790448).
4388
+ # Corresponds to the JSON property `state`
4389
+ # @return [String]
4390
+ attr_accessor :state
4391
+
4392
+ def initialize(**args)
4393
+ update!(**args)
4394
+ end
4395
+
4396
+ # Update properties of this object
4397
+ def update!(**args)
4398
+ @state = args[:state] if args.key?(:state)
4399
+ end
4400
+ end
4401
+
4185
4402
  # LRO response metadata for InboundSamlSsoProfilesService.
4186
4403
  # UpdateInboundSamlSsoProfile.
4187
4404
  class UpdateInboundSamlSsoProfileOperationMetadata
@@ -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.54.0"
19
+ GEM_VERSION = "0.56.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250701"
25
+ REVISION = "20250916"
26
26
  end
27
27
  end
28
28
  end
@@ -136,6 +136,12 @@ module Google
136
136
  include Google::Apis::Core::JsonObjectSupport
137
137
  end
138
138
 
139
+ class CreateInboundOidcSsoProfileOperationMetadata
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
139
145
  class CreateInboundSamlSsoProfileOperationMetadata
140
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
147
 
@@ -160,6 +166,12 @@ module Google
160
166
  include Google::Apis::Core::JsonObjectSupport
161
167
  end
162
168
 
169
+ class DeleteInboundOidcSsoProfileOperationMetadata
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
163
175
  class DeleteInboundSamlSsoProfileOperationMetadata
164
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
177
 
@@ -424,6 +436,12 @@ module Google
424
436
  include Google::Apis::Core::JsonObjectSupport
425
437
  end
426
438
 
439
+ class InboundOidcSsoProfile
440
+ class Representation < Google::Apis::Core::JsonRepresentation; end
441
+
442
+ include Google::Apis::Core::JsonObjectSupport
443
+ end
444
+
427
445
  class InboundSamlSsoProfile
428
446
  class Representation < Google::Apis::Core::JsonRepresentation; end
429
447
 
@@ -472,6 +490,12 @@ module Google
472
490
  include Google::Apis::Core::JsonObjectSupport
473
491
  end
474
492
 
493
+ class ListInboundOidcSsoProfilesResponse
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
475
499
  class ListInboundSamlSsoProfilesResponse
476
500
  class Representation < Google::Apis::Core::JsonRepresentation; end
477
501
 
@@ -586,6 +610,24 @@ module Google
586
610
  include Google::Apis::Core::JsonObjectSupport
587
611
  end
588
612
 
613
+ class OidcIdpConfig
614
+ class Representation < Google::Apis::Core::JsonRepresentation; end
615
+
616
+ include Google::Apis::Core::JsonObjectSupport
617
+ end
618
+
619
+ class OidcRpConfig
620
+ class Representation < Google::Apis::Core::JsonRepresentation; end
621
+
622
+ include Google::Apis::Core::JsonObjectSupport
623
+ end
624
+
625
+ class OidcSsoInfo
626
+ class Representation < Google::Apis::Core::JsonRepresentation; end
627
+
628
+ include Google::Apis::Core::JsonObjectSupport
629
+ end
630
+
589
631
  class Operation
590
632
  class Representation < Google::Apis::Core::JsonRepresentation; end
591
633
 
@@ -712,6 +754,12 @@ module Google
712
754
  include Google::Apis::Core::JsonObjectSupport
713
755
  end
714
756
 
757
+ class UpdateInboundOidcSsoProfileOperationMetadata
758
+ class Representation < Google::Apis::Core::JsonRepresentation; end
759
+
760
+ include Google::Apis::Core::JsonObjectSupport
761
+ end
762
+
715
763
  class UpdateInboundSamlSsoProfileOperationMetadata
716
764
  class Representation < Google::Apis::Core::JsonRepresentation; end
717
765
 
@@ -944,6 +992,13 @@ module Google
944
992
  end
945
993
  end
946
994
 
995
+ class CreateInboundOidcSsoProfileOperationMetadata
996
+ # @private
997
+ class Representation < Google::Apis::Core::JsonRepresentation
998
+ property :state, as: 'state'
999
+ end
1000
+ end
1001
+
947
1002
  class CreateInboundSamlSsoProfileOperationMetadata
948
1003
  # @private
949
1004
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -972,6 +1027,12 @@ module Google
972
1027
  end
973
1028
  end
974
1029
 
1030
+ class DeleteInboundOidcSsoProfileOperationMetadata
1031
+ # @private
1032
+ class Representation < Google::Apis::Core::JsonRepresentation
1033
+ end
1034
+ end
1035
+
975
1036
  class DeleteInboundSamlSsoProfileOperationMetadata
976
1037
  # @private
977
1038
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1447,6 +1508,19 @@ module Google
1447
1508
  end
1448
1509
  end
1449
1510
 
1511
+ class InboundOidcSsoProfile
1512
+ # @private
1513
+ class Representation < Google::Apis::Core::JsonRepresentation
1514
+ property :customer, as: 'customer'
1515
+ property :display_name, as: 'displayName'
1516
+ property :idp_config, as: 'idpConfig', class: Google::Apis::CloudidentityV1beta1::OidcIdpConfig, decorator: Google::Apis::CloudidentityV1beta1::OidcIdpConfig::Representation
1517
+
1518
+ property :name, as: 'name'
1519
+ property :rp_config, as: 'rpConfig', class: Google::Apis::CloudidentityV1beta1::OidcRpConfig, decorator: Google::Apis::CloudidentityV1beta1::OidcRpConfig::Representation
1520
+
1521
+ end
1522
+ end
1523
+
1450
1524
  class InboundSamlSsoProfile
1451
1525
  # @private
1452
1526
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1465,6 +1539,8 @@ module Google
1465
1539
  class Representation < Google::Apis::Core::JsonRepresentation
1466
1540
  property :customer, as: 'customer'
1467
1541
  property :name, as: 'name'
1542
+ property :oidc_sso_info, as: 'oidcSsoInfo', class: Google::Apis::CloudidentityV1beta1::OidcSsoInfo, decorator: Google::Apis::CloudidentityV1beta1::OidcSsoInfo::Representation
1543
+
1468
1544
  property :rank, as: 'rank'
1469
1545
  property :saml_sso_info, as: 'samlSsoInfo', class: Google::Apis::CloudidentityV1beta1::SamlSsoInfo, decorator: Google::Apis::CloudidentityV1beta1::SamlSsoInfo::Representation
1470
1546
 
@@ -1528,6 +1604,15 @@ module Google
1528
1604
  end
1529
1605
  end
1530
1606
 
1607
+ class ListInboundOidcSsoProfilesResponse
1608
+ # @private
1609
+ class Representation < Google::Apis::Core::JsonRepresentation
1610
+ collection :inbound_oidc_sso_profiles, as: 'inboundOidcSsoProfiles', class: Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile, decorator: Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile::Representation
1611
+
1612
+ property :next_page_token, as: 'nextPageToken'
1613
+ end
1614
+ end
1615
+
1531
1616
  class ListInboundSamlSsoProfilesResponse
1532
1617
  # @private
1533
1618
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1712,6 +1797,30 @@ module Google
1712
1797
  end
1713
1798
  end
1714
1799
 
1800
+ class OidcIdpConfig
1801
+ # @private
1802
+ class Representation < Google::Apis::Core::JsonRepresentation
1803
+ property :change_password_uri, as: 'changePasswordUri'
1804
+ property :issuer_uri, as: 'issuerUri'
1805
+ end
1806
+ end
1807
+
1808
+ class OidcRpConfig
1809
+ # @private
1810
+ class Representation < Google::Apis::Core::JsonRepresentation
1811
+ property :client_id, as: 'clientId'
1812
+ property :client_secret, as: 'clientSecret'
1813
+ collection :redirect_uris, as: 'redirectUris'
1814
+ end
1815
+ end
1816
+
1817
+ class OidcSsoInfo
1818
+ # @private
1819
+ class Representation < Google::Apis::Core::JsonRepresentation
1820
+ property :inbound_oidc_sso_profile, as: 'inboundOidcSsoProfile'
1821
+ end
1822
+ end
1823
+
1715
1824
  class Operation
1716
1825
  # @private
1717
1826
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1895,6 +2004,13 @@ module Google
1895
2004
  end
1896
2005
  end
1897
2006
 
2007
+ class UpdateInboundOidcSsoProfileOperationMetadata
2008
+ # @private
2009
+ class Representation < Google::Apis::Core::JsonRepresentation
2010
+ property :state, as: 'state'
2011
+ end
2012
+ end
2013
+
1898
2014
  class UpdateInboundSamlSsoProfileOperationMetadata
1899
2015
  # @private
1900
2016
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -745,16 +745,19 @@ module Google
745
745
  # provided, only DeviceUsers having all of these properties are considered as
746
746
  # matches - i.e. the query behaves like an AND. Different platforms require
747
747
  # different amounts of information from the caller to ensure that the DeviceUser
748
- # is uniquely identified. - iOS: No properties need to be passed, the caller's
749
- # credentials are sufficient to identify the corresponding DeviceUser. - Android:
750
- # Specifying the 'android_id' field is required. - Desktop: Specifying the '
751
- # raw_resource_id' field is required.
748
+ # is uniquely identified. - iOS: Specifying the 'partner' and 'ios_device_id'
749
+ # fields is required. - Android: Specifying the 'android_id' field is required. -
750
+ # Desktop: Specifying the 'raw_resource_id' field is required.
752
751
  # @param [String] parent
753
752
  # Must be set to "devices/-/deviceUsers" to search across all DeviceUser
754
753
  # belonging to the user.
755
754
  # @param [String] android_id
756
755
  # Android Id returned by [Settings.Secure#ANDROID_ID](https://developer.android.
757
756
  # com/reference/android/provider/Settings.Secure.html#ANDROID_ID).
757
+ # @param [String] ios_device_id
758
+ # Optional. The partner-specified device identifier assigned to the iOS device
759
+ # that initiated the Lookup API call. This string must match the value of the
760
+ # iosDeviceId key in the app config dictionary provided to Google Workspace apps.
758
761
  # @param [Fixnum] page_size
759
762
  # The maximum number of DeviceUsers to return. If unspecified, at most 20
760
763
  # DeviceUsers will be returned. The maximum value is 20; values above 20 will be
@@ -764,6 +767,10 @@ module Google
764
767
  # to retrieve the subsequent page. When paginating, all other parameters
765
768
  # provided to `LookupDeviceUsers` must match the call that provided the page
766
769
  # token.
770
+ # @param [String] partner
771
+ # Optional. The partner ID of the calling iOS app. This string must match the
772
+ # value of the partner key within the app configuration dictionary provided to
773
+ # Google Workspace apps.
767
774
  # @param [String] raw_resource_id
768
775
  # Raw Resource Id used by Google Endpoint Verification. If the user is enrolled
769
776
  # into Google Endpoint Verification, this id will be saved as the '
@@ -791,14 +798,16 @@ module Google
791
798
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
792
799
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
793
800
  # @raise [Google::Apis::AuthorizationError] Authorization is required
794
- def lookup_device_device_user(parent, android_id: nil, page_size: nil, page_token: nil, raw_resource_id: nil, user_id: nil, fields: nil, quota_user: nil, options: nil, &block)
801
+ def lookup_device_device_user(parent, android_id: nil, ios_device_id: nil, page_size: nil, page_token: nil, partner: nil, raw_resource_id: nil, user_id: nil, fields: nil, quota_user: nil, options: nil, &block)
795
802
  command = make_simple_command(:get, 'v1beta1/{+parent}:lookup', options)
796
803
  command.response_representation = Google::Apis::CloudidentityV1beta1::LookupSelfDeviceUsersResponse::Representation
797
804
  command.response_class = Google::Apis::CloudidentityV1beta1::LookupSelfDeviceUsersResponse
798
805
  command.params['parent'] = parent unless parent.nil?
799
806
  command.query['androidId'] = android_id unless android_id.nil?
807
+ command.query['iosDeviceId'] = ios_device_id unless ios_device_id.nil?
800
808
  command.query['pageSize'] = page_size unless page_size.nil?
801
809
  command.query['pageToken'] = page_token unless page_token.nil?
810
+ command.query['partner'] = partner unless partner.nil?
802
811
  command.query['rawResourceId'] = raw_resource_id unless raw_resource_id.nil?
803
812
  command.query['userId'] = user_id unless user_id.nil?
804
813
  command.query['fields'] = fields unless fields.nil?
@@ -1776,6 +1785,193 @@ module Google
1776
1785
  execute_or_queue_command(command, &block)
1777
1786
  end
1778
1787
 
1788
+ # Creates an InboundOidcSsoProfile for a customer. When the target customer has
1789
+ # enabled [Multi-party approval for sensitive actions](https://support.google.
1790
+ # com/a/answer/13790448), the `Operation` in the response will have `"done":
1791
+ # false`, it will not have a response, and the metadata will have `"state": "
1792
+ # awaiting-multi-party-approval"`.
1793
+ # @param [Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile] inbound_oidc_sso_profile_object
1794
+ # @param [String] fields
1795
+ # Selector specifying which fields to include in a partial response.
1796
+ # @param [String] quota_user
1797
+ # Available to use for quota purposes for server-side applications. Can be any
1798
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1799
+ # @param [Google::Apis::RequestOptions] options
1800
+ # Request-specific options
1801
+ #
1802
+ # @yield [result, err] Result & error if block supplied
1803
+ # @yieldparam result [Google::Apis::CloudidentityV1beta1::Operation] parsed result object
1804
+ # @yieldparam err [StandardError] error object if request failed
1805
+ #
1806
+ # @return [Google::Apis::CloudidentityV1beta1::Operation]
1807
+ #
1808
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1809
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1810
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1811
+ def create_inbound_oidc_sso_profile(inbound_oidc_sso_profile_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1812
+ command = make_simple_command(:post, 'v1beta1/inboundOidcSsoProfiles', options)
1813
+ command.request_representation = Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile::Representation
1814
+ command.request_object = inbound_oidc_sso_profile_object
1815
+ command.response_representation = Google::Apis::CloudidentityV1beta1::Operation::Representation
1816
+ command.response_class = Google::Apis::CloudidentityV1beta1::Operation
1817
+ command.query['fields'] = fields unless fields.nil?
1818
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1819
+ execute_or_queue_command(command, &block)
1820
+ end
1821
+
1822
+ # Deletes an InboundOidcSsoProfile.
1823
+ # @param [String] name
1824
+ # Required. The [resource name](https://cloud.google.com/apis/design/
1825
+ # resource_names) of the InboundOidcSsoProfile to delete. Format: `
1826
+ # inboundOidcSsoProfiles/`sso_profile_id``
1827
+ # @param [String] fields
1828
+ # Selector specifying which fields to include in a partial response.
1829
+ # @param [String] quota_user
1830
+ # Available to use for quota purposes for server-side applications. Can be any
1831
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1832
+ # @param [Google::Apis::RequestOptions] options
1833
+ # Request-specific options
1834
+ #
1835
+ # @yield [result, err] Result & error if block supplied
1836
+ # @yieldparam result [Google::Apis::CloudidentityV1beta1::Operation] parsed result object
1837
+ # @yieldparam err [StandardError] error object if request failed
1838
+ #
1839
+ # @return [Google::Apis::CloudidentityV1beta1::Operation]
1840
+ #
1841
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1842
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1843
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1844
+ def delete_inbound_oidc_sso_profile(name, fields: nil, quota_user: nil, options: nil, &block)
1845
+ command = make_simple_command(:delete, 'v1beta1/{+name}', options)
1846
+ command.response_representation = Google::Apis::CloudidentityV1beta1::Operation::Representation
1847
+ command.response_class = Google::Apis::CloudidentityV1beta1::Operation
1848
+ command.params['name'] = name unless name.nil?
1849
+ command.query['fields'] = fields unless fields.nil?
1850
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1851
+ execute_or_queue_command(command, &block)
1852
+ end
1853
+
1854
+ # Gets an InboundOidcSsoProfile.
1855
+ # @param [String] name
1856
+ # Required. The [resource name](https://cloud.google.com/apis/design/
1857
+ # resource_names) of the InboundOidcSsoProfile to get. Format: `
1858
+ # inboundOidcSsoProfiles/`sso_profile_id``
1859
+ # @param [String] fields
1860
+ # Selector specifying which fields to include in a partial response.
1861
+ # @param [String] quota_user
1862
+ # Available to use for quota purposes for server-side applications. Can be any
1863
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1864
+ # @param [Google::Apis::RequestOptions] options
1865
+ # Request-specific options
1866
+ #
1867
+ # @yield [result, err] Result & error if block supplied
1868
+ # @yieldparam result [Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile] parsed result object
1869
+ # @yieldparam err [StandardError] error object if request failed
1870
+ #
1871
+ # @return [Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile]
1872
+ #
1873
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1874
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1875
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1876
+ def get_inbound_oidc_sso_profile(name, fields: nil, quota_user: nil, options: nil, &block)
1877
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
1878
+ command.response_representation = Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile::Representation
1879
+ command.response_class = Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile
1880
+ command.params['name'] = name unless name.nil?
1881
+ command.query['fields'] = fields unless fields.nil?
1882
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1883
+ execute_or_queue_command(command, &block)
1884
+ end
1885
+
1886
+ # Lists InboundOidcSsoProfile objects for a Google enterprise customer.
1887
+ # @param [String] filter
1888
+ # A [Common Expression Language](https://github.com/google/cel-spec) expression
1889
+ # to filter the results. The only supported filter is filtering by customer. For
1890
+ # example: `customer=="customers/C0123abc"`. Omitting the filter or specifying a
1891
+ # filter of `customer=="customers/my_customer"` will return the profiles for the
1892
+ # customer that the caller (authenticated user) belongs to. Specifying a filter
1893
+ # of `customer==""` will return the global shared OIDC profiles.
1894
+ # @param [Fixnum] page_size
1895
+ # The maximum number of InboundOidcSsoProfiles to return. The service may return
1896
+ # fewer than this value. If omitted (or defaulted to zero) the server will use a
1897
+ # sensible default. This default may change over time. The maximum allowed value
1898
+ # is 100. Requests with page_size greater than that will be silently interpreted
1899
+ # as having this maximum value.
1900
+ # @param [String] page_token
1901
+ # A page token, received from a previous `ListInboundOidcSsoProfiles` call.
1902
+ # Provide this to retrieve the subsequent page. When paginating, all other
1903
+ # parameters provided to `ListInboundOidcSsoProfiles` must match the call that
1904
+ # provided the page token.
1905
+ # @param [String] fields
1906
+ # Selector specifying which fields to include in a partial response.
1907
+ # @param [String] quota_user
1908
+ # Available to use for quota purposes for server-side applications. Can be any
1909
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1910
+ # @param [Google::Apis::RequestOptions] options
1911
+ # Request-specific options
1912
+ #
1913
+ # @yield [result, err] Result & error if block supplied
1914
+ # @yieldparam result [Google::Apis::CloudidentityV1beta1::ListInboundOidcSsoProfilesResponse] parsed result object
1915
+ # @yieldparam err [StandardError] error object if request failed
1916
+ #
1917
+ # @return [Google::Apis::CloudidentityV1beta1::ListInboundOidcSsoProfilesResponse]
1918
+ #
1919
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1920
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1921
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1922
+ def list_inbound_oidc_sso_profiles(filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1923
+ command = make_simple_command(:get, 'v1beta1/inboundOidcSsoProfiles', options)
1924
+ command.response_representation = Google::Apis::CloudidentityV1beta1::ListInboundOidcSsoProfilesResponse::Representation
1925
+ command.response_class = Google::Apis::CloudidentityV1beta1::ListInboundOidcSsoProfilesResponse
1926
+ command.query['filter'] = filter unless filter.nil?
1927
+ command.query['pageSize'] = page_size unless page_size.nil?
1928
+ command.query['pageToken'] = page_token unless page_token.nil?
1929
+ command.query['fields'] = fields unless fields.nil?
1930
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1931
+ execute_or_queue_command(command, &block)
1932
+ end
1933
+
1934
+ # Updates an InboundOidcSsoProfile. When the target customer has enabled [Multi-
1935
+ # party approval for sensitive actions](https://support.google.com/a/answer/
1936
+ # 13790448), the `Operation` in the response will have `"done": false`, it will
1937
+ # not have a response, and the metadata will have `"state": "awaiting-multi-
1938
+ # party-approval"`.
1939
+ # @param [String] name
1940
+ # Output only. [Resource name](https://cloud.google.com/apis/design/
1941
+ # resource_names) of the OIDC SSO profile.
1942
+ # @param [Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile] inbound_oidc_sso_profile_object
1943
+ # @param [String] update_mask
1944
+ # Required. The list of fields to be updated.
1945
+ # @param [String] fields
1946
+ # Selector specifying which fields to include in a partial response.
1947
+ # @param [String] quota_user
1948
+ # Available to use for quota purposes for server-side applications. Can be any
1949
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1950
+ # @param [Google::Apis::RequestOptions] options
1951
+ # Request-specific options
1952
+ #
1953
+ # @yield [result, err] Result & error if block supplied
1954
+ # @yieldparam result [Google::Apis::CloudidentityV1beta1::Operation] parsed result object
1955
+ # @yieldparam err [StandardError] error object if request failed
1956
+ #
1957
+ # @return [Google::Apis::CloudidentityV1beta1::Operation]
1958
+ #
1959
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1960
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1961
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1962
+ def patch_inbound_oidc_sso_profile(name, inbound_oidc_sso_profile_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
1963
+ command = make_simple_command(:patch, 'v1beta1/{+name}', options)
1964
+ command.request_representation = Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile::Representation
1965
+ command.request_object = inbound_oidc_sso_profile_object
1966
+ command.response_representation = Google::Apis::CloudidentityV1beta1::Operation::Representation
1967
+ command.response_class = Google::Apis::CloudidentityV1beta1::Operation
1968
+ command.params['name'] = name unless name.nil?
1969
+ command.query['updateMask'] = update_mask unless update_mask.nil?
1970
+ command.query['fields'] = fields unless fields.nil?
1971
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1972
+ execute_or_queue_command(command, &block)
1973
+ end
1974
+
1779
1975
  # Creates an InboundSamlSsoProfile for a customer. When the target customer has
1780
1976
  # enabled [Multi-party approval for sensitive actions](https://support.google.
1781
1977
  # com/a/answer/13790448), the `Operation` in the response will have `"done":
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudidentity_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.54.0
4
+ version: 0.56.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-cloudidentity_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.54.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.56.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: