Class: Azure::ARM::Scheduler::Models::HttpAuthentication

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_scheduler/models/http_authentication.rb

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#typeHttpAuthenticationType

type. Possible values include: ‘NotSpecified’, ‘ClientCertificate’, ‘ActiveDirectoryOAuth’, ‘Basic’

Returns:



18
19
20
# File 'lib/azure_mgmt_scheduler/models/http_authentication.rb', line 18

def type
  @type
end

Class Method Details

.deserialize_object(object) ⇒ HttpAuthentication

Deserializes given Ruby Hash into Model object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/azure_mgmt_scheduler/models/http_authentication.rb', line 46

def self.deserialize_object(object)
  return if object.nil?
  output_object = HttpAuthentication.new

  deserialized_property = object['type']
  if (!deserialized_property.nil? && !deserialized_property.empty?)
    enum_is_valid = HttpAuthenticationType.constants.any? { |e| HttpAuthenticationType.const_get(e).to_s.downcase == deserialized_property.downcase }
    warn 'Enum HttpAuthenticationType does not contain ' + deserialized_property.downcase + ', but was received from the server.' unless enum_is_valid
  end
  output_object.type = deserialized_property

  output_object
end

.serialize_object(object) ⇒ Hash

Serializes given Model object into Ruby Hash.

Parameters:

  • object

    Model object to serialize.

Returns:

  • (Hash)

    Serialized object in form of Ruby Hash.



31
32
33
34
35
36
37
38
39
# File 'lib/azure_mgmt_scheduler/models/http_authentication.rb', line 31

def self.serialize_object(object)
  object.validate
  output_object = {}

  serialized_property = object.type
  output_object['type'] = serialized_property unless serialized_property.nil?

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



23
24
# File 'lib/azure_mgmt_scheduler/models/http_authentication.rb', line 23

def validate
end