Class: Google::Apis::GmailV1::SmtpMsa

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/gmail_v1/classes.rb,
generated/google/apis/gmail_v1/representations.rb,
generated/google/apis/gmail_v1/representations.rb

Overview

Configuration for communication with an SMTP service.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SmtpMsa

Returns a new instance of SmtpMsa.



1161
1162
1163
# File 'generated/google/apis/gmail_v1/classes.rb', line 1161

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#hostString

The hostname of the SMTP service. Required. Corresponds to the JSON property host

Returns:

  • (String)


1134
1135
1136
# File 'generated/google/apis/gmail_v1/classes.rb', line 1134

def host
  @host
end

#passwordString

The password that will be used for authentication with the SMTP service. This is a write-only field that can be specified in requests to create or update SendAs settings; it is never populated in responses. Corresponds to the JSON property password

Returns:

  • (String)


1141
1142
1143
# File 'generated/google/apis/gmail_v1/classes.rb', line 1141

def password
  @password
end

#portFixnum

The port of the SMTP service. Required. Corresponds to the JSON property port

Returns:

  • (Fixnum)


1146
1147
1148
# File 'generated/google/apis/gmail_v1/classes.rb', line 1146

def port
  @port
end

#security_modeString

The protocol that will be used to secure communication with the SMTP service. Required. Corresponds to the JSON property securityMode

Returns:

  • (String)


1152
1153
1154
# File 'generated/google/apis/gmail_v1/classes.rb', line 1152

def security_mode
  @security_mode
end

#usernameString

The username that will be used for authentication with the SMTP service. This is a write-only field that can be specified in requests to create or update SendAs settings; it is never populated in responses. Corresponds to the JSON property username

Returns:

  • (String)


1159
1160
1161
# File 'generated/google/apis/gmail_v1/classes.rb', line 1159

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1166
1167
1168
1169
1170
1171
1172
# File 'generated/google/apis/gmail_v1/classes.rb', line 1166

def update!(**args)
  @host = args[:host] if args.key?(:host)
  @password = args[:password] if args.key?(:password)
  @port = args[:port] if args.key?(:port)
  @security_mode = args[:security_mode] if args.key?(:security_mode)
  @username = args[:username] if args.key?(:username)
end