purestorage.flasharray.purefa_file 模块 – 管理 FlashArray 文件副本
注意
此模块是 purestorage.flasharray 集合(版本 1.32.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了这个集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install purestorage.flasharray
。您需要进一步的要求才能使用此模块,请参阅 要求 了解详细信息。
要在 playbook 中使用它,请指定:purestorage.flasharray.purefa_file
。
purestorage.flasharray 1.22.0 中的新增功能
概要
将 FlashArray 文件从一个文件系统复制到另一个文件系统
要求
执行此模块的主机需要满足以下要求。
python >= 3.3
purestorage >= 1.19
py-pure-client >= 1.26.0
netaddr
requests
pycountry
urllib3
参数
参数 |
注释 |
---|---|
具有管理员权限的用户的 FlashArray API 令牌。 |
|
在调试日志中禁用不安全的证书警告 选项
|
|
FlashArray 管理 IPv4 地址或主机名。 |
|
定义是否覆盖现有的目标文件 选项
|
|
包含要复制的源文件的源管理目录的名称 |
|
要复制的文件名 包含从源管理目录角度来看的完整路径 |
|
包含要复制的源文件的目标管理目录的名称 如果未提供,将使用 source_dir 指定的管理目录 |
|
要复制到的文件名 包含从目标管理目录角度来看的完整路径 如果未提供,文件将被复制到 name 指定的相对路径 |
说明
注意
此模块需要
purestorage
和py-pure-client
Python 库特定模块可能需要额外的 Python 库。
如果未将 fa_url 和 api_token 参数直接传递给模块,则必须设置
PUREFA_URL
和PUREFA_API
环境变量
示例
- name: Copy a file from dir foo to dir bar
purestorage.flasharray.purefa_file:
source_file: "/directory1/file1"
source_dir: "fs1:root"
target_file: "/diff_dir/file1"
target_dir: "fs1:root"
fa_url: 10.10.10.2
api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Copy a file in a direcotry to the same directory with a different name
purestorage.flasharray.purefa_file:
source_file: "/directory1/file1"
source_dir: "fs1:root"
target_file: "/directory_1/file2"
fa_url: 10.10.10.2
api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Copy a file in a direcotry to an existing file with overwrite
purestorage.flasharray.purefa_file:
source_file: "/directory1/file1"
source_dir: "fs1:root"
target_file: "/diff_dir/file1"
target_dir: "fs2:root"
overwrite: true
fa_url: 10.10.10.2
api_token: e31060a7-21fc-e277-6240-25983c6c4592