克隆快照 API
编辑克隆快照 API
编辑将快照的部分或全部内容克隆到新的快照中。
resp = client.snapshot.clone( repository="my_repository", snapshot="source_snapshot", target_snapshot="target_snapshot", indices="index_a,index_b", ) print(resp)
response = client.snapshot.clone( repository: 'my_repository', snapshot: 'source_snapshot', target_snapshot: 'target_snapshot', body: { indices: 'index_a,index_b' } ) puts response
const response = await client.snapshot.clone({ repository: "my_repository", snapshot: "source_snapshot", target_snapshot: "target_snapshot", indices: "index_a,index_b", }); console.log(response);
PUT /_snapshot/my_repository/source_snapshot/_clone/target_snapshot { "indices": "index_a,index_b" }
请求
编辑PUT /_snapshot/<repository>/<source_snapshot>/_clone/<target_snapshot>
描述
编辑克隆快照 API 允许在同一存储库中创建现有快照的部分或全部副本。
路径参数
编辑-
<repository>
- (必填,字符串) 源快照和目标快照所属的快照存储库的名称。