Class: Google::Apis::IamV1::Saml
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::Saml
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/iam_v1/classes.rb,
lib/google/apis/iam_v1/representations.rb,
lib/google/apis/iam_v1/representations.rb
Overview
Represents an SAML 2.0 identity provider.
Instance Attribute Summary collapse
-
#idp_metadata_xml ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Saml
constructor
A new instance of Saml.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Saml
Returns a new instance of Saml.
2166 2167 2168 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2166 def initialize(**args) update!(**args) end |
Instance Attribute Details
#idp_metadata_xml ⇒ String
Required. SAML identity provider (IdP) configuration metadata XML doc. The XML document must comply with the SAML 2.0 specification. The maximum size of an acceptable XML document is 128K characters. The SAML metadata XML document must satisfy the following constraints: * Must contain an IdP Entity ID. * Must contain at least one non-expired signing certificate. * For each signing certificate, the expiration must be: * From no more than 7 days in the future.
- To no more than 20 years in the future. * Up to three IdP signing keys are
allowed. When updating the provider's metadata XML, at least one non-expired
signing key must overlap with the existing metadata. This requirement is
skipped if there are no non-expired signing keys present in the existing
metadata.
Corresponds to the JSON property
idpMetadataXml
2164 2165 2166 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2164 def @idp_metadata_xml end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2171 2172 2173 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2171 def update!(**args) @idp_metadata_xml = args[:idp_metadata_xml] if args.key?(:idp_metadata_xml) end |