Branch Group
An Object
Note |
Parent
This Branch Group is contained within a Repository.
Properties
The following properties are available:
Property | Type | Default | Read-Only | Description |
---|---|---|---|---|
_doc | string | No | The primary ID | |
_system | object | No | Metadata maintained by the system |
Methods
The following methods are available:
- Check Permission
- Check Single Authority
- Check multiple Authorities
- Check multiple Permissions
- Create Branch Group
- Delete Branch Group
- Delete Branch Group
- Grant Authority
- Lists Branch Group
- Members
- Queries for Branch Group
- Read ACL
- Read ACL for Principal
- Read Authorities Report
- Read Branch Group
- Revoke Authority
- Starts an export job for this resource
- Starts an import job for this resource
- Update Branch Group
- Update Branch Group
- {branchId}
- {branchId}
Check Permission
Checks whether one or more authorities against the specified branchGroup are granted for a given set of users
POST /repositories/{repositoryId}/branchgroups/{branchGroupId}/permissions/{permissionId}/check
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | |
branchGroupId | true | string | |
permissionId | true | string | |
id | true | string |
Response
{
"$ref": "#/components/schemas/checkPermission"
}
Check Single Authority
Checks whether a single authority is granted against the specified branchGroup for the given user
POST /repositories/{repositoryId}/branchgroups/{branchGroupId}/authorities/{authorityId}/check
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | |
branchGroupId | true | string | |
authorityId | true | string | |
id | true | string |
Response
{
"type": "object",
"description": "Check",
"extends": "status",
"properties": {
"check": {
"type": "boolean"
},
"ok": null
}
}
Check multiple Authorities
Checks whether one or more authorities against the specified branchGroup are granted for a given set of users
POST /repositories/{repositoryId}/branchgroups/authorities/check
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | The ID of the repository |
Response
{
"type": "object",
"description": "Check Multiple Authorities Out",
"properties": {
"checks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"permissionedId": {
"type": "string"
},
"principalId": {
"type": "string"
},
"authorityId": {
"type": "string"
},
"result": {
"type": "boolean"
}
}
}
}
}
}
Check multiple Permissions
Checks whether one or more permissions against the specified branchGroup are granted for a given set of users
POST /repositories/{repositoryId}/branchgroups/permissions/check
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string |
Response
{
"type": "object",
"description": "Check Multiple Permissions Out",
"properties": {
"checks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"permissionedId": {
"type": "string"
},
"principalId": {
"type": "string"
},
"permissionId": {
"type": "string"
},
"result": {
"type": "boolean"
}
}
}
}
}
}
Create Branch Group
Creates a new Branch Group
POST /repositories/{repositoryId}/branchgroups
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | The ID of the repository |
Response
{
"type": "object",
"description": "Status of Operation",
"properties": {
"ok": {
"type": "boolean",
"description": "Indicates whether the operation succeeded or not"
}
}
}
Delete Branch Group
Deletes an existing Branch Group
DELETE /repositories/{repositoryId}/branchgroups/{branchGroupId}
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | The ID of the repository |
branchGroupId | true | string |
Response
{
"type": "object",
"description": "Status of Operation",
"properties": {
"ok": {
"type": "boolean",
"description": "Indicates whether the operation succeeded or not"
}
}
}
Delete Branch Group
Deletes an existing Branch Group
POST /repositories/{repositoryId}/branchgroups/{branchGroupId}/delete
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | The ID of the repository |
branchGroupId | true | string |
Response
{
"type": "object",
"description": "Status of Operation",
"properties": {
"ok": {
"type": "boolean",
"description": "Indicates whether the operation succeeded or not"
}
}
}
Grant Authority
Grants an authority against the specified branchGroup to a given user
POST /repositories/{repositoryId}/branchgroups/{branchGroupId}/authorities/{authorityId}/grant
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | |
branchGroupId | true | string | |
authorityId | true | string | |
id | true | string |
Response
{
"type": "object",
"description": "Status of Operation",
"properties": {
"ok": {
"type": "boolean",
"description": "Indicates whether the operation succeeded or not"
}
}
}
Lists Branch Group
Retrieves a list of Branch Group instances
GET /repositories/{repositoryId}/branchgroups
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | The ID of the repository |
sort | false | object | Defines how to sort fields in the result set |
skip | false | number | Skips the result set cursor ahead the specified number of records |
limit | false | number | Specifies the number of records to be handed back in the result set |
Response
{
"type": "object",
"description": "Result Map",
"properties": {
"total_rows": {
"type": "number"
},
"offset": {
"type": "number"
},
"size": {
"type": "number"
},
"rows": {
"type": "array",
"items": {
"$ref": "#/components/schemas/resultmap_branchGroup"
}
}
}
}
Members
GET /repositories/{repositoryId}/branchgroups/{branchGroupId}/members
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | The ID of the repository |
branchGroupId | true | string |
Response
{}
Queries for Branch Group
Queries for instances of type Branch Group
POST /repositories/{repositoryId}/branchgroups/query
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | The ID of the repository |
sort | false | object | Defines how to sort fields in the result set |
skip | false | number | Skips the result set cursor ahead the specified number of records |
limit | false | number | Specifies the number of records to be handed back in the result set |
Response
{
"type": "object",
"description": "Result Map",
"properties": {
"total_rows": {
"type": "number"
},
"offset": {
"type": "number"
},
"size": {
"type": "number"
},
"rows": {
"type": "array",
"items": {
"$ref": "#/components/schemas/resultmap_branchGroup"
}
}
}
}
Read ACL
Read the Access Control List for the specified branchGroup
GET /repositories/{repositoryId}/branchgroups/{branchGroupId}/acl/list
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | |
branchGroupId | true | string |
Response
{
"type": "object",
"description": "Result Map of ACL entries",
"properties": {
"total_rows": {
"type": "number"
},
"offset": {
"type": "number"
},
"size": {
"type": "number"
},
"rows": {
"type": "array",
"items": {
"type": "object",
"properties": {
"_doc": {
"type": "string",
"title": "Principal ID"
},
"name": {
"type": "string",
"title": "Principal Name"
},
"type": {
"type": "string",
"title": "Principal Type"
},
"domainId": {
"type": "string"
},
"domainQualifiedId": {
"type": "string"
},
"domainQualifiedName": {
"type": "string"
},
"principalId": {
"type": "string",
"title": "Principal ID"
},
"userEmail": {
"type": "string"
},
"userFirstName": {
"type": "string"
},
"userLastName": {
"type": "string"
},
"authorities": {
"type": "array",
"title": "Authorities",
"items": {
"type": "string",
"title": "Authority Key"
}
}
}
}
}
}
}
Read ACL for Principal
Read the Access Control List for the specified branchGroup and the given principal
GET /repositories/{repositoryId}/branchgroups/{branchGroupId}/acl
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | |
branchGroupId | true | string | |
id | true | string |
Response
{
"type": "object",
"description": "Result Map of Authority Keys",
"properties": {
"total_rows": {
"type": "number"
},
"offset": {
"type": "number"
},
"size": {
"type": "number"
},
"rows": {
"type": "array",
"items": {
"type": "string",
"description": "Authority Key"
}
}
}
}
Read Authorities Report
Read the Authorities Report for the specified branchGroup
POST /repositories/{repositoryId}/branchgroups/{branchGroupId}/authorities
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | The ID of the repository |
branchGroupId | true | string |
Response
{
"type": "object",
"description": "Authority Report",
"properties": {
"principalId": {
"type": "object",
"properties": {
"id": {
"type": "object",
"properties": {
"role-key": {
"type": "string"
},
"principal": {
"type": "string"
},
"permissioned": {
"type": "string"
},
"inheritsFrom": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"principal": {
"type": "string"
},
"permissioned": {
"type": "string"
}
}
}
}
}
}
}
}
}
Read Branch Group
Reads an instance of a Branch Group
GET /repositories/{repositoryId}/branchgroups/{branchGroupId}
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | The ID of the repository |
branchGroupId | true | string |
Response
{
"type": "object",
"extends": "document",
"description": "Branch Group",
"container": "repository",
"properties": {
"_doc": null,
"_system": null
}
}
Revoke Authority
Revokes an authority against the specified branchGroup from a given user
POST /repositories/{repositoryId}/branchgroups/{branchGroupId}/authorities/{authorityId}/revoke
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | |
branchGroupId | true | string | |
authorityId | true | string | |
id | true | string |
Response
{
"type": "object",
"description": "Status of Operation",
"properties": {
"ok": {
"type": "boolean",
"description": "Indicates whether the operation succeeded or not"
}
}
}
Starts an export job for this resource
Starts an export job for this resource
POST /repositories/{repositoryId}/branchgroups/{branchGroupId}/export
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | |
branchGroupId | true | string | |
groupId | false | string | The Group ID to be assigned to the exported archive |
artifactId | false | string | The Artifact ID to be assigned to the exported archive |
versionId | false | string | The Version ID to be assigned to the exported archive |
vaultId | false | string | The ID of the vault where the exported archive should be saved |
schedule | false | string | Whether to run the job immediately or in the background (either 'synchronous' or 'asynchronous') |
Response
{
"type": "object",
"description": "Export Configuration",
"properties": {
"startDate": {
"type": "object"
},
"endDate": {
"type": "object"
},
"startChangeset": {
"type": "string"
},
"endChangeset": {
"type": "string"
},
"includeACLs": {
"type": "boolean"
},
"includeTeams": {
"type": "boolean"
},
"includeActivities": {
"type": "boolean"
},
"includeBinaries": {
"type": "boolean"
},
"includeAttachments": {
"type": "boolean"
},
"artifactDependencies": {
"type": "array",
"items": {
"type": "object"
}
},
"artifactIncludes": {
"type": "array",
"items": {
"type": "object"
}
},
"forceIncludes": {
"type": "boolean"
}
}
}
Starts an import job for this resource
Starts an import job for this resource
POST /repositories/{repositoryId}/branchgroups/{branchGroupId}/import
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | |
branchGroupId | true | string | |
groupId | false | string | The Group ID to be assigned to the exported archive |
artifactId | false | string | The Artifact ID to be assigned to the exported archive |
versionId | false | string | The Version ID to be assigned to the exported archive |
vaultId | false | string | The ID of the vault where the exported archive should be saved |
schedule | false | string | Whether to run the job immediately or in the background (either 'synchronous' or 'asynchronous') |
Response
{
"type": "object",
"description": "Import Configuration",
"properties": {
"includeACLs": {
"type": "boolean"
},
"includeTeams": {
"type": "boolean"
},
"includeActivities": {
"type": "boolean"
},
"includeBinaries": {
"type": "boolean"
},
"includeAttachments": {
"type": "boolean"
},
"strategy": {
"type": "array",
"items": {
"type": "string"
}
},
"substitutions": {
"type": "string"
}
}
}
Update Branch Group
Updates an existing Branch Group
PUT /repositories/{repositoryId}/branchgroups/{branchGroupId}
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | The ID of the repository |
branchGroupId | true | string |
Response
{
"type": "object",
"description": "Status of Operation",
"properties": {
"ok": {
"type": "boolean",
"description": "Indicates whether the operation succeeded or not"
}
}
}
Update Branch Group
Updates an existing Branch Group
POST /repositories/{repositoryId}/branchgroups/{branchGroupId}/update
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | The ID of the repository |
branchGroupId | true | string |
Response
{
"type": "object",
"description": "Status of Operation",
"properties": {
"ok": {
"type": "boolean",
"description": "Indicates whether the operation succeeded or not"
}
}
}
{branchId}
POST /repositories/{repositoryId}/branchgroups/{branchGroupId}/remove/{branchId}
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | The ID of the repository |
branchGroupId | true | string | |
branchId | true | string | The ID of the branch |
Response
{}
{branchId}
POST /repositories/{repositoryId}/branchgroups/{branchGroupId}/add/{branchId}
Parameters
Name | Required | Type | Description |
---|---|---|---|
repositoryId | true | string | The ID of the repository |
branchGroupId | true | string | |
branchId | true | string | The ID of the branch |
Response
{}
Schema
{
"type": "object",
"extends": "document",
"description": "Branch Group",
"container": "repository",
"properties": {
"_doc": null,
"_system": null
},
"id": "branchGroup"
}