Class SMTPDelivery
SMTPDelivery is the delivery configuration for an SMTP (email) notification.
Inheritance
System.Object
SMTPDelivery
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudBuild.v1alpha2.Data
Assembly: Google.Apis.CloudBuild.v1alpha2.dll
Syntax
public class SMTPDelivery : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FromAddress
This is the SMTP account/email that appears in the From:
of the email. If empty, it is assumed to be
sender.
Declaration
[JsonProperty("fromAddress")]
public virtual string FromAddress { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Password
The SMTP sender's password.
Declaration
[JsonProperty("password")]
public virtual NotifierSecretRef Password { get; set; }
Property Value
Type | Description |
---|---|
NotifierSecretRef |
Port
The SMTP port of the server.
Declaration
[JsonProperty("port")]
public virtual string Port { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RecipientAddresses
This is the list of addresses to which we send the email (i.e. in the To:
of the email).
Declaration
[JsonProperty("recipientAddresses")]
public virtual IList<string> RecipientAddresses { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> |
SenderAddress
This is the SMTP account/email that is used to send the message.
Declaration
[JsonProperty("senderAddress")]
public virtual string SenderAddress { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Server
The address of the SMTP server.
Declaration
[JsonProperty("server")]
public virtual string Server { get; set; }
Property Value
Type | Description |
---|---|
System.String |