Sha256: 482f5c3e1560e9befe8bedfdeab85e171895d4c4861893e9af0572284673040b

Contents?: true

Size: 1.84 KB

Versions: 3

Compression:

Stored size: 1.84 KB

Contents

# encoding: utf-8
# Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.

module Azure::ARM::Storage
  module Models
    #
    # Model object.
    #
    class StorageAccountRegenerateKeyParameters

      include MsRestAzure

      # @return [KeyName] Possible values for this property include: 'key1',
      # 'key2'.
      attr_accessor :key_name

      #
      # Validate the object. Throws ValidationError if validation fails.
      #
      def validate
      end

      #
      # Serializes given Model object into Ruby Hash.
      # @param object Model object to serialize.
      # @return [Hash] Serialized object in form of Ruby Hash.
      #
      def self.serialize_object(object)
        object.validate
        output_object = {}

        serialized_property = object.key_name
        output_object['keyName'] = serialized_property unless serialized_property.nil?

        output_object
      end

      #
      # Deserializes given Ruby Hash into Model object.
      # @param object [Hash] Ruby Hash object to deserialize.
      # @return [StorageAccountRegenerateKeyParameters] Deserialized object.
      #
      def self.deserialize_object(object)
        return if object.nil?
        output_object = StorageAccountRegenerateKeyParameters.new

        deserialized_property = object['keyName']
        if (!deserialized_property.nil? && !deserialized_property.empty?)
          enum_is_valid = KeyName.constants.any? { |e| KeyName.const_get(e).to_s.downcase == deserialized_property.downcase }
          fail MsRest::DeserializationError.new('Error occured while deserializing the enum', nil, nil, nil) unless enum_is_valid
        end
        output_object.key_name = deserialized_property

        output_object.validate

        output_object
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
azure_mgmt_storage-0.1.2 lib/azure_mgmt_storage/models/storage_account_regenerate_key_parameters.rb
azure_mgmt_storage-0.1.1 lib/azure_mgmt_storage/models/storage_account_regenerate_key_parameters.rb
azure_mgmt_storage-0.1.0 lib/azure_mgmt_storage/models/storage_account_regenerate_key_parameters.rb