Project API Methods
Learn more about Project methods.
Last updated
Was this helpful?
Learn more about Project methods.
Last updated
Was this helpful?
Projects are special containers intended for collaboration. Within the context of a project, access permissions are controlled by the users who have ADMINISTER access to the project.
Users can create projects through the web user interface or using the API method /project/new
. Unless users are creating a project on behalf of an organization, users will be responsible for the storage costs of the data inside the project, as well as any compute time for any jobs run from the project. Projects have various metadata (name, description, tags, properties). The project can also have project-wide boolean flags that place restrictions on how the data can be modified or copied to other projects documented in the section.
In contrast, users cannot create generic data containers directly. Containers are generated automatically for different purposes involved in running an analysis, sharing data, etc. and will always be associated with a project or user/organization that will be responsible for its storage costs.
Projects can have names, descriptions, properties, and tags. Properties may be automatically set by the website front-end and are used for facilitating user experience.
/project/new
Specification
Creates a new project. Initially only the user performing this action will be in the permissions/member list, with ADMINISTER access.
Inputs
name
string The name of the project.
summary
string (optional, default "") A short summary of what the project contains.
description
string (optional, default "") A longer description of the project.
protected
boolean (optional, default false) Whether the project should be protected. See more details in the section.
restricted
boolean (optional, default false) Whether the project should be restricted. See more details in the section.
downloadRestricted
boolean (optional, default false) Whether data in this project can be downloaded outside of the platform. For database objects, whether the data in the project can be accessed by users from outside DNAnexus. See more details in the section.
externalUploadRestricted
boolean (optional, default false) If true, data uploads to this project from outside the job context are rejected. See for details.
httpsAppIsolatedBrowsing
boolean (optional, default false) If true, the jobs in the project will have their httpsApp access wrapped in Isolated Browsing. See more details in the and sections.
databaseUIViewOnly
boolean (optional, default false) If set to true, project members with VIEW access will have their access to project databases restricted to the only.
containsPHI
boolean (optional, default false) Whether the project should be marked as containing protected health information (PHI). See more details in the section.
egressBillTo
string (optional, either "projectBillTo"
(default) or "downloaderBillTo"
). Determines if egress costs will be billed to project's billTo account
or to the downloading user's default billTo account.
tags
array of strings (optional) Tags to associate with the project.
properties
mapping (optional) Properties to associate with the project.
key Property name
value string Property value
billTo
string (optional, default is the billTo
of the requesting user) ID of the entity to which any costs associated with this project will be billed; must be the ID of the requesting user or an org of which the requesting user is a member with allowBillableActivities
permission.
region
string (optional; defaults to the defaultRegion
of the billTo
of the project) The region that this project will be created in. The region must be among the permitted regions of the project's billTo
. For more information about regions, see .
monthlyComputeLimit
int or null (optional) The project-level compute spending limit.
monthlyEgressBytesLimit
int or null (optional) The project-level egress spending limit.
monthlyStorageLimit
float or null (optional) The project-level storage limit.
defaultSymlink
mapping (optional) Default remote location for new files in the project and all its execution containers. (Note - must have tmpSymlinkWriteSupport
license enabled for billTo
)
drive
string (required) The drive ID (i.e. the string "drive-xxxx" and cannot be "drive-PUBLISHED")
container
string (required) The container name (i.e. region:bucket for AWS S3 and containerName for Azure Blob)
prefix
string (optional, default "/") The remote location prefix in the container
Outputs
id
string ID of the created project.
Errors
InvalidInput
name
may not be empty and may not match the regex [\x00-\x1F].
containsPHI
may not be set to false if the project is currently marked as containing PHI.
protected,
restricted
, downloadRestricted, externalUploadRestricted, containsPHI, databaseUIViewOnly, httpsAppIsolatedBrowsing
(if provided) are not booleans.
InvalidState
containsPHI
is true, but the project is in a region that does not support PHI features.
SpendingLimitExceeded
billTo
has reached its spending limit.
PermissionDenied
One of the following must be supplied: a full scope token, a token with ADMINISTER access in all projects ('*') , or a token with the projectCreation scope set.
If containsPHI
was set to true, the billTo
of the project must have PHI features enabled.
If externalUploadRestricted
was set to true, the billTo
of the project must have the externalUploadRestrictedControl
license.
If httpsAppIsolatedBrowsing
is being set to true
, the billTo
of the project must have the httpsAppIsolatedBrowsingControl
license.
billTo
must be either the ID of the requesting user or the ID of an org in which the requesting user is a member with allowBillableActivities
permission.
The billTo
of the invoking user is an org and the user is no longer a member of that org.
The region
that was selected was not among the permittedRegions
of the billTo.
/project-xxxx/update
Specification
Updates the specified project with the specified options. Options that are not supplied in the input hash are not changed, e.g. if the project originally has the "protected" flag set and this method is called to update the title or description and does not include the "protected" field, the "protected" flag will remain unchanged. Only members with ADMINISTER access can update the project. Note that updating the billTo
field specifically will reset both totalSponsoredEgressBytes
and consumedSponsoredEgressBytes
for the project.
Inputs
name
string (optional) The new name of the project.
summary
string (optional) The new summary of the project.
description
string (optional) The new description of the project.
downloadRestricted
boolean (optional) If set to true, disables the downloading of data outside of the platform. For database objects, it would prohibit users from accessing the data in the project from outside DNAnexus.
egressBillTo
string (optional, either "projectBillTo"
or "downloaderBillTo"
). The new value for the egressBillTo
property.
version
int (optional) If provided, the value must match the current project's version; otherwise, the update will be applied unconditionally.
billTo
string (optional) ID of the entity to which any costs associated with this project will be billed; must be the ID of the requesting user or an org of which the requesting user is a member with allowBillableActivities
permission.
allowedExecutables
array of strings or null (optional) Set of executable IDs that are allowed to run as root executions in this project. If this field is not specified or is set to null, projects are not limited to specific executables.
monthlyComputeLimit
int or null (optional) The project-level compute spending limit. null is considered as unlimited, which should be treated as a higher value for any non-null defaults.
monthlyEgressBytesLimit
int or null (optional) The project-level egress spending limit. null is considered as unlimited, which should be treated as a higher value for any non-null defaults.
monthlyStorageLimit
float or null (optional) The project-level storage spending limit. null is considered as unlimited, which should be treated as a higher value for any non-null defaults.
Output
id
string ID of the manipulated project.
Errors
ResourceNotFound
The specified project does not exist.
InvalidInput
The input is not a hash.
name
(if provided) is not a nonempty string.
summary
(if provided) is not a string.
description
(if provided) is not a string.
protected, restricted, downloadRestricted, externalUploadRestricted, containsPHI, databaseUIViewOnly, httpsAppIsolatedBrowsing
(if provided) are not booleans.
containsPHI
(if provided) cannot be false -- marking a project as no longer containing PHI is currently unsupported.
containsPHI
is true, but the project is in a region that does not support PHI features.
monthlyComputeLimit
is not an int and not a null, or is not larger than zero.*
monthlyEgressBytesLimit
is not an int and not a null, or is not larger than zero.*
monthlyComputeLimit
is higher than the max value of the org default value and the current monthlyComputeLimit
and the user is NOT the admin user of the org.*
monthlyEgressBytesLimit
is higher than the max value of the org default value and the current monthlyEgressBytesLimit
and the user is NOT the admin user of the org.*
monthlyStorageLimit
is not a float or null, or is not larger than or equal to zero.*
monthlyStorageLimit
is higher than the org default value and the user is not an org admin.*
monthlyStorageLimit
is not a float, or NULL, or is not larger than or equal to zero.*
monthlyStorageLimit
is higher than the max value of the org default value and the current monthlyStorageLimit
, and the user is not an org admin.*
InvalidState
version
was provided and does not match the current version number found in the project.
PermissionDenied
containsPHI
was set to true, but the billTo
of the project does not have PHI features enabled.
If externalUploadRestricted
was set to true, the billTo
of the project must have the externalUploadRestrictedControl
license.
The new billTo must be licensed to use the externalUploadRestricted option.
If httpsAppIsolatedBrowsing
is being set to true
, the billTo
of the project must have the httpsAppIsolatedBrowsingControl
license.
The new billTo
must have the httpsAppIsolatedBrowsingControl
license for projects with httpsAppIsolatedBrowsing
set to true
.
billTo
must be either the ID of the requesting user or the ID of an org of which the requesting user is a member with allowBillableActivities
permission.
If the requesting user is not one of the project admins or org admins of the project billTo
org.
The billTo
org of the project does not have monthlyProjectSpendingLimit
enabled.
The billTo
org does not have monthlyProjectStorageSpendingLimit
enabled
The billTo
org of the project does not have monthlyProjectStorageSpendingLimit
enabled
The requesting user is neither an ADMIN of the project nor an ADMIN of the billTo org of the project
billTo
must have the region
of this project in its permittedRegions.
If billTo
is specified and the project is currently billed to an org, then the requesting user must be a member of the org; depending on the restrictProjectTransfer
, the requesting user may be required to be an ADMIN of the org.
SpendingLimitExceeded
billTo
has reached its spending limit.
/project-xxxx/updateSponsorship
Specification
This method modifies various forms of sponsorship in the project. It can be used to set or modify data egress sponsorship, or used to set or unset third-party data storage sponsorship in the project.
When data egress sponsorship has been set to a specified number of bytes, the billTo
of the project may be billed for up to that amount of data transferred outside of the system for that project (i.e. downloaded by a user) . The rate at which the data is billed may vary depending on the IP range of the downloader. If the amount of data egress from this project to outside the system exceeds the number of data egress sponsored bytes the downloader will then incur any remaining and future costs of downloading data from project.
When the project is sponsored for data storage, the billTo
of the project is billed for any storage charges for all objects in this project. Any other users or orgs that have copies of any of these data objects in other projects can store them for free until the expiration of the sponsorship period.
When the project is sponsored, adding new data objects to the project (or removing them) causes those objects to be sponsored (unsponsored, respectively) . An object may only be sponsored in one project at a time, and cloning an object into a sponsored project will fail if the object is already sponsored by virtue of its presence in another sponsored project.
If the project is already sponsored, you can call this method again to update the expiration time or to terminate sponsorship.
Inputs
sponsoredUntil
timestamp or null (optional) Sets the expiration time of data storage sponsorship. Specifying null (or any time in the past) terminates the sponsorship effective immediately.
totalSponsoredEgressBytes
int (optional) Sets the number of bytes to be sponsored for downloads (data egress) from the DNAnexus Platform to an external IP for this project. Users may download up to the specified number of bytes from the project at no cost to themselves, with the cost being borne by the project's billTo. If the new value is less than the number of bytes already consumed the sponsor only owes charges for downloads that have already completed and its liabilites end effective immediately. Note that setting this value overrides the previous value and does not increment it, so to effectively extend the byte limit this method must be invoked with a value higher than the previous value it was invoked with.
Outputs
id
string ID of the project.
Errors
InvalidInput
totalSponsoredEgressBytes
must be a non-negative integer.
InvalidState
A data object in the project has already been third-party sponsored in another project; the data object(s) need to be removed from this project (or from the other project) before they can be third-party sponsored again. When this error is thrown, the error details
is of the form `{alreadySponsored: [{id: ..., project: ...}, ...]}` indicating the ID and sponsoring project of each object that was already third-party sponsored.
A data object in the project has already been DNAnexus-sponsored.
The project is archived.
The project has a pending transfer.
PermissionDenied
If sponsoredUntil
is supplied, the billTo
of the project needs to have data sponsorship features enabled. Please contact us to enable data storage sponsorship features for your account.
ADMINISTER access to the project is required.
The user's billTo must match the billTo of the project.
/project-xxxx/setProperties
Specification
Sets properties on the specified project. To remove a property altogether, its value needs to be set to the JSON null (instead of a string) . This call updates the properties of the project by merging any old (previously existing) ones with what is provided in the input, the newer ones taking precedence when the same key appears in the old.
Best practices: to completely "reset" properties (i.e. remove all existing key/value pairs and replace them with some new) , issue a describe call to get the names of all properties, then issue a setProperties request to set the values of those properties to null.
Inputs
properties
mapping Properties to modify.
key Name of property to modify
value string or null Either a new string value for the property, or null to unset the property.
Outputs
id
string ID of the manipulated project (i.e. a string of the form "project-xxxx").
Errors
InvalidInput
The input is not a hash, properties
is missing or is not a hash, or there exists at least one value in properties
which is neither a string nor the JSON null.
ResourceNotFound
The specified project does not exist.
PermissionDenied
CONTRIBUTE access required for the specified project.
/project-xxxx/describe
Specification
Describes the specified project.
Inputs
fields
mapping (optional) Restrict the output of this method to have only the provided keys in this field.
key Desired output field; see the "Outputs" section below for additional valid values here.
value boolean The value true.
Outputs
id
string ID of the project (i.e. the string "project-xxxx")
The following fields are included by default (but can be disabled using fields
) :
class
string The value "project".
name
string The name of the project.
summary
string The summary of the project.
description
string The description of the project.
version
int The current version number of the project used for tracking
changes to its metadata.
tags
array of strings Tags associated with the project.
billTo
string ID of the account to which any costs associated
with this project will be billed.
protected
boolean The value of the protected flag.
restricted
boolean The value of the restricted flag.
downloadRestricted
boolean The value of the downloadRestricted flag.
externalUploadRestricted
boolean The value of the externalUploadRestricted flag.
httpsAppIsolatedBrowsing
boolean The value of the httpsAppIsolatedBrowsing flag.
containsPHI
boolean Whether the project is marked as containing protected health information (PHI) and will be subject to additional restrictions to ensure security and compliance.
created
timestamp Time at which this project was created.
createdBy
mapping How the project was created.
user
string ID of the user who created the project.
job
string (present if applicable) ID of the job that created the project.
executable
string (present if job
is present) ID of the applet or app that the job was running.
modified
timestamp Time at which this project was last updated.
level
string The highest permission level that the requesting user has.
dataUsage
number Data usage in GB (not including sponsored data or dbcluster storage) . A short amount of time may elapse between changes to the project and when this number is updated.
defaultInstanceType
string Default instance type for apps to run on.
sponsoredDataUsage
number sum of DNAnexus-sponsored and third-party sponsored data usage in GB, excluding dbcluster storage. If the current project is itself third-party sponsored, then objects in that project will be reflected in dataUsage
rather than sponsoredDataUsage
since the billTo
of the project does get billed for them. A short amount of time may elapse between changes to the container and when this number is updated.
sponsoredUntil
timestamp If present, indicates that the project is sponsored by its billTo
until the specified time. This field is only set if the project is currently sponsored, and if set, the specified time is always in the future).
pendingTransfer
string or null If applicable, account ID that has been invited to take the project; otherwise null.
totalSponsoredEgressBytes
int the total number of bytes sponsored for this project over the lifetime of the project's current billTo. If the current value is less than the number of bytes already consumed, consumedSponsoredEgressBytes
, the sponsor is not billed for any future downloads and the cost is billed to the downloader.
consumedSponsoredEgressBytes
int the number of sponsored bytes already used to transfer files from this project out of the DNAnexus platform, over the lifetime of the project's current billTo.
allowedExecutables
array of strings If present, the set of executable IDs that are allowed to run as root executions in this project.
The following fields (included by default) are available if the requesting user has UPLOAD+ access to the project:
atSpendingLimit
boolean Indicates whether the billTo
of the project is at their spending limit (and therefore functionality is restricted).
The following fields (included by default) are available if the requesting user has permissions to view the pricing model of the billTo
of the project:
storageCost
number Storage cost (in dollars) of the project per month given the current data usage (note that the total cost of an account's projects may be smaller than the sum of this value over all projects if any objects are shared between the projects).
The following fields are only returned if the corresponding field in the fields
input is set to true:
folders
array of strings List of all folders in the project.
objects
int The number of visible objects in the project.
permissions
mapping Who has permissions to access this project.
key Entity ID; a user or org ID.
value string One of the values "VIEW", "UPLOAD", "CONTRIBUTE", "ADMINISTER".
egressBillTo
string. The value of the egressBillTo
property.
appCaches
mapping List of containers attached to the project that have been created for running apps.
key App ID
value string ID of the app ID's project cache container
properties
mapping Properties associated with the project
key Property name
value string Property value
fileUploadParameters
mapping Information about what part sizes and numbers should be used to upload files in this project. See the section Limits on Parts of the Files API for more information about interpreting this. Mapping with the key/values:
minimumPartSize
int minimum part size, in bytes, that applies to all parts except the part with the highest index. (Clients may assume that if emptyLastPartAllowed
is false, then minimumPartSize
will be at least 1, that is, the constraint on the last part is no stronger than the constraint on previous parts.)
maximumPartSize
int maximum part size, in bytes.
emptyLastPartAllowed
boolean If true, then the the minimum number of parts is 1 and the part with the highest index may contain 0 bytes. If false, then the minimum number of parts is 0 and the part with the highest index must contain at least 1 byte. Note that all parts other than the part with the highest index must still have minimum size given by minimumPartSize
. If true, then the client can upload a 0-byte file by invoking /file-xxxx/upload once with a part of size 0. If false, then the client can upload a 0-byte file by not invoking /file-xxxx/upload at all.
maximumNumParts
int the maximum number of parts that may be uploaded (also equal to the largest permissible part index).
maximumFileSize
int the maximum size of the file, in bytes.
availableInstanceTypes
mapping Instances available in the project for apps and applets to run on.
key Instance type
value mapping Contains information on the instance type.
numCores
int Number of cores
totalMemoryMB
int Memory size in MB
ephemeralStorageGB
int Storage size in GB
os
array of mappings Supported operating systems. Each value is a mapping with the following fields, indicating one of the supported operating systems:
distribution
string The Linux operating system distribution; must match the distribution
of the run specifications of the app or the applet to be run.
release
string The Linux operating system release; must match the release
of the run specifications of the app or the applet to be run.
rank
int Ranking of the instance type based on its value, with rank value of 1 being least valuable.
metadataCapacity
float Value of metadataCapacity.
Between 0 and 1, with a 1 indicating the project is at maximum metadata capacity and that adding more metadata will fail.
The following fields (included by default) are available if the requesting user has permissions to view the pricing model of the billTo
of the project and the billTo
of the project has monthlyProjectSpendingLimit
enabled:
monthlyComputeLimit
int or null The current monthly project spending limit for compute.
monthlyEgressBytesLimit
int or null The current monthly project spending limit for egress.
currentMonthComputeAvailableBudget
float or null The current month’s project available spending budget for compute.
currentMonthEgressBytesAvailableBudget
float or null The current month's project available spending budget for egress.
currentMonthComputeUsage
float The current month’s project usage for compute.
currentMonthEgressBytesUsage
float The current month’s project usage for egress.
The following fields (included by default) are available if the requesting user has permissions to view the pricing model of the billTo
of the project and the billTo
of the project has monthlyProjectStorageSpendingLimit
enabled:
monthlyStorageLimit
float or null The current monthly project spending limit for storage
currentMonthStorageAvailableBudget
float or null The current month’s project available spending budget for storage
currentMonthExpectedStorageUsage
float The current month’s projected usage for storage
Errors
ResourceNotFound
The specified project does not exist.
InvalidInput
Input is not a hash, or fields
if present, is not a hash or has a non-boolean key.
PermissionDenied
Must have at least VIEW access to the project, be the billTo
with a full scope token (if the billTo
is a user) , or be an admin of the billTo
with a full scope token (if the billTo
is an org).
/project-xxxx/destroy
Specification
Destroys the specified project. All objects in the project are removed.
If there are any jobs in the project which are not in a terminal state (i.e. not done, failed, or terminated) , then an InvalidState error will be thrown. Set the terminateJobs
option to force termination of jobs.
Inputs
terminateJobs
boolean (optional, default false) Whether to force the destruction of the project and terminate all non-terminal jobs.
Outputs
id
string ID of the manipulated project.
Errors
ResourceNotFound
The specified project does not exist.
PermissionDenied
The requesting user is neither an ADMIN of the project nor an ADMIN of the billTo org of the project
InvalidInput
terminateJobs
(if present) is not a boolean.
InvalidState
terminateJobs
was not set to true, and there still remain jobs which are not in a terminal state.
The project is sponsored (sponsorship must be terminated before the project may be destroyed).
/project-xxxx/addTags
Specification
Tags the project with the given strings. There is no effect for tags that already exist for the project.
Inputs
tags
array of strings Tags to be added.
Outputs
id
string ID of the manipulated project.
Errors
ResourceNotFound
The specified project does not exist.
InvalidInput
tags
is not present or is not a list of nonempty strings.
PermissionDenied
CONTRIBUTE access required.
/project-xxxx/removeTags
Specification
Removes the given tags from the project. There is no effect if the tags do not exist.
Inputs
tags
array of strings Tags to be removed.
Outputs
id
string ID of the manipulated project.
Errors
ResourceNotFound
The specified project does not exist.
InvalidInput
tags
is not present or is not a list of nonempty strings.
PermissionDenied
CONTRIBUTE access required.
/project-xxxx/countRootExecutions
Specification
Counts the root executions in this project that were created within the last 7 days by state. Returns an object whose keys are execution states, and whose values are the number of root executions that are in that state.
Inputs
None
Outputs
key State
value int Number of root executions in that state.
Errors
ResourceNotFound
The specified project does not exist.
PermissionDenied
VIEW access required.
/system/getProjectTags
Specification
Returns the tags on all visible projects. Note that initial implementation will only include public projects.
Inputs
None
Outputs
key Tag
value int Number of projects with the tag.
Errors
No errors are returned.
/project-xxxx/archive
Specification
Requests for a set of files to be archived on the platform. For each file, if this is the last copy of a file to have archival requested, it will trigger the full archival of the object. Otherwise, the file will be marked in an archival
state denoting that archival has been requested.
Inputs
files
array of strings (optional) A subset list of files that should be archived. Example: '{"files": ["file-xxxx", "file-yyyy"], "allCopies": true}'
. Mutually exclusive with folder
.
folder
string (optional) The folder which contains all files that should be archived. Example: '{"folder" : "/folder1"}'
. Mutually exclusive with files
and required when files
not present.
recurse
boolean (optional, default true) If true, archive all files in subfolders of folder
. If false, only archive files in folder
. folder
must be set.
allCopies
boolean (optional, default false) This flag is intended to force the transition of files into the archived
state. Requesting user must be the ADMIN
of the project billTo
org. If true, archive all the copies of files in projects with the same billTo
org. If false, only the copy of the file in the current project is transitioned to the archival
state, while other copies of the file in the rest projects with the same billTo
org will stay in the live
state.
Output
id
string The id of the project.
count
int The number of files that will be tagged for archival.
Errors
InvalidInput
if both files
and folder
are provided
one or more files in key files
of the input contain symlinks
InvalidState
one or more files is in an "open" ("non-closed") state
one or more files is being used as bundledDepends
for applet(s)
ResourceNotFound
the specified project does not exist.
a file or folder does not exist.
PermissionDenied
CONTRIBUTE access required.
Must be an org ADMIN of the project billTo
org to use the allCopies
options.
/project-xxxx/unarchive
Specification
Requests for a set of files to be unarchived on the platform. This is an asynchronous command. The requested copy will eventually be transitioned over to the live state while all other copies will move over to the archival
state.
Inputs
files
array of strings (optional) A subset list of files that should be unarchived. Mutually exclusive with folder
and required when folder
is not present.
folder
string (optional) The folder which contains all files that should be unarchived. Mutually exclusive with files
and required when files
is not present.
recurse
boolean (optional, default true) If true, unarchive all files in subfolders of folder
. If false, only unarchive files in folder
. folder
must be set.
rate
string (optional; AWS only) The speed at which all files in this request are unarchived. Valid entries: "Standard" and "Bulk".
dryRun
boolean (optional, default false) If true, only display the output of the API call without executing the unarchival process.
Output
files
int The number of files that will be unarchived.
size
int The size of the data, in GB, that will be unarchived.
cost
float The total cost, in millidollars, that will be charged for the unarchival request.
Errors
InvalidInput
if both files
and folder
are provided.
ResourceNotFound
The specified project does not exist.
A file or folder does not exist.
PermissionDenied
CONTRIBUTE access required.
A license is required to use the Monthly Project Compute and Egress Spending Limit and Monthly Project Storage Spending Limit features. for more information.
A license is required to use the Symlinks feature. for more information.
protected
boolean (optional) The new value of the protected property. See more details in the section.
restricted
boolean (optional) The new value of the restricted property. See more details in the section.
externalUploadRestricted
boolean (optional, default false) If true, data uploads to this project from outside the job context are rejected. See for details.
httpsAppIsolatedBrowsing
boolean (optional, default false) If true, the jobs in the project will have their httpsApp access wrapped in Isolated Browsing. See more details in the and sections.
containsPHI
boolean (optional) Set to true to mark the project as containing protected health information (PHI). See more details in the section.
databaseUIViewOnly
boolean (optional) If set to true, project members with VIEW access will have their access to project databases restricted to the only.
A license is required to use both the Monthly Project Computing and Egress Spending Limit feature, and the Monthly Project Storage Spending Limit feature. Contact for more information.
Can not change the billTo of project-xxxx
while the project contains a .
* A license is required to use both the Monthly Project Computing and Egress Spending Limit feature, and the Monthly Project Storage Spending Limit feature. Contact for more information.
region
string The region this project resides in. For more information about regions, see .
databaseUIViewOnly
boolean (optional) If set to true, project members with VIEW access will have their access to project databases restricted to the only.
Licenses are required for both the Monthly Project Compute and Egress Spending Limit feature, and the Monthly Project Storage Spending Limit feature. for more information.
A license is required to use the DNAnexus Archive Service. for more information.
A license is required to use the DNAnexus Archive Service. for more information.