google-apis-iam_v1 0.25.0 → 0.26.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 -0
- data/lib/google/apis/iam_v1/gem_version.rb +2 -2
- data/lib/google/apis/iam_v1/representations.rb +15 -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: 94c508cf73c508ee0079e88f09a0e9a11ae27ea093f4d9456592c27def8b2e5b
|
4
|
+
data.tar.gz: 1f36bf9bf63bf0e7a25aa690305f0dca0e65d0778375b8af3ddec1253e1c408b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5afaef6d634da91c36cb19fe4183c49e81b40d94d198c34b8d13f009c47bcb6a309b5e75f0ef8ca6244cc7d2e249dbd08653952d2a85aaa786fde2e7444010e6
|
7
|
+
data.tar.gz: 825080ea77ceefe37df3994a313f5a716dc980196a18ab14a74a5013ed946604c1dcc144c290f33fc0a887b24a9afd7e0c2d1cba614fa955acaf33303d8576ad
|
data/CHANGELOG.md
CHANGED
@@ -1322,6 +1322,36 @@ module Google
|
|
1322
1322
|
end
|
1323
1323
|
end
|
1324
1324
|
|
1325
|
+
# Represents an SAML 2.0 identity provider.
|
1326
|
+
class Saml
|
1327
|
+
include Google::Apis::Core::Hashable
|
1328
|
+
|
1329
|
+
# Required. SAML Identity provider configuration metadata xml doc. The xml
|
1330
|
+
# document should comply with [SAML 2.0 specification](https://www.oasis-open.
|
1331
|
+
# org/committees/download.php/56785/sstc-saml-metadata-errata-2.0-wd-05.pdf).
|
1332
|
+
# The max size of the acceptable xml document will be bounded to 128k characters.
|
1333
|
+
# The metadata xml document should satisfy the following constraints: 1) Must
|
1334
|
+
# contain an Identity Provider Entity ID. 2) Must contain at least one non-
|
1335
|
+
# expired signing key certificate. 3) For each signing key: a) Valid from should
|
1336
|
+
# be no more than 7 days from now. b) Valid to should be no more than 10 years
|
1337
|
+
# in the future. 4) Upto 3 IdP signing keys are allowed in the metadata xml.
|
1338
|
+
# When updating the provider's metadata xml, at lease one non-expired signing
|
1339
|
+
# key must overlap with the existing metadata. This requirement is skipped if
|
1340
|
+
# there are no non-expired signing keys present in the existing metadata
|
1341
|
+
# Corresponds to the JSON property `idpMetadataXml`
|
1342
|
+
# @return [String]
|
1343
|
+
attr_accessor :idp_metadata_xml
|
1344
|
+
|
1345
|
+
def initialize(**args)
|
1346
|
+
update!(**args)
|
1347
|
+
end
|
1348
|
+
|
1349
|
+
# Update properties of this object
|
1350
|
+
def update!(**args)
|
1351
|
+
@idp_metadata_xml = args[:idp_metadata_xml] if args.key?(:idp_metadata_xml)
|
1352
|
+
end
|
1353
|
+
end
|
1354
|
+
|
1325
1355
|
# An IAM service account. A service account is an account for an application or
|
1326
1356
|
# a virtual machine (VM) instance, not a person. You can use a service account
|
1327
1357
|
# to call Google APIs. To learn more, read the [overview of service accounts](
|
@@ -1996,6 +2026,11 @@ module Google
|
|
1996
2026
|
# @return [Google::Apis::IamV1::Oidc]
|
1997
2027
|
attr_accessor :oidc
|
1998
2028
|
|
2029
|
+
# Represents an SAML 2.0 identity provider.
|
2030
|
+
# Corresponds to the JSON property `saml`
|
2031
|
+
# @return [Google::Apis::IamV1::Saml]
|
2032
|
+
attr_accessor :saml
|
2033
|
+
|
1999
2034
|
# Output only. The state of the provider.
|
2000
2035
|
# Corresponds to the JSON property `state`
|
2001
2036
|
# @return [String]
|
@@ -2015,6 +2050,7 @@ module Google
|
|
2015
2050
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2016
2051
|
@name = args[:name] if args.key?(:name)
|
2017
2052
|
@oidc = args[:oidc] if args.key?(:oidc)
|
2053
|
+
@saml = args[:saml] if args.key?(:saml)
|
2018
2054
|
@state = args[:state] if args.key?(:state)
|
2019
2055
|
end
|
2020
2056
|
end
|
@@ -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.26.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220421"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -256,6 +256,12 @@ module Google
|
|
256
256
|
include Google::Apis::Core::JsonObjectSupport
|
257
257
|
end
|
258
258
|
|
259
|
+
class Saml
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
259
265
|
class ServiceAccount
|
260
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
267
|
|
@@ -707,6 +713,13 @@ module Google
|
|
707
713
|
end
|
708
714
|
end
|
709
715
|
|
716
|
+
class Saml
|
717
|
+
# @private
|
718
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
719
|
+
property :idp_metadata_xml, as: 'idpMetadataXml'
|
720
|
+
end
|
721
|
+
end
|
722
|
+
|
710
723
|
class ServiceAccount
|
711
724
|
# @private
|
712
725
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -864,6 +877,8 @@ module Google
|
|
864
877
|
property :name, as: 'name'
|
865
878
|
property :oidc, as: 'oidc', class: Google::Apis::IamV1::Oidc, decorator: Google::Apis::IamV1::Oidc::Representation
|
866
879
|
|
880
|
+
property :saml, as: 'saml', class: Google::Apis::IamV1::Saml, decorator: Google::Apis::IamV1::Saml::Representation
|
881
|
+
|
867
882
|
property :state, as: 'state'
|
868
883
|
end
|
869
884
|
end
|
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.26.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: 2022-
|
11
|
+
date: 2022-05-02 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.26.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: []
|