class Azure::Web::Mgmt::V2018_02_01::Models::StorageMigrationOptions
Options for app content migration.
Attributes
azurefiles_connection_string[RW]
@return [String] AzureFiles connection string.
block_write_access_to_site[RW]
@return [Boolean] true
if the app should be read only during copy operation; otherwise, false
. Default value: false .
switch_site_after_migration[RW]
@return [Boolean] true
if the app should be switched over; otherwise, false
. Default value: false .
Private Class Methods
mapper()
click to toggle source
Mapper for StorageMigrationOptions
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-02-01/generated/azure_mgmt_web/models/storage_migration_options.rb, line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'StorageMigrationOptions', type: { name: 'Composite', class_name: 'StorageMigrationOptions', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, kind: { client_side_validation: true, required: false, serialized_name: 'kind', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, azurefiles_connection_string: { client_side_validation: true, required: false, serialized_name: 'properties.azurefilesConnectionString', type: { name: 'String' } }, azurefiles_share: { client_side_validation: true, required: false, serialized_name: 'properties.azurefilesShare', type: { name: 'String' } }, switch_site_after_migration: { client_side_validation: true, required: false, serialized_name: 'properties.switchSiteAfterMigration', default_value: false, type: { name: 'Boolean' } }, block_write_access_to_site: { client_side_validation: true, required: false, serialized_name: 'properties.blockWriteAccessToSite', default_value: false, type: { name: 'Boolean' } } } } } end