X509FederationRequest

class oci.identity_data_plane.models.X509FederationRequest(**kwargs)

Bases: object

X509FederationRequest model.

Methods

__init__(**kwargs) Initializes a new X509FederationRequest object with values from keyword arguments.

Attributes

certificate [Required] Gets the certificate of this X509FederationRequest.
intermediate_certificates Gets the intermediate_certificates of this X509FederationRequest.
public_key [Required] Gets the public_key of this X509FederationRequest.
__init__(**kwargs)

Initializes a new X509FederationRequest object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • certificate (str) – The value to assign to the certificate property of this X509FederationRequest.
  • public_key (str) – The value to assign to the public_key property of this X509FederationRequest.
  • intermediate_certificates (list[str]) – The value to assign to the intermediate_certificates property of this X509FederationRequest.
certificate

[Required] Gets the certificate of this X509FederationRequest. The x509 certificate of the service instance, issued by his CA.

Returns:The certificate of this X509FederationRequest.
Return type:str
intermediate_certificates

Gets the intermediate_certificates of this X509FederationRequest. An array of intermediate certificates to form the chain from the leaf certificate to the root CA. If auth service already has the intermediate certificate(s), then this is not required.

Returns:The intermediate_certificates of this X509FederationRequest.
Return type:list[str]
public_key

[Required] Gets the public_key of this X509FederationRequest. A temporary public key, owned by the service. The service also owns the corresponding private key. This public key will be put inside the security token by the auth service after successful validation of the certificate.

Returns:The public_key of this X509FederationRequest.
Return type:str