Set blessingsedit

Set blessings for a role.

Requestedit

PUT /api/v1/platform/infrastructure/blueprinter/roles/{blueprinter_role_id}/blessings

Path parametersedit

Name Type Required Description

blueprinter_role_id

string

Y

User-specified Blueprinter role ID.

Query parametersedit

Name Type Required Description

version

integer

N

When specified, checks for conflicts against the version stored in the persistent store (returned in 'x-cloud-resource-version' of the GET request)

Request bodyedit

(Blessings) (required) The blessings to set.

Responsesedit

200

(RoleAggregate) The blessings were successfully set.

404

(BasicFailedReply) The role can't be found. (code: roles.not_found)

409

(BasicFailedReply) Your request failed because the specified version does not match the persisted version. (code: roles.version_conflict)

To perform this operation, you must be authenticated by means of one of the following methods: apiKey, basicAuth.

Request exampleedit

curl -XPUT {{hostname}}/api/v1/platform/infrastructure/blueprinter/roles/{blueprinter_role_id}/blessings \
-u $CLOUD_USER:$CLOUD_KEY \
-H 'Content-Type: application/json' \
-d '
{
   "runner_ids_to_blessing" : {
      "some_property" : {
         "value" : true
      }
   }
}
'