Update cloud storage
PUThttps://api.one.blendvision.com/bv/configurations/v1/cloud-storages/:id
Modifies the details of the existing CloudStorage
resource.
Notice: The /bv/configurations/v1/cloud-storages/{id}
will be deprecated soon.
Please use /bv/configuration/v1/cloud-storages/{id}
instead.
Request
Path Parameters
Required. The resource identifier of cloud storage.
Header Parameters
To invoke this API using api_token
, you need to set the x-bv-org-id
header to specify the organization for which you want to perform the action.
- application/json
Body
required
cloud_storage objectrequired
Responses
- 200
- 400
- 401
- 403
- 500
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
object
{}
A bad request response.
The code
is 3
means got an invalid argument. There are more HTTP status code mappings listed on here and gRPC code on here.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A unauthenticated response.
The header authorization
was missing or unidentified.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A forbidden response.
It means that the provided authorization
did not have enough permission to access the resource or the API.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A server error response. There are more HTTP status code mappings listed on here.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
Authorization: authorization
name: authorizationtype: apiKeydescription: Enter the token with Bearer schema prefix, eg. `Bearer <token-string>`in: header
- curl
- python
- go
- nodejs
- php
- CURL
curl -L -X PUT 'https://api.one.blendvision.com/bv/configurations/v1/cloud-storages/:id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'authorization: <API_KEY_VALUE>' \
-d '{
"cloud_storage": {
"aws_storage": {
"bucket_name": "blendvision-one-assume-role-source1",
"external_id": "79e1c174-c1c0-4531-82d1-a9ea4373b727",
"path": "blendvision-one",
"region": "eu-west-1",
"user_role_arn": "arn:aws:iam::038528481894:role/blendvision-one-assume-role"
},
"name": "blendvision-one-cloud-storage",
"type": "CLOUD_STORAGE_TYPE_AWS"
}
}'