google-apis-cloudidentity_v1beta1 0.54.0 → 0.55.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: d77bdffb3c1bf123a1ad1c8f1dbcd695dbe676a202a488298233e72d78eaa9ef
4
+ data.tar.gz: 8cc47f667947b2691a1c01662d613a667e6e8037f586b711c527c10bd5892716
5
5
  SHA512:
6
- metadata.gz: d7fc7c098e4db7b4ad83731d009b44f374138282517806e1eaee067245e26edc613f764441bf465c32139ac1413c9b5fd728fb9aa5be6dbd792e18a0e2ceb67d
7
- data.tar.gz: d3b75202b9220aec77c0632887de9f1c3082be22a043ad413e2794b97a25015d6c4840d144ec335f9cddab895f4554ef2b8216d79bf398e8d9028b38cac8d826
6
+ metadata.gz: de0596474ba58dbabdde69a39d68d3b14c4e26fa05574cbea6d4fbc7463aa40e32beee71b6fa63f008c363281850d1ae98a5860686a65295081235477131e10a
7
+ data.tar.gz: 2820320bd333f3f5bfb75bf3fa2b0f29c85484c7803b6f9faf6331fc773b2ca2f3a7cff7365cee8c7ed50df4f5981189f58406943ee13f30010793bfd985fefd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.55.0 (2025-08-10)
4
+
5
+ * Regenerated from discovery document revision 20250805
6
+
3
7
  ### v0.54.0 (2025-07-06)
4
8
 
5
9
  * 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.55.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 = "20250805"
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
@@ -1776,6 +1776,193 @@ module Google
1776
1776
  execute_or_queue_command(command, &block)
1777
1777
  end
1778
1778
 
1779
+ # Creates an InboundOidcSsoProfile for a customer. When the target customer has
1780
+ # enabled [Multi-party approval for sensitive actions](https://support.google.
1781
+ # com/a/answer/13790448), the `Operation` in the response will have `"done":
1782
+ # false`, it will not have a response, and the metadata will have `"state": "
1783
+ # awaiting-multi-party-approval"`.
1784
+ # @param [Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile] inbound_oidc_sso_profile_object
1785
+ # @param [String] fields
1786
+ # Selector specifying which fields to include in a partial response.
1787
+ # @param [String] quota_user
1788
+ # Available to use for quota purposes for server-side applications. Can be any
1789
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1790
+ # @param [Google::Apis::RequestOptions] options
1791
+ # Request-specific options
1792
+ #
1793
+ # @yield [result, err] Result & error if block supplied
1794
+ # @yieldparam result [Google::Apis::CloudidentityV1beta1::Operation] parsed result object
1795
+ # @yieldparam err [StandardError] error object if request failed
1796
+ #
1797
+ # @return [Google::Apis::CloudidentityV1beta1::Operation]
1798
+ #
1799
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1800
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1801
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1802
+ def create_inbound_oidc_sso_profile(inbound_oidc_sso_profile_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1803
+ command = make_simple_command(:post, 'v1beta1/inboundOidcSsoProfiles', options)
1804
+ command.request_representation = Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile::Representation
1805
+ command.request_object = inbound_oidc_sso_profile_object
1806
+ command.response_representation = Google::Apis::CloudidentityV1beta1::Operation::Representation
1807
+ command.response_class = Google::Apis::CloudidentityV1beta1::Operation
1808
+ command.query['fields'] = fields unless fields.nil?
1809
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1810
+ execute_or_queue_command(command, &block)
1811
+ end
1812
+
1813
+ # Deletes an InboundOidcSsoProfile.
1814
+ # @param [String] name
1815
+ # Required. The [resource name](https://cloud.google.com/apis/design/
1816
+ # resource_names) of the InboundOidcSsoProfile to delete. Format: `
1817
+ # inboundOidcSsoProfiles/`sso_profile_id``
1818
+ # @param [String] fields
1819
+ # Selector specifying which fields to include in a partial response.
1820
+ # @param [String] quota_user
1821
+ # Available to use for quota purposes for server-side applications. Can be any
1822
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1823
+ # @param [Google::Apis::RequestOptions] options
1824
+ # Request-specific options
1825
+ #
1826
+ # @yield [result, err] Result & error if block supplied
1827
+ # @yieldparam result [Google::Apis::CloudidentityV1beta1::Operation] parsed result object
1828
+ # @yieldparam err [StandardError] error object if request failed
1829
+ #
1830
+ # @return [Google::Apis::CloudidentityV1beta1::Operation]
1831
+ #
1832
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1833
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1834
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1835
+ def delete_inbound_oidc_sso_profile(name, fields: nil, quota_user: nil, options: nil, &block)
1836
+ command = make_simple_command(:delete, 'v1beta1/{+name}', options)
1837
+ command.response_representation = Google::Apis::CloudidentityV1beta1::Operation::Representation
1838
+ command.response_class = Google::Apis::CloudidentityV1beta1::Operation
1839
+ command.params['name'] = name unless name.nil?
1840
+ command.query['fields'] = fields unless fields.nil?
1841
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1842
+ execute_or_queue_command(command, &block)
1843
+ end
1844
+
1845
+ # Gets an InboundOidcSsoProfile.
1846
+ # @param [String] name
1847
+ # Required. The [resource name](https://cloud.google.com/apis/design/
1848
+ # resource_names) of the InboundOidcSsoProfile to get. Format: `
1849
+ # inboundOidcSsoProfiles/`sso_profile_id``
1850
+ # @param [String] fields
1851
+ # Selector specifying which fields to include in a partial response.
1852
+ # @param [String] quota_user
1853
+ # Available to use for quota purposes for server-side applications. Can be any
1854
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1855
+ # @param [Google::Apis::RequestOptions] options
1856
+ # Request-specific options
1857
+ #
1858
+ # @yield [result, err] Result & error if block supplied
1859
+ # @yieldparam result [Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile] parsed result object
1860
+ # @yieldparam err [StandardError] error object if request failed
1861
+ #
1862
+ # @return [Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile]
1863
+ #
1864
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1865
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1866
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1867
+ def get_inbound_oidc_sso_profile(name, fields: nil, quota_user: nil, options: nil, &block)
1868
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
1869
+ command.response_representation = Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile::Representation
1870
+ command.response_class = Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile
1871
+ command.params['name'] = name unless name.nil?
1872
+ command.query['fields'] = fields unless fields.nil?
1873
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1874
+ execute_or_queue_command(command, &block)
1875
+ end
1876
+
1877
+ # Lists InboundOidcSsoProfile objects for a Google enterprise customer.
1878
+ # @param [String] filter
1879
+ # A [Common Expression Language](https://github.com/google/cel-spec) expression
1880
+ # to filter the results. The only supported filter is filtering by customer. For
1881
+ # example: `customer=="customers/C0123abc"`. Omitting the filter or specifying a
1882
+ # filter of `customer=="customers/my_customer"` will return the profiles for the
1883
+ # customer that the caller (authenticated user) belongs to. Specifying a filter
1884
+ # of `customer==""` will return the global shared OIDC profiles.
1885
+ # @param [Fixnum] page_size
1886
+ # The maximum number of InboundOidcSsoProfiles to return. The service may return
1887
+ # fewer than this value. If omitted (or defaulted to zero) the server will use a
1888
+ # sensible default. This default may change over time. The maximum allowed value
1889
+ # is 100. Requests with page_size greater than that will be silently interpreted
1890
+ # as having this maximum value.
1891
+ # @param [String] page_token
1892
+ # A page token, received from a previous `ListInboundOidcSsoProfiles` call.
1893
+ # Provide this to retrieve the subsequent page. When paginating, all other
1894
+ # parameters provided to `ListInboundOidcSsoProfiles` must match the call that
1895
+ # provided the page token.
1896
+ # @param [String] fields
1897
+ # Selector specifying which fields to include in a partial response.
1898
+ # @param [String] quota_user
1899
+ # Available to use for quota purposes for server-side applications. Can be any
1900
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1901
+ # @param [Google::Apis::RequestOptions] options
1902
+ # Request-specific options
1903
+ #
1904
+ # @yield [result, err] Result & error if block supplied
1905
+ # @yieldparam result [Google::Apis::CloudidentityV1beta1::ListInboundOidcSsoProfilesResponse] parsed result object
1906
+ # @yieldparam err [StandardError] error object if request failed
1907
+ #
1908
+ # @return [Google::Apis::CloudidentityV1beta1::ListInboundOidcSsoProfilesResponse]
1909
+ #
1910
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1911
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1912
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1913
+ def list_inbound_oidc_sso_profiles(filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1914
+ command = make_simple_command(:get, 'v1beta1/inboundOidcSsoProfiles', options)
1915
+ command.response_representation = Google::Apis::CloudidentityV1beta1::ListInboundOidcSsoProfilesResponse::Representation
1916
+ command.response_class = Google::Apis::CloudidentityV1beta1::ListInboundOidcSsoProfilesResponse
1917
+ command.query['filter'] = filter unless filter.nil?
1918
+ command.query['pageSize'] = page_size unless page_size.nil?
1919
+ command.query['pageToken'] = page_token unless page_token.nil?
1920
+ command.query['fields'] = fields unless fields.nil?
1921
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1922
+ execute_or_queue_command(command, &block)
1923
+ end
1924
+
1925
+ # Updates an InboundOidcSsoProfile. When the target customer has enabled [Multi-
1926
+ # party approval for sensitive actions](https://support.google.com/a/answer/
1927
+ # 13790448), the `Operation` in the response will have `"done": false`, it will
1928
+ # not have a response, and the metadata will have `"state": "awaiting-multi-
1929
+ # party-approval"`.
1930
+ # @param [String] name
1931
+ # Output only. [Resource name](https://cloud.google.com/apis/design/
1932
+ # resource_names) of the OIDC SSO profile.
1933
+ # @param [Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile] inbound_oidc_sso_profile_object
1934
+ # @param [String] update_mask
1935
+ # Required. The list of fields to be updated.
1936
+ # @param [String] fields
1937
+ # Selector specifying which fields to include in a partial response.
1938
+ # @param [String] quota_user
1939
+ # Available to use for quota purposes for server-side applications. Can be any
1940
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1941
+ # @param [Google::Apis::RequestOptions] options
1942
+ # Request-specific options
1943
+ #
1944
+ # @yield [result, err] Result & error if block supplied
1945
+ # @yieldparam result [Google::Apis::CloudidentityV1beta1::Operation] parsed result object
1946
+ # @yieldparam err [StandardError] error object if request failed
1947
+ #
1948
+ # @return [Google::Apis::CloudidentityV1beta1::Operation]
1949
+ #
1950
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1951
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1952
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1953
+ def patch_inbound_oidc_sso_profile(name, inbound_oidc_sso_profile_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
1954
+ command = make_simple_command(:patch, 'v1beta1/{+name}', options)
1955
+ command.request_representation = Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile::Representation
1956
+ command.request_object = inbound_oidc_sso_profile_object
1957
+ command.response_representation = Google::Apis::CloudidentityV1beta1::Operation::Representation
1958
+ command.response_class = Google::Apis::CloudidentityV1beta1::Operation
1959
+ command.params['name'] = name unless name.nil?
1960
+ command.query['updateMask'] = update_mask unless update_mask.nil?
1961
+ command.query['fields'] = fields unless fields.nil?
1962
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1963
+ execute_or_queue_command(command, &block)
1964
+ end
1965
+
1779
1966
  # Creates an InboundSamlSsoProfile for a customer. When the target customer has
1780
1967
  # enabled [Multi-party approval for sensitive actions](https://support.google.
1781
1968
  # 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.55.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.55.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: