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.

Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".

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.