Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 2.48 KB

File metadata and controls

36 lines (30 loc) · 2.48 KB

IntersightClient::SmtpPolicy

Properties

Name Type Description Notes
class_id String The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. [default to 'smtp.Policy']
object_type String The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. [default to 'smtp.Policy']
enabled Boolean If enabled, controls the state of the SMTP client service on the managed device. [optional][default to true]
min_severity String Minimum fault severity level to receive email notifications. Email notifications are sent for all faults whose severity is equal to or greater than the chosen level. * `critical` - Minimum severity to report is critical. * `condition` - Minimum severity to report is informational. * `warning` - Minimum severity to report is warning. * `minor` - Minimum severity to report is minor. * `major` - Minimum severity to report is major. [optional][default to 'critical']
sender_email String The email address entered here will be displayed as the from address (mail received from address) of all the SMTP mail alerts that are received. If not configured, the hostname of the server is used in the from address field. [optional]
smtp_port Integer Port number used by the SMTP server for outgoing SMTP communication. [optional][default to 25]
smtp_recipients Array<String> [optional]
smtp_server String IP address or hostname of the SMTP server. The SMTP server is used by the managed device to send email notifications. [optional]
organization OrganizationOrganizationRelationship [optional]
profiles Array<PolicyAbstractConfigProfileRelationship> An array of relationships to policyAbstractConfigProfile resources. [optional]

Example

require 'intersight_client'

instance = IntersightClient::SmtpPolicy.new(
  class_id: null,
  object_type: null,
  enabled: null,
  min_severity: null,
  sender_email: null,
  smtp_port: null,
  smtp_recipients: null,
  smtp_server: null,
  organization: null,
  profiles: null
)