Set snapshot repositoryedit

Creates or updates the snapshot repository configuration.

Requestedit

PUT /api/v1/platform/configuration/snapshots/repositories/{repository_name}

Path parametersedit

Name Type Required Description

repository_name

string

Y

The name of the snapshot repository configuration.

Query parametersedit

Name Type Required Description

version

integer

N

Checks for conflicts against the metadata version, then returns the value in the x-cloud-resource-version header.

Request bodyedit

(SnapshotRepositoryConfiguration) (required) The Elasticsearch snapshot repository configuration

Responsesedit

200

(RepositoryConfig)

New snapshot repository config

449

(BasicFailedReply)

elevated permissions are required. (code: '"root.unauthorized.rbac.elevated_permissions_required"')

Request exampleedit

curl -XPUT https://{{hostname}}/api/v1/platform/configuration/snapshots/repositories/{repository_name} \
-H "Authorization: ApiKey $ECE_API_KEY" \
-d '
{
   "settings" : {},
   "type" : "string"
}
'