克隆快照 API
编辑克隆快照 API编辑
将快照的部分或全部克隆到新的快照中。
response = client.snapshot.clone( repository: 'my_repository', snapshot: 'source_snapshot', target_snapshot: 'target_snapshot', body: { indices: 'index_a,index_b' } ) puts 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>
- (必填,字符串)源快照和目标快照所属的快照存储库的名称。