AzureFileCopy@2 - Azure 文件复制 v2 任务

将文件复制到 Azure Blob 存储或虚拟机。

此任务已弃用,因为此版本的 AzureFileCopy 任务使用的是 AzCopy 的已停用版本。 使用最新版本的 AzureFileCopy 任务。 请参阅 azCopy 迁移指南,了解 v8 到 v10

注释

此任务不支持使用工作流标识联合身份验证 Azure 资源管理器身份验证。

将文件复制到 Azure Blob 存储或虚拟机。

注释

此任务不支持使用工作流标识联合身份验证 Azure 资源管理器身份验证。

语法

# Azure file copy v2
# Copy files to Azure Blob Storage or virtual machines.
- task: AzureFileCopy@2
  inputs:
    SourcePath: # string. Required. Source. 
    #azureConnectionType: 'ConnectedServiceNameARM' # 'ConnectedServiceName' | 'ConnectedServiceNameARM'. Alias: ConnectedServiceNameSelector. Azure Connection Type. Default: ConnectedServiceNameARM.
    #azureClassicSubscription: # string. Alias: ConnectedServiceName. Required when ConnectedServiceNameSelector = ConnectedServiceName. Azure Classic Subscription. 
    azureSubscription: # string. Alias: ConnectedServiceNameARM. Required when ConnectedServiceNameSelector = ConnectedServiceNameARM. Azure Subscription. 
    Destination: # 'AzureBlob' | 'AzureVMs'. Required. Destination Type. 
    #classicStorage: # string. Alias: StorageAccount. Required when ConnectedServiceNameSelector = ConnectedServiceName. Classic Storage Account. 
    storage: # string. Alias: StorageAccountRM. Required when ConnectedServiceNameSelector = ConnectedServiceNameARM. RM Storage Account. 
    #ContainerName: # string. Required when Destination = AzureBlob. Container Name. 
    #BlobPrefix: # string. Optional. Use when Destination = AzureBlob. Blob Prefix. 
    #cloudService: # string. Alias: EnvironmentName. Required when ConnectedServiceNameSelector = ConnectedServiceName && Destination = AzureVMs. Cloud Service. 
    #resourceGroup: # string. Alias: EnvironmentNameRM. Required when ConnectedServiceNameSelector = ConnectedServiceNameARM && Destination = AzureVMs. Resource Group. 
    #ResourceFilteringMethod: 'machineNames' # 'machineNames' | 'tags'. Optional. Use when Destination = AzureVMs. Select Machines By. Default: machineNames.
    #MachineNames: # string. Optional. Use when Destination = AzureVMs. Filter Criteria. 
    #vmsAdminUserName: # string. Required when Destination = AzureVMs. Admin Login. 
    #vmsAdminPassword: # string. Required when Destination = AzureVMs. Password. 
    #TargetPath: # string. Required when Destination = AzureVMs. Destination Folder. 
    #AdditionalArgumentsForBlobCopy: # string. Optional Arguments (for uploading files to blob). 
    #AdditionalArgumentsForVMCopy: # string. Optional. Use when Destination = AzureVMs. Optional Arguments (for downloading files to VM). 
    #enableCopyPrerequisites: false # boolean. Optional. Use when ConnectedServiceNameSelector = ConnectedServiceNameARM && Destination = AzureVMs. Enable Copy Prerequisites. Default: false.
    #CopyFilesInParallel: true # boolean. Optional. Use when Destination = AzureVMs. Copy in Parallel. Default: true.
    #CleanTargetBeforeCopy: false # boolean. Optional. Use when Destination = AzureVMs. Clean Target. Default: false.
    #skipCACheck: true # boolean. Optional. Use when Destination = AzureVMs. Test Certificate. Default: true.
  # Output
    #outputStorageUri: # string. Storage Container URI. 
    #outputStorageContainerSasToken: # string. Storage Container SAS Token.

输入

SourcePath -
string。 必填。

指定源文件夹、本地计算机上的文件或 UNC 共享的绝对路径。 指定的值或表达式应返回单个文件夹名称或文件名。


azureConnectionType - Azure 连接类型
输入别名:ConnectedServiceNameSelectorstring。 允许的值:ConnectedServiceName(Azure 经典版)、ConnectedServiceNameARM(Azure 资源管理器)。 默认值:ConnectedServiceNameARM

指定 Azure 连接类型。


azureClassicSubscription - Azure 经典订阅
输入别名:ConnectedServiceNamestringConnectedServiceNameSelector = ConnectedServiceName时是必需的。

指定目标 Azure 经典订阅。


azureSubscription - Azure 订阅
输入别名:ConnectedServiceNameARMstringConnectedServiceNameSelector = ConnectedServiceNameARM时是必需的。

指定目标 Azure 资源管理器订阅。


Destination - 目标类型
string。 必填。 允许的值:AzureBlob(Azure Blob)、AzureVMs(Azure VM)。

指定要用于复制文件的目标类型。


classicStorage - 经典存储帐户
输入别名:StorageAccountstringConnectedServiceNameSelector = ConnectedServiceName时是必需的。

指定预先存在的经典存储帐户。 这是用作将文件复制到 Azure VM 的中介的存储帐户。


storage - RM 存储帐户
输入别名:StorageAccountRMstringConnectedServiceNameSelector = ConnectedServiceNameARM时是必需的。

指定预先存在的 ARM 存储帐户。 这是用作将文件复制到 Azure VM 的中介的存储帐户。


ContainerName - 容器名称
stringDestination = AzureBlob时是必需的。

指定将文件复制到其中的容器的名称。 如果存储帐户中不存在指定的容器,则会创建它。

若要在容器中创建虚拟目录,请使用 Blob 前缀输入。 例如,对于目标位置 https://myaccount.blob.core.windows.net/mycontainer/vd1/vd2/,请指定容器名称 mycontainer 和 Blob 前缀 vd1/vd2


BlobPrefix - Blob 前缀
string。 可选。 当 Destination = AzureBlob时使用。

指定可用于筛选文件的前缀。

示例:可以追加生成号,以筛选具有相同内部版本号的所有 Blob 中的文件。

示例:如果指定 blob 前缀 myvd1,则会在容器中创建虚拟目录。 文件从源复制到 https://myaccount.blob.core.windows.net/mycontainer/myvd1/


cloudService - 云服务
输入别名:EnvironmentNamestringConnectedServiceNameSelector = ConnectedServiceName && Destination = AzureVMs时是必需的。

指定目标云服务的名称。


resourceGroup - 资源组
输入别名:EnvironmentNameRMstringConnectedServiceNameSelector = ConnectedServiceNameARM && Destination = AzureVMs时是必需的。

指定目标资源组的名称。


ResourceFilteringMethod - 选择计算机
string。 可选。 当 Destination = AzureVMs时使用。 允许的值:machineNames(计算机名称),tags。 默认值:machineNames

指定标识资源组中 VM 子集的 VM 主机名或标记。 仅 Azure 资源管理器创建的资源支持 标记


MachineNames - 筛选条件
string。 可选。 当 Destination = AzureVMs时使用。

提供 Azure VM 主机名的列表,例如 ffwebffdb或标记(如 Role:DBWebOS:Win8.1)。

注意:标记的有效分隔符包括,(逗号)、:(号)和;(emicolon)。 提供多个标记时,该任务将在包含指定标记的所有 VM 中运行。 默认情况下,任务在所有 VM 中运行。


vmsAdminUserName - 管理员登录
stringDestination = AzureVMs时是必需的。

提供 Azure VM 管理员帐户的用户名。


vmsAdminPassword - 密码
stringDestination = AzureVMs时是必需的。

提供 Azure VM 管理员帐户的密码。

有效输入包括生成或发布管道中定义的变量,例如 $(passwordVariable)。 若要保护密码,请将其标记为 secret


TargetPath - 目标文件夹
stringDestination = AzureVMs时是必需的。

指定目标 VM 上的本地路径。

有效输入包括环境变量,如 $env:windir\BudgetIT\Web


AdditionalArgumentsForBlobCopy - 可选参数(用于将文件上传到 blob)
string

为上传到 Blob(如 /NC:10)时可以应用的 AzCopy.exe 提供其他参数。

如果未指定可选参数,则默认添加以下参数。

  • /Y
  • /SetContentType
  • /Z
  • /V
  • /S - 未 $root容器名称时添加。
  • /BlobType:page - 当指定的存储帐户是高级帐户时添加的。
  • /Pattern - 当源路径为文件时添加。 包含在任何其他指定的可选参数中。

AdditionalArgumentsForVMCopy - 可选参数(用于将文件下载到 VM)
string。 可选。 当 Destination = AzureVMs时使用。

为下载到 VM(如 /NC:10)时可应用的 AzCopy.exe 提供其他参数。

如果未指定可选参数,则默认添加以下内容。

  • /Y
  • /S
  • /Z
  • /V

enableCopyPrerequisites - 启用复制先决条件
boolean。 可选。 当 ConnectedServiceNameSelector = ConnectedServiceNameARM && Destination = AzureVMs时使用。 默认值:false

启用后,使用自签名证书在端口 5986 而不是 HTTPS 协议上配置 Windows 远程管理(WinRM)侦听器。 在 Azure VM 上执行复制作所必需的。 如果目标 VM 使用负载均衡器,请为目标端口(5986)配置入站 NAT 规则。 仅适用于 ARM VM。


并行复制 CopyFilesInParallel -
boolean。 可选。 当 Destination = AzureVMs时使用。 默认值:true

接受默认设置会将文件并行复制到目标 VM。


CleanTargetBeforeCopy - 清理目标
boolean。 可选。 当 Destination = AzureVMs时使用。 默认值:false

将此值设置为 true 在执行复制作之前清理目标文件夹。


skipCACheck - 测试证书
boolean。 可选。 当 Destination = AzureVMs时使用。 默认值:true

在通过 HTTPS 进行连接之前,默认值不会验证服务器证书是否已由受信任的 CA 签名。


outputStorageUri - 存储容器 URI
string

指定用于将文件复制到的存储容器 URI 的变量的名称。 仅当所选目标为 Azure Blob 时有效。


outputStorageContainerSasToken - 存储容器 SAS 令牌
string

指定用于访问已复制文件的存储容器 SAS 令牌的变量的名称。 仅当所选目标为 Azure Blob 时有效。


任务控制选项

除任务输入之外,所有任务都具有控制选项。 有关详细信息,请参阅 控件选项和常见任务属性

输出变量

没有。

注解

版本 2.0 中的新增功能:使用较新版本的 AzCopy。

要求

要求 说明
管道类型 YAML,经典版本,经典版本
运行时间 代理,DeploymentGroup
需求 自承载代理必须具有 功能, 满足以下 要求, 运行使用此任务的作业:
功能 此任务不满足作业中后续任务的任何要求。
命令限制 任何
Settable 变量 任何
代理版本 1.103.0 或更高版本
任务类别 部署