google-apis-iam_v1 0.42.0 → 0.43.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/iam_v1/classes.rb +36 -3
- data/lib/google/apis/iam_v1/gem_version.rb +2 -2
- data/lib/google/apis/iam_v1/representations.rb +16 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c59c20769a4d8e981bf0636d3e3ff5c85a08ec3675cc98afca21971b1fcd2e7f
|
4
|
+
data.tar.gz: f11d025657df7db8d1d58dec7e97a3aba4458903b9adfb9ef73d1c80a9a62a76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9358ae2e7aee22994824cc2b41d95d919f54e1076868ed7e7bdf5dba408ff88cdbb4bd174e52d74088365f37f206a172136afa1e81a1dd47cd654c95c5152cda
|
7
|
+
data.tar.gz: 66459a27e4a64d9be0fa5364e29a944a2668495b28895b5389b2731dc755e0c256b3868f7c7cb8e6c0b0d9237c912682744dc3c49282dbeb2cd28fca71a779a9
|
data/CHANGELOG.md
CHANGED
@@ -576,6 +576,11 @@ module Google
|
|
576
576
|
# @return [String]
|
577
577
|
attr_accessor :issuer_uri
|
578
578
|
|
579
|
+
# Configuration for web single sign-on for the OIDC provider.
|
580
|
+
# Corresponds to the JSON property `webSsoConfig`
|
581
|
+
# @return [Google::Apis::IamV1::GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig]
|
582
|
+
attr_accessor :web_sso_config
|
583
|
+
|
579
584
|
def initialize(**args)
|
580
585
|
update!(**args)
|
581
586
|
end
|
@@ -584,6 +589,34 @@ module Google
|
|
584
589
|
def update!(**args)
|
585
590
|
@client_id = args[:client_id] if args.key?(:client_id)
|
586
591
|
@issuer_uri = args[:issuer_uri] if args.key?(:issuer_uri)
|
592
|
+
@web_sso_config = args[:web_sso_config] if args.key?(:web_sso_config)
|
593
|
+
end
|
594
|
+
end
|
595
|
+
|
596
|
+
# Configuration for web single sign-on for the OIDC provider.
|
597
|
+
class GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig
|
598
|
+
include Google::Apis::Core::Hashable
|
599
|
+
|
600
|
+
# Required. The behavior for how OIDC Claims are included in the `assertion`
|
601
|
+
# object used for attribute mapping and attribute condition.
|
602
|
+
# Corresponds to the JSON property `assertionClaimsBehavior`
|
603
|
+
# @return [String]
|
604
|
+
attr_accessor :assertion_claims_behavior
|
605
|
+
|
606
|
+
# Required. The Response Type to request for in the OIDC Authorization Request
|
607
|
+
# for web sign-in.
|
608
|
+
# Corresponds to the JSON property `responseType`
|
609
|
+
# @return [String]
|
610
|
+
attr_accessor :response_type
|
611
|
+
|
612
|
+
def initialize(**args)
|
613
|
+
update!(**args)
|
614
|
+
end
|
615
|
+
|
616
|
+
# Update properties of this object
|
617
|
+
def update!(**args)
|
618
|
+
@assertion_claims_behavior = args[:assertion_claims_behavior] if args.key?(:assertion_claims_behavior)
|
619
|
+
@response_type = args[:response_type] if args.key?(:response_type)
|
587
620
|
end
|
588
621
|
end
|
589
622
|
|
@@ -2220,8 +2253,8 @@ module Google
|
|
2220
2253
|
# @return [String]
|
2221
2254
|
attr_accessor :description
|
2222
2255
|
|
2223
|
-
#
|
2224
|
-
#
|
2256
|
+
# Disables the workforce pool. You cannot use a disabled pool to exchange tokens,
|
2257
|
+
# or use existing tokens to access resources. If the pool is re-enabled,
|
2225
2258
|
# existing tokens grant access again.
|
2226
2259
|
# Corresponds to the JSON property `disabled`
|
2227
2260
|
# @return [Boolean]
|
@@ -2344,7 +2377,7 @@ module Google
|
|
2344
2377
|
# @return [String]
|
2345
2378
|
attr_accessor :description
|
2346
2379
|
|
2347
|
-
#
|
2380
|
+
# Disables the workforce pool provider. You cannot use a disabled provider to
|
2348
2381
|
# exchange tokens. However, existing tokens still grant access.
|
2349
2382
|
# Corresponds to the JSON property `disabled`
|
2350
2383
|
# @return [Boolean]
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module IamV1
|
18
18
|
# Version of the google-apis-iam_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.43.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230420"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -142,6 +142,12 @@ module Google
|
|
142
142
|
include Google::Apis::Core::JsonObjectSupport
|
143
143
|
end
|
144
144
|
|
145
|
+
class GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
+
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
149
|
+
end
|
150
|
+
|
145
151
|
class GoogleIamAdminV1WorkforcePoolProviderSaml
|
146
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
153
|
|
@@ -638,6 +644,16 @@ module Google
|
|
638
644
|
class Representation < Google::Apis::Core::JsonRepresentation
|
639
645
|
property :client_id, as: 'clientId'
|
640
646
|
property :issuer_uri, as: 'issuerUri'
|
647
|
+
property :web_sso_config, as: 'webSsoConfig', class: Google::Apis::IamV1::GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig, decorator: Google::Apis::IamV1::GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig::Representation
|
648
|
+
|
649
|
+
end
|
650
|
+
end
|
651
|
+
|
652
|
+
class GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig
|
653
|
+
# @private
|
654
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
655
|
+
property :assertion_claims_behavior, as: 'assertionClaimsBehavior'
|
656
|
+
property :response_type, as: 'responseType'
|
641
657
|
end
|
642
658
|
end
|
643
659
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-iam_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.43.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -59,7 +59,7 @@ licenses:
|
|
59
59
|
metadata:
|
60
60
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
61
61
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1/CHANGELOG.md
|
62
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.
|
62
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-iam_v1/v0.43.0
|
63
63
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iam_v1
|
64
64
|
post_install_message:
|
65
65
|
rdoc_options: []
|