Class: Azure::Web::Mgmt::V2016_08_01::Models::StorageMigrationOptions
- Inherits:
-
ProxyOnlyResource
- Object
- ProxyOnlyResource
- Azure::Web::Mgmt::V2016_08_01::Models::StorageMigrationOptions
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-08-01/generated/azure_mgmt_web/models/storage_migration_options.rb
Overview
Options for app content migration.
Instance Attribute Summary collapse
-
#azurefiles_connection_string ⇒ String
AzureFiles connection string.
-
#azurefiles_share ⇒ String
AzureFiles share.
-
#block_write_access_to_site ⇒ Boolean
during copy operation; otherwise,
false. -
#switch_site_after_migration ⇒ Boolean
otherwise,
false.
Attributes inherited from ProxyOnlyResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for StorageMigrationOptions class as Ruby Hash.
Instance Attribute Details
#azurefiles_connection_string ⇒ String
Returns AzureFiles connection string.
16 17 18 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/storage_migration_options.rb', line 16 def azurefiles_connection_string @azurefiles_connection_string end |
#azurefiles_share ⇒ String
Returns AzureFiles share.
19 20 21 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/storage_migration_options.rb', line 19 def azurefiles_share @azurefiles_share end |
#block_write_access_to_site ⇒ Boolean
during copy operation; otherwise, false. Default value: false .
28 29 30 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/storage_migration_options.rb', line 28 def block_write_access_to_site @block_write_access_to_site end |
#switch_site_after_migration ⇒ Boolean
otherwise, false. Default value: false .
23 24 25 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/storage_migration_options.rb', line 23 def switch_site_after_migration @switch_site_after_migration end |
Class Method Details
.mapper ⇒ Object
Mapper for StorageMigrationOptions class as Ruby Hash. This will be used for serialization/deserialization.
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/2016-08-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 |