class Azure::Compute::Mgmt::V2020_06_01::Models::SecurityProfile

Specifies the Security profile settings for the virtual machine or virtual machine scale set.

Attributes

encryption_at_host[RW]

@return [Boolean] This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself.
Default: The Encryption at host will be disabled unless this property is set to true for the resource.

Public Class Methods

mapper() click to toggle source

Mapper for SecurityProfile class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2020-06-01/generated/azure_mgmt_compute/models/security_profile.rb, line 29
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'SecurityProfile',
    type: {
      name: 'Composite',
      class_name: 'SecurityProfile',
      model_properties: {
        encryption_at_host: {
          client_side_validation: true,
          required: false,
          serialized_name: 'encryptionAtHost',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end