メインコンテンツまでスキップ

Update cloud storage

PUT 

https://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

    id stringrequired

    Required. The resource identifier of cloud storage.

Header Parameters

    x-bv-org-id stringrequired

    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.

Body

required
    cloud_storage objectrequired
    name stringrequired

    Required. The display name of cloud storage.

    type string

    Possible values: [CLOUD_STORAGE_TYPE_AWS]

    Immutable. The type of cloud storage.

    aws_storage object
    bucket_name stringrequired

    Required. AWS name of s3 bucket.

    path stringrequired

    Required. AWS path of s3 bucket.

    region stringrequired

    Required. AWS region of s3 bucket.

    user_role_arn stringrequired

    Required. The user AWS role arn.

    external_id stringrequired

    Required. AWS external id for policy. You need to get external id from GetTrustPolicyInfo API.

Responses

A successful response.

Schema

    object

Authorization: authorization

name: authorizationtype: apiKeydescription: Enter the token with Bearer schema prefix, eg. `Bearer <token-string>`in: header
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"
}
}'
Request Collapse all
Base URL
https://api.one.blendvision.com
Auth
Parameters
— pathrequired
— headerrequired
Body required
{
"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"
}
}
ResponseClear

Click the Send API Request button above and see the response here!