class Azure::StorageSync::Mgmt::V2018_04_02::Models::SyncGroupCreateParameters
The parameters used when creating a sync group.
Attributes
location[RW]
@return [String] Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure
Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed.
properties[RW]
@return The parameters used to create the sync group
Public Class Methods
mapper()
click to toggle source
Mapper for SyncGroupCreateParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-04-02/generated/azure_mgmt_storagesync/models/sync_group_create_parameters.rb, line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SyncGroupCreateParameters', type: { name: 'Composite', class_name: 'SyncGroupCreateParameters', model_properties: { location: { client_side_validation: true, required: false, serialized_name: 'location', type: { name: 'String' } }, 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