Release

An Object

Note

Drop in one of our language drivers to accelerate your development.
Here are links to some of our popular Cookbooks to help you get started!

Parent

This Release 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:

Archive

POST /repositories/{repositoryId}/releases/{releaseId}/archive

Parameters

Name Required Type Description
repositoryId true string
releaseId true string

Response

{}

Check Permission

Checks whether one or more authorities against the specified release are granted for a given set of users
POST /repositories/{repositoryId}/releases/{releaseId}/permissions/{permissionId}/check

Parameters

Name Required Type Description
repositoryId true string
releaseId 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 release for the given user
POST /repositories/{repositoryId}/releases/{releaseId}/authorities/{authorityId}/check

Parameters

Name Required Type Description
repositoryId true string
releaseId 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 release are granted for a given set of users
POST /repositories/{repositoryId}/releases/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 release are granted for a given set of users
POST /repositories/{repositoryId}/releases/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 Release

Creates a new Release
POST /repositories/{repositoryId}/releases

Parameters

Name Required Type Description
repositoryId true string
sourceId false string

Response

{
  "type": "object",
  "description": "Status of Operation",
  "properties": {
    "ok": {
      "type": "boolean",
      "description": "Indicates whether the operation succeeded or not"
    }
  }
}

Delete Release

Deletes an existing Release
DELETE /repositories/{repositoryId}/releases/{releaseId}

Parameters

Name Required Type Description
repositoryId true string
releaseId true string

Response

{
  "type": "object",
  "description": "Status of Operation",
  "properties": {
    "ok": {
      "type": "boolean",
      "description": "Indicates whether the operation succeeded or not"
    }
  }
}

Delete Release

Deletes an existing Release
POST /repositories/{repositoryId}/releases/{releaseId}/delete

Parameters

Name Required Type Description
repositoryId true string
releaseId true string

Response

{
  "type": "object",
  "description": "Status of Operation",
  "properties": {
    "ok": {
      "type": "boolean",
      "description": "Indicates whether the operation succeeded or not"
    }
  }
}

Finalize

POST /repositories/{repositoryId}/releases/{releaseId}/finalize

Parameters

Name Required Type Description
repositoryId true string
releaseId true string

Response

{}

Grant Authority

Grants an authority against the specified release to a given user
POST /repositories/{repositoryId}/releases/{releaseId}/authorities/{authorityId}/grant

Parameters

Name Required Type Description
repositoryId true string
releaseId 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"
    }
  }
}

Info

GET /repositories/{repositoryId}/releases/{releaseId}/info

Parameters

Name Required Type Description
repositoryId true string
releaseId true string

Response

{}

Lists Release

Retrieves a list of Release instances
GET /repositories/{repositoryId}/releases

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_release"
      }
    }
  }
}

Network

POST /repositories/{repositoryId}/releases/network

Parameters

Name Required Type Description
repositoryId true string

Response

{}

Queries for Release

Queries for instances of type Release
POST /repositories/{repositoryId}/releases/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_release"
      }
    }
  }
}

Read ACL

Read the Access Control List for the specified release
GET /repositories/{repositoryId}/releases/{releaseId}/acl/list

Parameters

Name Required Type Description
repositoryId true string
releaseId 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

Reads the ACL for a release and specific actor
GET /repositories/{repositoryId}/releases/{releaseId}/acl

Parameters

Name Required Type Description
repositoryId true string
releaseId 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 release
POST /repositories/{repositoryId}/releases/{releaseId}/authorities

Parameters

Name Required Type Description
repositoryId true string The ID of the repository
releaseId 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 Release

Reads an instance of a Release
GET /repositories/{repositoryId}/releases/{releaseId}

Parameters

Name Required Type Description
repositoryId true string
releaseId true string

Response

{
  "type": "object",
  "extends": "document",
  "description": "Release",
  "container": "repository",
  "properties": {
    "_doc": null,
    "_system": null
  }
}

Releaseimmediately

POST /repositories/{repositoryId}/releases/{releaseId}/releaseimmediately

Parameters

Name Required Type Description
repositoryId true string
releaseId true string

Response

{}

Revoke Authority

Revokes an authority against the specified release from a given user
POST /repositories/{repositoryId}/releases/{releaseId}/authorities/{authorityId}/revoke

Parameters

Name Required Type Description
repositoryId true string
releaseId 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"
    }
  }
}

Start

POST /repositories/{repositoryId}/releases/{releaseId}/finalize/start

Parameters

Name Required Type Description
repositoryId true string
releaseId true string

Response

{}

Start

POST /repositories/{repositoryId}/releases/create/start

Parameters

Name Required Type Description
repositoryId true string The ID of the repository
sourceId false string

Response

{}

Starts an export job for this resource

Starts an export job for this resource
POST /repositories/{repositoryId}/releases/{releaseId}/export

Parameters

Name Required Type Description
repositoryId true string
releaseId 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}/releases/{releaseId}/import

Parameters

Name Required Type Description
repositoryId true string
releaseId 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"
    }
  }
}

Unarchive

POST /repositories/{repositoryId}/releases/{releaseId}/unarchive

Parameters

Name Required Type Description
repositoryId true string
releaseId true string

Response

{}

Unfinalize

POST /repositories/{repositoryId}/releases/{releaseId}/unfinalize

Parameters

Name Required Type Description
repositoryId true string
releaseId true string

Response

{}

Update Release

Updates an existing Release
PUT /repositories/{repositoryId}/releases/{releaseId}

Parameters

Name Required Type Description
repositoryId true string
releaseId true string

Response

{
  "type": "object",
  "description": "Status of Operation",
  "properties": {
    "ok": {
      "type": "boolean",
      "description": "Indicates whether the operation succeeded or not"
    }
  }
}

Update Release

Updates an existing Release
POST /repositories/{repositoryId}/releases/{releaseId}/update

Parameters

Name Required Type Description
repositoryId true string
releaseId true string

Response

{
  "type": "object",
  "description": "Status of Operation",
  "properties": {
    "ok": {
      "type": "boolean",
      "description": "Indicates whether the operation succeeded or not"
    }
  }
}

Schema


{
  "type": "object",
  "extends": "document",
  "description": "Release",
  "container": "repository",
  "properties": {
    "_doc": null,
    "_system": null
  },
  "id": "release"
}