Skip to main content

Patch AwsCredentials

PATCH 

https://api.orange.com/evolutionplatform/aws/api/v1//projects/:projectId/aws/credentials/:id

This operation allows to patch an AwsCredentials

Request

Path Parameters

    id uuidrequired

    Possible values: Value must match regular expression [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}

    credentials Id

    projectId uuidrequired

    Possible values: Value must match regular expression [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}

    project Id

Body

AwsCredentials to patch

    namestring

    aws credentials name

    descriptionstring

    aws credentials description

    apiKeystring

    api key on aws

    secretKeystring

    secret key on aws

    expirationDatedate

    expiration date of the aws credentials

    Example: 2022-03-10

Responses

ok

Schema
    iduuid

    aws credentials id

    Possible values: Value must match regular expression [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}

    namestring

    aws credentials name

    cspstring

    csp of the credentials

    descriptionstring

    aws credentials description

    projectIduuid

    id of the project associated to the aws credentials

    Possible values: Value must match regular expression [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}

    expirationDatedate

    expiration date of the aws credentials

    Example: 2022-03-10

Authorization: http

name: SecuritySchemetype: httpdescription: Authenticationscheme: bearerbearerFormat: JWT
curl -L -X PATCH 'https://api.orange.com/evolutionplatform/aws/api/v1//projects/:projectId/aws/credentials/:id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>' \
-d '{
"name": "string",
"description": "string",
"apiKey": "string",
"secretKey": "string",
"expirationDate": "2022-03-10"
}'
Request Collapse all
Base URL
https://api.orange.com/evolutionplatform/aws/api/v1/
Auth
Parameters
— pathrequired
— pathrequired
Body
{
  "name": "string",
  "description": "string",
  "apiKey": "string",
  "secretKey": "string",
  "expirationDate": "2022-03-10"
}