google-apis-iam_v1 0.42.0 → 0.44.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/iam_v1/classes.rb +48 -3
- data/lib/google/apis/iam_v1/gem_version.rb +2 -2
- data/lib/google/apis/iam_v1/representations.rb +17 -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: 52be15c572ef844cc240d223a8408e4fde31474e523bd1c2388bb0f93e09d746
|
4
|
+
data.tar.gz: 5b5768b5533fe2f0438b53c7088d0d5b6f932c9216637110e56e38286210ccde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51f435c5889e6ce0590d55282836a80e3c7533d4ef6ce38e197929aa4f108661075eb0511803cddf69694d526783e7968fb6051e244e32cf3a7e3bba2e2ed8f9
|
7
|
+
data.tar.gz: 1524cf6d816969ccb4094e456a11f3bf15fe142fb957cbe719996ae53db79f0d477082711a00100dad425b7092bca664278a6dfbfde4be968c2de1ccec081d45
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-iam_v1
|
2
2
|
|
3
|
+
### v0.44.0 (2023-05-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230518
|
6
|
+
|
7
|
+
### v0.43.0 (2023-04-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230420
|
10
|
+
|
3
11
|
### v0.42.0 (2023-04-16)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230406
|
@@ -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
|
|
@@ -1033,6 +1066,17 @@ module Google
|
|
1033
1066
|
# @return [String]
|
1034
1067
|
attr_accessor :issuer_uri
|
1035
1068
|
|
1069
|
+
# Optional. OIDC JWKs in JSON String format. For details on the definition of a
|
1070
|
+
# JWK, see https://tools.ietf.org/html/rfc7517. If not set, the `jwks_uri` from
|
1071
|
+
# the discovery document(fetched from the .well-known path of the `issuer_uri`)
|
1072
|
+
# will be used. Currently, RSA and EC asymmetric keys are supported. The JWK
|
1073
|
+
# must use following format and include only the following fields: ` "keys": [ `
|
1074
|
+
# "kty": "RSA/EC", "alg": "", "use": "sig", "kid": "", "n": "", "e": "", "x": "",
|
1075
|
+
# "y": "", "crv": "" ` ] `
|
1076
|
+
# Corresponds to the JSON property `jwksJson`
|
1077
|
+
# @return [String]
|
1078
|
+
attr_accessor :jwks_json
|
1079
|
+
|
1036
1080
|
def initialize(**args)
|
1037
1081
|
update!(**args)
|
1038
1082
|
end
|
@@ -1041,6 +1085,7 @@ module Google
|
|
1041
1085
|
def update!(**args)
|
1042
1086
|
@allowed_audiences = args[:allowed_audiences] if args.key?(:allowed_audiences)
|
1043
1087
|
@issuer_uri = args[:issuer_uri] if args.key?(:issuer_uri)
|
1088
|
+
@jwks_json = args[:jwks_json] if args.key?(:jwks_json)
|
1044
1089
|
end
|
1045
1090
|
end
|
1046
1091
|
|
@@ -2220,8 +2265,8 @@ module Google
|
|
2220
2265
|
# @return [String]
|
2221
2266
|
attr_accessor :description
|
2222
2267
|
|
2223
|
-
#
|
2224
|
-
#
|
2268
|
+
# Disables the workforce pool. You cannot use a disabled pool to exchange tokens,
|
2269
|
+
# or use existing tokens to access resources. If the pool is re-enabled,
|
2225
2270
|
# existing tokens grant access again.
|
2226
2271
|
# Corresponds to the JSON property `disabled`
|
2227
2272
|
# @return [Boolean]
|
@@ -2344,7 +2389,7 @@ module Google
|
|
2344
2389
|
# @return [String]
|
2345
2390
|
attr_accessor :description
|
2346
2391
|
|
2347
|
-
#
|
2392
|
+
# Disables the workforce pool provider. You cannot use a disabled provider to
|
2348
2393
|
# exchange tokens. However, existing tokens still grant access.
|
2349
2394
|
# Corresponds to the JSON property `disabled`
|
2350
2395
|
# @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.44.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 = "20230518"
|
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
|
|
@@ -773,6 +789,7 @@ module Google
|
|
773
789
|
class Representation < Google::Apis::Core::JsonRepresentation
|
774
790
|
collection :allowed_audiences, as: 'allowedAudiences'
|
775
791
|
property :issuer_uri, as: 'issuerUri'
|
792
|
+
property :jwks_json, as: 'jwksJson'
|
776
793
|
end
|
777
794
|
end
|
778
795
|
|
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.44.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-06-04 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.44.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: []
|