class Azure::ServiceFabric::V6_4_0_36::Models::ImageStoreCopyDescription
Information about how to copy image store content from one image store relative path to another image store relative path.
Attributes
@return [Boolean] Indicates whether to check mark file during copying. The property is true if checking mark file is required, false otherwise. The mark file is used to check whether the folder is well constructed. If the property is true and mark file does not exist, the copy is skipped.
@return [String] The relative path of destination image store content to be copied to.
@return [String] The relative path of source image store content to be copied from.
@return [Array<String>] The list of the file names to be skipped for copying.
Public Class Methods
Mapper for ImageStoreCopyDescription
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.4.0.36/generated/azure_service_fabric/models/image_store_copy_description.rb, line 40 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ImageStoreCopyDescription', type: { name: 'Composite', class_name: 'ImageStoreCopyDescription', model_properties: { remote_source: { client_side_validation: true, required: true, serialized_name: 'RemoteSource', type: { name: 'String' } }, remote_destination: { client_side_validation: true, required: true, serialized_name: 'RemoteDestination', type: { name: 'String' } }, skip_files: { client_side_validation: true, required: false, serialized_name: 'SkipFiles', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, check_mark_file: { client_side_validation: true, required: false, serialized_name: 'CheckMarkFile', type: { name: 'Boolean' } } } } } end