Resources
Replace Resource
Replaces the resource definition, or creates it if it doesn't exist.
- If some actions are removed or renamed from the resource definition, role and permissions assignments for these actions will be revoked.
put/v2/schema/{proj_id}/{env_id}/resources/{resource_id}
Path parameters
resource_idstring required
Either the unique id of the resource, or the URL-friendly key of the resource (i.e: the "slug").
Either the unique id of the resource, or the URL-friendly key of the resource (i.e: the "slug").
proj_idstring required
Either the unique id of the project, or the URL-friendly key of the project (i.e: the "slug").
Either the unique id of the project, or the URL-friendly key of the project (i.e: the "slug").
env_idstring required
Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the "slug").
Either the unique id of the environment, or the URL-friendly key of the environment (i.e: the "slug").
Request body
Response
Successful Response
Example response
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"organization_id": "7c60d51f-b44e-4682-87d6-449835ea4de6",
"project_id": "405d8375-3514-403b-8c43-83ae74cfe0e9",
"environment_id": "40ef0e48-a11f-4963-a229-e396c9f7e7c4",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"key": "repository",
"name": "Repository",
"urn": "prn:github:scm:repository",
"description": "a git repository stored on github",
"actions": {
"clone": {
"id": "90e21d70-2b1b-42f0-b492-8fd69c1d79d1"
},
"read": {
"id": "2bc27751-6115-43c0-b68c-928cb46e34bc"
},
"push": {
"id": "e06da336-6e03-41d6-a495-40b0d7537b2a"
}
},
"roles": {
"maintainer": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"key": "maintainer",
"name": "Maintainer",
"description": "the maintainer role can read from the repo and push changes",
"permissions": [
"push"
],
"extends": [
"contributor"
],
"resource": "repo",
"granted_to": {
"id": "457c1631-ebb1-49ec-8081-298dd9b13e85",
"users_with_role": [
{
"role": "Admin",
"on_resource": "organization",
"linked_by_relation": "owner",
"role_id": "eb139d88-5823-4236-95d8-218bdbc18b4c",
"resource_id": "21c27e31-adbe-478e-95c3-5dc89303578a",
"relation_id": "816586bb-3733-45b9-ae97-d40507d03664"
}
]
},
"organization_id": "7c60d51f-b44e-4682-87d6-449835ea4de6",
"project_id": "405d8375-3514-403b-8c43-83ae74cfe0e9",
"environment_id": "40ef0e48-a11f-4963-a229-e396c9f7e7c4",
"resource_id": "40ef0e48-a11f-4963-a229-e396c9f7e7dd",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
}
},
"relations": {
"parent": {
"resource_id": "01dc1396-4b1c-4294-889a-e6517d11e835",
"relation_name": "parent",
"resource": "parent-resource"
}
},
"attributes": {
"created": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f11",
"type": "time",
"description": "the time (timestamp) the repository was created"
},
"private": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f22",
"type": "bool",
"description": "whether the repo is private (if false, the repo is public)"
}
}
}Changes
No recorded changes to this endpoint across all 10 revisions of this API.