Class: Azure::ARM::Scheduler::Models::ServiceBusAuthentication

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

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#sas_keyString



16
17
18
# File 'lib/azure_mgmt_scheduler/models/service_bus_authentication.rb', line 16

def sas_key
  @sas_key
end

#sas_key_nameString



19
20
21
# File 'lib/azure_mgmt_scheduler/models/service_bus_authentication.rb', line 19

def sas_key_name
  @sas_key_name
end

#typeServiceBusAuthenticationType

type. Possible values include: ‘NotSpecified’, ‘SharedAccessKey’



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

def type
  @type
end

Class Method Details

.deserialize_object(object) ⇒ ServiceBusAuthentication

Deserializes given Ruby Hash into Model object.



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/azure_mgmt_scheduler/models/service_bus_authentication.rb', line 57

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

  deserialized_property = object['sasKey']
  output_object.sas_key = deserialized_property

  deserialized_property = object['sasKeyName']
  output_object.sas_key_name = deserialized_property

  deserialized_property = object['type']
  if (!deserialized_property.nil? && !deserialized_property.empty?)
    enum_is_valid = ServiceBusAuthenticationType.constants.any? { |e| ServiceBusAuthenticationType.const_get(e).to_s.downcase == deserialized_property.downcase }
    warn 'Enum ServiceBusAuthenticationType 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.



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/azure_mgmt_scheduler/models/service_bus_authentication.rb', line 36

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

  serialized_property = object.sas_key
  output_object['sasKey'] = serialized_property unless serialized_property.nil?

  serialized_property = object.sas_key_name
  output_object['sasKeyName'] = serialized_property unless serialized_property.nil?

  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.



28
29
# File 'lib/azure_mgmt_scheduler/models/service_bus_authentication.rb', line 28

def validate
end