class Azure::Hanaonazure::Mgmt::V2017_11_03_preview::Models::OSProfile

Specifies the operating system settings for the HANA instance.

Attributes

computer_name[RW]

@return [String] Specifies the host OS name of the HANA instance.

os_type[RW]

@return [String] This property allows you to specify the type of the OS.

ssh_public_key[RW]

@return [String] Specifies the SSH public key used to access the operating system.

version[RW]

@return [String] Specifies version of operating system.

Private Class Methods

mapper() click to toggle source

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

# File lib/2017-11-03-preview/generated/azure_mgmt_hanaonazure/models/osprofile.rb, line 34
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'OSProfile',
    type: {
      name: 'Composite',
      class_name: 'OSProfile',
      model_properties: {
        computer_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'computerName',
          type: {
            name: 'String'
          }
        },
        os_type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'osType',
          type: {
            name: 'String'
          }
        },
        version: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'version',
          type: {
            name: 'String'
          }
        },
        ssh_public_key: {
          client_side_validation: true,
          required: false,
          serialized_name: 'sshPublicKey',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end