google-apis-cloudidentity_v1 0.50.0 → 0.51.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: e3a4d4c4bcfb68633e82a74b8c49e12a040af1cee9cd7e498c86065bdb133a6c
4
- data.tar.gz: 2b8a3b22f1fa55f01226edb1fe3d4f7723ce630c02d379d9bc9dea3a4504e376
3
+ metadata.gz: 6eea34650962bf02c91ff3b9d15a5671c487311bde43ff255496bacddd3b0eff
4
+ data.tar.gz: fcecd4a4cd3762e1d718b7def7cf17c4ff427d4e755cd60af39ff780b56782a8
5
5
  SHA512:
6
- metadata.gz: efc25065a304bcdc025b3792b2ead0b83c0e1ded0097af3ab3a676d7a577d0dfd2b5763d977150ff1273bf0a3ae3599a2d78026179f2272dfc486d06d074a976
7
- data.tar.gz: 71adba917fa3b5e56b00e8747ef9c9875153db7106ad1d8799d3808a1351643bf951881c19ed50ff3608b301e28ac56e0ae8f3211e7034e79217033a9bb86668
6
+ metadata.gz: 3668ef032c469beaa76c538f4f9046b5fbec5bfc98337d9d28bb3eed7996600aaf3610d3f373d21219b8b541f54736b3cadc1401a46437fcd434eb19380cc886
7
+ data.tar.gz: 3650456a59b40dac6145fad57f018ef4a9eec499e7de7d37d10399a092b4865c6e69303209d2dbc131a66a2e649cd3635a719df4554aa71992c46adab2f50a16
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudidentity_v1
2
2
 
3
+ ### v0.51.0 (2025-08-10)
4
+
5
+ * Regenerated from discovery document revision 20250805
6
+
3
7
  ### v0.50.0 (2025-07-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20250701
@@ -113,6 +113,28 @@ module Google
113
113
  end
114
114
  end
115
115
 
116
+ # LRO response metadata for InboundOidcSsoProfilesService.
117
+ # CreateInboundOidcSsoProfile.
118
+ class CreateInboundOidcSsoProfileOperationMetadata
119
+ include Google::Apis::Core::Hashable
120
+
121
+ # State of this Operation Will be "awaiting-multi-party-approval" when the
122
+ # operation is deferred due to the target customer having enabled [Multi-party
123
+ # approval for sensitive actions](https://support.google.com/a/answer/13790448).
124
+ # Corresponds to the JSON property `state`
125
+ # @return [String]
126
+ attr_accessor :state
127
+
128
+ def initialize(**args)
129
+ update!(**args)
130
+ end
131
+
132
+ # Update properties of this object
133
+ def update!(**args)
134
+ @state = args[:state] if args.key?(:state)
135
+ end
136
+ end
137
+
116
138
  # LRO response metadata for InboundSamlSsoProfilesService.
117
139
  # CreateInboundSamlSsoProfile.
118
140
  class CreateInboundSamlSsoProfileOperationMetadata
@@ -188,6 +210,20 @@ module Google
188
210
  end
189
211
  end
190
212
 
213
+ # LRO response metadata for InboundOidcSsoProfilesService.
214
+ # DeleteInboundOidcSsoProfile.
215
+ class DeleteInboundOidcSsoProfileOperationMetadata
216
+ include Google::Apis::Core::Hashable
217
+
218
+ def initialize(**args)
219
+ update!(**args)
220
+ end
221
+
222
+ # Update properties of this object
223
+ def update!(**args)
224
+ end
225
+ end
226
+
191
227
  # LRO response metadata for InboundSamlSsoProfilesService.
192
228
  # DeleteInboundSamlSsoProfile.
193
229
  class DeleteInboundSamlSsoProfileOperationMetadata
@@ -1975,6 +2011,51 @@ module Google
1975
2011
  end
1976
2012
  end
1977
2013
 
2014
+ # An [OIDC](https://openid.net/developers/how-connect-works/) federation between
2015
+ # a Google enterprise customer and an OIDC identity provider.
2016
+ class InboundOidcSsoProfile
2017
+ include Google::Apis::Core::Hashable
2018
+
2019
+ # Immutable. The customer. For example: `customers/C0123abc`.
2020
+ # Corresponds to the JSON property `customer`
2021
+ # @return [String]
2022
+ attr_accessor :customer
2023
+
2024
+ # Human-readable name of the OIDC SSO profile.
2025
+ # Corresponds to the JSON property `displayName`
2026
+ # @return [String]
2027
+ attr_accessor :display_name
2028
+
2029
+ # OIDC IDP (identity provider) configuration.
2030
+ # Corresponds to the JSON property `idpConfig`
2031
+ # @return [Google::Apis::CloudidentityV1::OidcIdpConfig]
2032
+ attr_accessor :idp_config
2033
+
2034
+ # Output only. [Resource name](https://cloud.google.com/apis/design/
2035
+ # resource_names) of the OIDC SSO profile.
2036
+ # Corresponds to the JSON property `name`
2037
+ # @return [String]
2038
+ attr_accessor :name
2039
+
2040
+ # OIDC RP (relying party) configuration.
2041
+ # Corresponds to the JSON property `rpConfig`
2042
+ # @return [Google::Apis::CloudidentityV1::OidcRpConfig]
2043
+ attr_accessor :rp_config
2044
+
2045
+ def initialize(**args)
2046
+ update!(**args)
2047
+ end
2048
+
2049
+ # Update properties of this object
2050
+ def update!(**args)
2051
+ @customer = args[:customer] if args.key?(:customer)
2052
+ @display_name = args[:display_name] if args.key?(:display_name)
2053
+ @idp_config = args[:idp_config] if args.key?(:idp_config)
2054
+ @name = args[:name] if args.key?(:name)
2055
+ @rp_config = args[:rp_config] if args.key?(:rp_config)
2056
+ end
2057
+ end
2058
+
1978
2059
  # A [SAML 2.0](https://www.oasis-open.org/standards#samlv2.0) federation between
1979
2060
  # a Google enterprise customer and a SAML identity provider.
1980
2061
  class InboundSamlSsoProfile
@@ -2035,6 +2116,11 @@ module Google
2035
2116
  # @return [String]
2036
2117
  attr_accessor :name
2037
2118
 
2119
+ # Details that are applicable when `sso_mode` is set to `OIDC_SSO`.
2120
+ # Corresponds to the JSON property `oidcSsoInfo`
2121
+ # @return [Google::Apis::CloudidentityV1::OidcSsoInfo]
2122
+ attr_accessor :oidc_sso_info
2123
+
2038
2124
  # Must be zero (which is the default value so it can be omitted) for assignments
2039
2125
  # with `target_org_unit` set and must be greater-than-or-equal-to one for
2040
2126
  # assignments with `target_group` set.
@@ -2075,6 +2161,7 @@ module Google
2075
2161
  def update!(**args)
2076
2162
  @customer = args[:customer] if args.key?(:customer)
2077
2163
  @name = args[:name] if args.key?(:name)
2164
+ @oidc_sso_info = args[:oidc_sso_info] if args.key?(:oidc_sso_info)
2078
2165
  @rank = args[:rank] if args.key?(:rank)
2079
2166
  @saml_sso_info = args[:saml_sso_info] if args.key?(:saml_sso_info)
2080
2167
  @sign_in_behavior = args[:sign_in_behavior] if args.key?(:sign_in_behavior)
@@ -2156,6 +2243,33 @@ module Google
2156
2243
  end
2157
2244
  end
2158
2245
 
2246
+ # Response of the InboundOidcSsoProfilesService.ListInboundOidcSsoProfiles
2247
+ # method.
2248
+ class ListInboundOidcSsoProfilesResponse
2249
+ include Google::Apis::Core::Hashable
2250
+
2251
+ # List of InboundOidcSsoProfiles.
2252
+ # Corresponds to the JSON property `inboundOidcSsoProfiles`
2253
+ # @return [Array<Google::Apis::CloudidentityV1::InboundOidcSsoProfile>]
2254
+ attr_accessor :inbound_oidc_sso_profiles
2255
+
2256
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
2257
+ # field is omitted, there are no subsequent pages.
2258
+ # Corresponds to the JSON property `nextPageToken`
2259
+ # @return [String]
2260
+ attr_accessor :next_page_token
2261
+
2262
+ def initialize(**args)
2263
+ update!(**args)
2264
+ end
2265
+
2266
+ # Update properties of this object
2267
+ def update!(**args)
2268
+ @inbound_oidc_sso_profiles = args[:inbound_oidc_sso_profiles] if args.key?(:inbound_oidc_sso_profiles)
2269
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2270
+ end
2271
+ end
2272
+
2159
2273
  # Response of the InboundSamlSsoProfilesService.ListInboundSamlSsoProfiles
2160
2274
  # method.
2161
2275
  class ListInboundSamlSsoProfilesResponse
@@ -2666,6 +2780,87 @@ module Google
2666
2780
  end
2667
2781
  end
2668
2782
 
2783
+ # OIDC IDP (identity provider) configuration.
2784
+ class OidcIdpConfig
2785
+ include Google::Apis::Core::Hashable
2786
+
2787
+ # The **Change Password URL** of the identity provider. Users will be sent to
2788
+ # this URL when changing their passwords at `myaccount.google.com`. This takes
2789
+ # precedence over the change password URL configured at customer-level. Must use
2790
+ # `HTTPS`.
2791
+ # Corresponds to the JSON property `changePasswordUri`
2792
+ # @return [String]
2793
+ attr_accessor :change_password_uri
2794
+
2795
+ # Required. The Issuer identifier for the IdP. Must be a URL. The discovery URL
2796
+ # will be derived from this as described in Section 4 of [the OIDC specification]
2797
+ # (https://openid.net/specs/openid-connect-discovery-1_0.html).
2798
+ # Corresponds to the JSON property `issuerUri`
2799
+ # @return [String]
2800
+ attr_accessor :issuer_uri
2801
+
2802
+ def initialize(**args)
2803
+ update!(**args)
2804
+ end
2805
+
2806
+ # Update properties of this object
2807
+ def update!(**args)
2808
+ @change_password_uri = args[:change_password_uri] if args.key?(:change_password_uri)
2809
+ @issuer_uri = args[:issuer_uri] if args.key?(:issuer_uri)
2810
+ end
2811
+ end
2812
+
2813
+ # OIDC RP (relying party) configuration.
2814
+ class OidcRpConfig
2815
+ include Google::Apis::Core::Hashable
2816
+
2817
+ # OAuth2 client ID for OIDC.
2818
+ # Corresponds to the JSON property `clientId`
2819
+ # @return [String]
2820
+ attr_accessor :client_id
2821
+
2822
+ # Input only. OAuth2 client secret for OIDC.
2823
+ # Corresponds to the JSON property `clientSecret`
2824
+ # @return [String]
2825
+ attr_accessor :client_secret
2826
+
2827
+ # Output only. The URL(s) that this client may use in authentication requests.
2828
+ # Corresponds to the JSON property `redirectUris`
2829
+ # @return [Array<String>]
2830
+ attr_accessor :redirect_uris
2831
+
2832
+ def initialize(**args)
2833
+ update!(**args)
2834
+ end
2835
+
2836
+ # Update properties of this object
2837
+ def update!(**args)
2838
+ @client_id = args[:client_id] if args.key?(:client_id)
2839
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
2840
+ @redirect_uris = args[:redirect_uris] if args.key?(:redirect_uris)
2841
+ end
2842
+ end
2843
+
2844
+ # Details that are applicable when `sso_mode` is set to `OIDC_SSO`.
2845
+ class OidcSsoInfo
2846
+ include Google::Apis::Core::Hashable
2847
+
2848
+ # Required. Name of the `InboundOidcSsoProfile` to use. Must be of the form `
2849
+ # inboundOidcSsoProfiles/`inbound_oidc_sso_profile``.
2850
+ # Corresponds to the JSON property `inboundOidcSsoProfile`
2851
+ # @return [String]
2852
+ attr_accessor :inbound_oidc_sso_profile
2853
+
2854
+ def initialize(**args)
2855
+ update!(**args)
2856
+ end
2857
+
2858
+ # Update properties of this object
2859
+ def update!(**args)
2860
+ @inbound_oidc_sso_profile = args[:inbound_oidc_sso_profile] if args.key?(:inbound_oidc_sso_profile)
2861
+ end
2862
+ end
2863
+
2669
2864
  # This resource represents a long-running operation that is the result of a
2670
2865
  # network API call.
2671
2866
  class Operation
@@ -3239,6 +3434,28 @@ module Google
3239
3434
  end
3240
3435
  end
3241
3436
 
3437
+ # LRO response metadata for InboundOidcSsoProfilesService.
3438
+ # UpdateInboundOidcSsoProfile.
3439
+ class UpdateInboundOidcSsoProfileOperationMetadata
3440
+ include Google::Apis::Core::Hashable
3441
+
3442
+ # State of this Operation Will be "awaiting-multi-party-approval" when the
3443
+ # operation is deferred due to the target customer having enabled [Multi-party
3444
+ # approval for sensitive actions](https://support.google.com/a/answer/13790448).
3445
+ # Corresponds to the JSON property `state`
3446
+ # @return [String]
3447
+ attr_accessor :state
3448
+
3449
+ def initialize(**args)
3450
+ update!(**args)
3451
+ end
3452
+
3453
+ # Update properties of this object
3454
+ def update!(**args)
3455
+ @state = args[:state] if args.key?(:state)
3456
+ end
3457
+ end
3458
+
3242
3459
  # LRO response metadata for InboundSamlSsoProfilesService.
3243
3460
  # UpdateInboundSamlSsoProfile.
3244
3461
  class UpdateInboundSamlSsoProfileOperationMetadata
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudidentityV1
18
18
  # Version of the google-apis-cloudidentity_v1 gem
19
- GEM_VERSION = "0.50.0"
19
+ GEM_VERSION = "0.51.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
@@ -52,6 +52,12 @@ module Google
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
+ class CreateInboundOidcSsoProfileOperationMetadata
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
55
61
  class CreateInboundSamlSsoProfileOperationMetadata
56
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
63
 
@@ -82,6 +88,12 @@ module Google
82
88
  include Google::Apis::Core::JsonObjectSupport
83
89
  end
84
90
 
91
+ class DeleteInboundOidcSsoProfileOperationMetadata
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
85
97
  class DeleteInboundSamlSsoProfileOperationMetadata
86
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
99
 
@@ -400,6 +412,12 @@ module Google
400
412
  include Google::Apis::Core::JsonObjectSupport
401
413
  end
402
414
 
415
+ class InboundOidcSsoProfile
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
403
421
  class InboundSamlSsoProfile
404
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
405
423
 
@@ -430,6 +448,12 @@ module Google
430
448
  include Google::Apis::Core::JsonObjectSupport
431
449
  end
432
450
 
451
+ class ListInboundOidcSsoProfilesResponse
452
+ class Representation < Google::Apis::Core::JsonRepresentation; end
453
+
454
+ include Google::Apis::Core::JsonObjectSupport
455
+ end
456
+
433
457
  class ListInboundSamlSsoProfilesResponse
434
458
  class Representation < Google::Apis::Core::JsonRepresentation; end
435
459
 
@@ -526,6 +550,24 @@ module Google
526
550
  include Google::Apis::Core::JsonObjectSupport
527
551
  end
528
552
 
553
+ class OidcIdpConfig
554
+ class Representation < Google::Apis::Core::JsonRepresentation; end
555
+
556
+ include Google::Apis::Core::JsonObjectSupport
557
+ end
558
+
559
+ class OidcRpConfig
560
+ class Representation < Google::Apis::Core::JsonRepresentation; end
561
+
562
+ include Google::Apis::Core::JsonObjectSupport
563
+ end
564
+
565
+ class OidcSsoInfo
566
+ class Representation < Google::Apis::Core::JsonRepresentation; end
567
+
568
+ include Google::Apis::Core::JsonObjectSupport
569
+ end
570
+
529
571
  class Operation
530
572
  class Representation < Google::Apis::Core::JsonRepresentation; end
531
573
 
@@ -646,6 +688,12 @@ module Google
646
688
  include Google::Apis::Core::JsonObjectSupport
647
689
  end
648
690
 
691
+ class UpdateInboundOidcSsoProfileOperationMetadata
692
+ class Representation < Google::Apis::Core::JsonRepresentation; end
693
+
694
+ include Google::Apis::Core::JsonObjectSupport
695
+ end
696
+
649
697
  class UpdateInboundSamlSsoProfileOperationMetadata
650
698
  class Representation < Google::Apis::Core::JsonRepresentation; end
651
699
 
@@ -709,6 +757,13 @@ module Google
709
757
  end
710
758
  end
711
759
 
760
+ class CreateInboundOidcSsoProfileOperationMetadata
761
+ # @private
762
+ class Representation < Google::Apis::Core::JsonRepresentation
763
+ property :state, as: 'state'
764
+ end
765
+ end
766
+
712
767
  class CreateInboundSamlSsoProfileOperationMetadata
713
768
  # @private
714
769
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -740,6 +795,12 @@ module Google
740
795
  end
741
796
  end
742
797
 
798
+ class DeleteInboundOidcSsoProfileOperationMetadata
799
+ # @private
800
+ class Representation < Google::Apis::Core::JsonRepresentation
801
+ end
802
+ end
803
+
743
804
  class DeleteInboundSamlSsoProfileOperationMetadata
744
805
  # @private
745
806
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1236,6 +1297,19 @@ module Google
1236
1297
  end
1237
1298
  end
1238
1299
 
1300
+ class InboundOidcSsoProfile
1301
+ # @private
1302
+ class Representation < Google::Apis::Core::JsonRepresentation
1303
+ property :customer, as: 'customer'
1304
+ property :display_name, as: 'displayName'
1305
+ property :idp_config, as: 'idpConfig', class: Google::Apis::CloudidentityV1::OidcIdpConfig, decorator: Google::Apis::CloudidentityV1::OidcIdpConfig::Representation
1306
+
1307
+ property :name, as: 'name'
1308
+ property :rp_config, as: 'rpConfig', class: Google::Apis::CloudidentityV1::OidcRpConfig, decorator: Google::Apis::CloudidentityV1::OidcRpConfig::Representation
1309
+
1310
+ end
1311
+ end
1312
+
1239
1313
  class InboundSamlSsoProfile
1240
1314
  # @private
1241
1315
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1254,6 +1328,8 @@ module Google
1254
1328
  class Representation < Google::Apis::Core::JsonRepresentation
1255
1329
  property :customer, as: 'customer'
1256
1330
  property :name, as: 'name'
1331
+ property :oidc_sso_info, as: 'oidcSsoInfo', class: Google::Apis::CloudidentityV1::OidcSsoInfo, decorator: Google::Apis::CloudidentityV1::OidcSsoInfo::Representation
1332
+
1257
1333
  property :rank, as: 'rank'
1258
1334
  property :saml_sso_info, as: 'samlSsoInfo', class: Google::Apis::CloudidentityV1::SamlSsoInfo, decorator: Google::Apis::CloudidentityV1::SamlSsoInfo::Representation
1259
1335
 
@@ -1290,6 +1366,15 @@ module Google
1290
1366
  end
1291
1367
  end
1292
1368
 
1369
+ class ListInboundOidcSsoProfilesResponse
1370
+ # @private
1371
+ class Representation < Google::Apis::Core::JsonRepresentation
1372
+ collection :inbound_oidc_sso_profiles, as: 'inboundOidcSsoProfiles', class: Google::Apis::CloudidentityV1::InboundOidcSsoProfile, decorator: Google::Apis::CloudidentityV1::InboundOidcSsoProfile::Representation
1373
+
1374
+ property :next_page_token, as: 'nextPageToken'
1375
+ end
1376
+ end
1377
+
1293
1378
  class ListInboundSamlSsoProfilesResponse
1294
1379
  # @private
1295
1380
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1446,6 +1531,30 @@ module Google
1446
1531
  end
1447
1532
  end
1448
1533
 
1534
+ class OidcIdpConfig
1535
+ # @private
1536
+ class Representation < Google::Apis::Core::JsonRepresentation
1537
+ property :change_password_uri, as: 'changePasswordUri'
1538
+ property :issuer_uri, as: 'issuerUri'
1539
+ end
1540
+ end
1541
+
1542
+ class OidcRpConfig
1543
+ # @private
1544
+ class Representation < Google::Apis::Core::JsonRepresentation
1545
+ property :client_id, as: 'clientId'
1546
+ property :client_secret, as: 'clientSecret'
1547
+ collection :redirect_uris, as: 'redirectUris'
1548
+ end
1549
+ end
1550
+
1551
+ class OidcSsoInfo
1552
+ # @private
1553
+ class Representation < Google::Apis::Core::JsonRepresentation
1554
+ property :inbound_oidc_sso_profile, as: 'inboundOidcSsoProfile'
1555
+ end
1556
+ end
1557
+
1449
1558
  class Operation
1450
1559
  # @private
1451
1560
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1616,6 +1725,13 @@ module Google
1616
1725
  end
1617
1726
  end
1618
1727
 
1728
+ class UpdateInboundOidcSsoProfileOperationMetadata
1729
+ # @private
1730
+ class Representation < Google::Apis::Core::JsonRepresentation
1731
+ property :state, as: 'state'
1732
+ end
1733
+ end
1734
+
1619
1735
  class UpdateInboundSamlSsoProfileOperationMetadata
1620
1736
  # @private
1621
1737
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1859,6 +1859,193 @@ module Google
1859
1859
  execute_or_queue_command(command, &block)
1860
1860
  end
1861
1861
 
1862
+ # Creates an InboundOidcSsoProfile for a customer. When the target customer has
1863
+ # enabled [Multi-party approval for sensitive actions](https://support.google.
1864
+ # com/a/answer/13790448), the `Operation` in the response will have `"done":
1865
+ # false`, it will not have a response, and the metadata will have `"state": "
1866
+ # awaiting-multi-party-approval"`.
1867
+ # @param [Google::Apis::CloudidentityV1::InboundOidcSsoProfile] inbound_oidc_sso_profile_object
1868
+ # @param [String] fields
1869
+ # Selector specifying which fields to include in a partial response.
1870
+ # @param [String] quota_user
1871
+ # Available to use for quota purposes for server-side applications. Can be any
1872
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1873
+ # @param [Google::Apis::RequestOptions] options
1874
+ # Request-specific options
1875
+ #
1876
+ # @yield [result, err] Result & error if block supplied
1877
+ # @yieldparam result [Google::Apis::CloudidentityV1::Operation] parsed result object
1878
+ # @yieldparam err [StandardError] error object if request failed
1879
+ #
1880
+ # @return [Google::Apis::CloudidentityV1::Operation]
1881
+ #
1882
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1883
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1884
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1885
+ def create_inbound_oidc_sso_profile(inbound_oidc_sso_profile_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1886
+ command = make_simple_command(:post, 'v1/inboundOidcSsoProfiles', options)
1887
+ command.request_representation = Google::Apis::CloudidentityV1::InboundOidcSsoProfile::Representation
1888
+ command.request_object = inbound_oidc_sso_profile_object
1889
+ command.response_representation = Google::Apis::CloudidentityV1::Operation::Representation
1890
+ command.response_class = Google::Apis::CloudidentityV1::Operation
1891
+ command.query['fields'] = fields unless fields.nil?
1892
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1893
+ execute_or_queue_command(command, &block)
1894
+ end
1895
+
1896
+ # Deletes an InboundOidcSsoProfile.
1897
+ # @param [String] name
1898
+ # Required. The [resource name](https://cloud.google.com/apis/design/
1899
+ # resource_names) of the InboundOidcSsoProfile to delete. Format: `
1900
+ # inboundOidcSsoProfiles/`sso_profile_id``
1901
+ # @param [String] fields
1902
+ # Selector specifying which fields to include in a partial response.
1903
+ # @param [String] quota_user
1904
+ # Available to use for quota purposes for server-side applications. Can be any
1905
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1906
+ # @param [Google::Apis::RequestOptions] options
1907
+ # Request-specific options
1908
+ #
1909
+ # @yield [result, err] Result & error if block supplied
1910
+ # @yieldparam result [Google::Apis::CloudidentityV1::Operation] parsed result object
1911
+ # @yieldparam err [StandardError] error object if request failed
1912
+ #
1913
+ # @return [Google::Apis::CloudidentityV1::Operation]
1914
+ #
1915
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1916
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1917
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1918
+ def delete_inbound_oidc_sso_profile(name, fields: nil, quota_user: nil, options: nil, &block)
1919
+ command = make_simple_command(:delete, 'v1/{+name}', options)
1920
+ command.response_representation = Google::Apis::CloudidentityV1::Operation::Representation
1921
+ command.response_class = Google::Apis::CloudidentityV1::Operation
1922
+ command.params['name'] = name unless name.nil?
1923
+ command.query['fields'] = fields unless fields.nil?
1924
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1925
+ execute_or_queue_command(command, &block)
1926
+ end
1927
+
1928
+ # Gets an InboundOidcSsoProfile.
1929
+ # @param [String] name
1930
+ # Required. The [resource name](https://cloud.google.com/apis/design/
1931
+ # resource_names) of the InboundOidcSsoProfile to get. Format: `
1932
+ # inboundOidcSsoProfiles/`sso_profile_id``
1933
+ # @param [String] fields
1934
+ # Selector specifying which fields to include in a partial response.
1935
+ # @param [String] quota_user
1936
+ # Available to use for quota purposes for server-side applications. Can be any
1937
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1938
+ # @param [Google::Apis::RequestOptions] options
1939
+ # Request-specific options
1940
+ #
1941
+ # @yield [result, err] Result & error if block supplied
1942
+ # @yieldparam result [Google::Apis::CloudidentityV1::InboundOidcSsoProfile] parsed result object
1943
+ # @yieldparam err [StandardError] error object if request failed
1944
+ #
1945
+ # @return [Google::Apis::CloudidentityV1::InboundOidcSsoProfile]
1946
+ #
1947
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1948
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1949
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1950
+ def get_inbound_oidc_sso_profile(name, fields: nil, quota_user: nil, options: nil, &block)
1951
+ command = make_simple_command(:get, 'v1/{+name}', options)
1952
+ command.response_representation = Google::Apis::CloudidentityV1::InboundOidcSsoProfile::Representation
1953
+ command.response_class = Google::Apis::CloudidentityV1::InboundOidcSsoProfile
1954
+ command.params['name'] = name unless name.nil?
1955
+ command.query['fields'] = fields unless fields.nil?
1956
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1957
+ execute_or_queue_command(command, &block)
1958
+ end
1959
+
1960
+ # Lists InboundOidcSsoProfile objects for a Google enterprise customer.
1961
+ # @param [String] filter
1962
+ # A [Common Expression Language](https://github.com/google/cel-spec) expression
1963
+ # to filter the results. The only supported filter is filtering by customer. For
1964
+ # example: `customer=="customers/C0123abc"`. Omitting the filter or specifying a
1965
+ # filter of `customer=="customers/my_customer"` will return the profiles for the
1966
+ # customer that the caller (authenticated user) belongs to. Specifying a filter
1967
+ # of `customer==""` will return the global shared OIDC profiles.
1968
+ # @param [Fixnum] page_size
1969
+ # The maximum number of InboundOidcSsoProfiles to return. The service may return
1970
+ # fewer than this value. If omitted (or defaulted to zero) the server will use a
1971
+ # sensible default. This default may change over time. The maximum allowed value
1972
+ # is 100. Requests with page_size greater than that will be silently interpreted
1973
+ # as having this maximum value.
1974
+ # @param [String] page_token
1975
+ # A page token, received from a previous `ListInboundOidcSsoProfiles` call.
1976
+ # Provide this to retrieve the subsequent page. When paginating, all other
1977
+ # parameters provided to `ListInboundOidcSsoProfiles` must match the call that
1978
+ # provided the page token.
1979
+ # @param [String] fields
1980
+ # Selector specifying which fields to include in a partial response.
1981
+ # @param [String] quota_user
1982
+ # Available to use for quota purposes for server-side applications. Can be any
1983
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1984
+ # @param [Google::Apis::RequestOptions] options
1985
+ # Request-specific options
1986
+ #
1987
+ # @yield [result, err] Result & error if block supplied
1988
+ # @yieldparam result [Google::Apis::CloudidentityV1::ListInboundOidcSsoProfilesResponse] parsed result object
1989
+ # @yieldparam err [StandardError] error object if request failed
1990
+ #
1991
+ # @return [Google::Apis::CloudidentityV1::ListInboundOidcSsoProfilesResponse]
1992
+ #
1993
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1994
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1995
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1996
+ def list_inbound_oidc_sso_profiles(filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1997
+ command = make_simple_command(:get, 'v1/inboundOidcSsoProfiles', options)
1998
+ command.response_representation = Google::Apis::CloudidentityV1::ListInboundOidcSsoProfilesResponse::Representation
1999
+ command.response_class = Google::Apis::CloudidentityV1::ListInboundOidcSsoProfilesResponse
2000
+ command.query['filter'] = filter unless filter.nil?
2001
+ command.query['pageSize'] = page_size unless page_size.nil?
2002
+ command.query['pageToken'] = page_token unless page_token.nil?
2003
+ command.query['fields'] = fields unless fields.nil?
2004
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2005
+ execute_or_queue_command(command, &block)
2006
+ end
2007
+
2008
+ # Updates an InboundOidcSsoProfile. When the target customer has enabled [Multi-
2009
+ # party approval for sensitive actions](https://support.google.com/a/answer/
2010
+ # 13790448), the `Operation` in the response will have `"done": false`, it will
2011
+ # not have a response, and the metadata will have `"state": "awaiting-multi-
2012
+ # party-approval"`.
2013
+ # @param [String] name
2014
+ # Output only. [Resource name](https://cloud.google.com/apis/design/
2015
+ # resource_names) of the OIDC SSO profile.
2016
+ # @param [Google::Apis::CloudidentityV1::InboundOidcSsoProfile] inbound_oidc_sso_profile_object
2017
+ # @param [String] update_mask
2018
+ # Required. The list of fields to be updated.
2019
+ # @param [String] fields
2020
+ # Selector specifying which fields to include in a partial response.
2021
+ # @param [String] quota_user
2022
+ # Available to use for quota purposes for server-side applications. Can be any
2023
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2024
+ # @param [Google::Apis::RequestOptions] options
2025
+ # Request-specific options
2026
+ #
2027
+ # @yield [result, err] Result & error if block supplied
2028
+ # @yieldparam result [Google::Apis::CloudidentityV1::Operation] parsed result object
2029
+ # @yieldparam err [StandardError] error object if request failed
2030
+ #
2031
+ # @return [Google::Apis::CloudidentityV1::Operation]
2032
+ #
2033
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2034
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2035
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2036
+ def patch_inbound_oidc_sso_profile(name, inbound_oidc_sso_profile_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
2037
+ command = make_simple_command(:patch, 'v1/{+name}', options)
2038
+ command.request_representation = Google::Apis::CloudidentityV1::InboundOidcSsoProfile::Representation
2039
+ command.request_object = inbound_oidc_sso_profile_object
2040
+ command.response_representation = Google::Apis::CloudidentityV1::Operation::Representation
2041
+ command.response_class = Google::Apis::CloudidentityV1::Operation
2042
+ command.params['name'] = name unless name.nil?
2043
+ command.query['updateMask'] = update_mask unless update_mask.nil?
2044
+ command.query['fields'] = fields unless fields.nil?
2045
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2046
+ execute_or_queue_command(command, &block)
2047
+ end
2048
+
1862
2049
  # Creates an InboundSamlSsoProfile for a customer. When the target customer has
1863
2050
  # enabled [Multi-party approval for sensitive actions](https://support.google.
1864
2051
  # 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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.50.0
4
+ version: 0.51.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.50.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.51.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1
62
62
  rdoc_options: []
63
63
  require_paths: