class Azure::StorageSync::Mgmt::V2018_07_01::Models::StorageSyncServiceUpdateParameters

Parameters for updating an Storage sync service.

Attributes

properties[RW]

@return The properties of the storage sync service.

tags[RW]

@return [Hash{String => String}] The user-specified tags associated with the storage sync service.

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-07-01/generated/azure_mgmt_storagesync/models/storage_sync_service_update_parameters.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'StorageSyncServiceUpdateParameters',
    type: {
      name: 'Composite',
      class_name: 'StorageSyncServiceUpdateParameters',
      model_properties: {
        tags: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties',
          type: {
            name: 'Object'
          }
        }
      }
    }
  }
end