REST Resource: inboundSamlSsoProfiles.idpCredentials

Resource: IdpCredential

Credential for verifying signatures produced by the Identity Provider.

JSON representation
{
  "name": string,
  "updateTime": string,

  // Union field key_info can be only one of the following:
  "rsaKeyInfo": {
    object (RsaPublicKeyInfo)
  },
  "dsaKeyInfo": {
    object (DsaPublicKeyInfo)
  }
  // End of list of possible types for union field key_info.
}
Fields
name

string

Output only. Resource name of the credential.

updateTime

string (Timestamp format)

Output only. Time when the IdpCredential was last updated.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

Union field key_info. Information about the key in the credential, such as its algorithm, key size, etc. key_info can be only one of the following:
rsaKeyInfo

object (RsaPublicKeyInfo)

Output only. Information of a RSA public key.

dsaKeyInfo

object (DsaPublicKeyInfo)

Output only. Information of a DSA public key.

RsaPublicKeyInfo

Information of a RSA public key.

JSON representation
{
  "keySize": integer
}
Fields
keySize

integer

Key size in bits (size of the modulus).

DsaPublicKeyInfo

Information of a DSA public key.

JSON representation
{
  "keySize": integer
}
Fields
keySize

integer

Key size in bits (size of parameter P).

Methods

add

Adds an IdpCredential.

delete

Deletes an IdpCredential.

get

Gets an IdpCredential.

list

Returns a list of IdpCredentials in an InboundSamlSsoProfile.