Show / Hide Table of Contents

Class SmtpCredentialSummary

As the name suggests, an SmtpCredentialSummary object contains information about an SmtpCredential. The SMTP credential is used for SMTP authentication with the Email Delivery Service.

Inheritance
System.Object
SmtpCredentialSummary
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class SmtpCredentialSummary : object

Properties

Description

Declaration
public string Description { get; set; }
Property Value
Type Description
System.String

The description you assign to the SMTP credential. Does not have to be unique, and it's changeable.
(For tenancies that support identity domains) You can have an empty description.

Id

Declaration
public string Id { get; set; }
Property Value
Type Description
System.String

The OCID of the SMTP credential.

InactiveStatus

Declaration
public System.Nullable<long> InactiveStatus { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

The detailed status of INACTIVE lifecycleState.

LifecycleState

Declaration
public System.Nullable<SmtpCredentialSummary.LifecycleStateEnum> LifecycleState { get; set; }
Property Value
Type Description
System.Nullable<SmtpCredentialSummary.LifecycleStateEnum>

The credential's current state. After creating a SMTP credential, make sure its lifecycleState changes from CREATING to ACTIVE before using it.

TimeCreated

Declaration
public System.Nullable<System.DateTime> TimeCreated { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

Date and time the SmtpCredential object was created, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

TimeExpires

Declaration
public System.Nullable<System.DateTime> TimeExpires { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

Date and time when this credential will expire, in the format defined by RFC3339. Null if it never expires.
Example: 2016-08-25T21:10:29.600Z

UserId

Declaration
public string UserId { get; set; }
Property Value
Type Description
System.String

The OCID of the user the SMTP credential belongs to.

Username

Declaration
public string Username { get; set; }
Property Value
Type Description
System.String

The SMTP user name.

In This Article
Back to top