Resources

Resources are identified by URIs.

Overview

Resources are identified by URIs, and can be either:

A strict set of request methods are allowed for a resource type. Resources support the JSON representation type.

Tip: For a comprehensive list of supported public resources and their details, see the description of the Interactive API client.

Back to top

Public resources

You do not need to send any additional headers, other than the content-type header, when sending REST API requests for public resources.

For details on generic and CI/CD resources, see the Interactive API client.

The following public, supported resources are available.

Metadata resources

CI/CD resources

  • builds

  • ci_servers

  • pipelines

Generic resources

Note: The product_area resource is also known as an application_module.

Custom resources

Back to top

Technical preview resources

Resources not listed above as public are subject to change until declared public. To access these resources, send REST API requests with a header:

Header:  ALM-OCTANE-TECH-PREVIEW

Value: true

Two examples of technical preview resources, are coverage and logs. For details, see Add coverage (technical preview) and Add a log (technical preview).

Back to top

Resource hierarchy

Resources are built as a hierarchy of collections and instances.

Some resources are singleton resources, such as: test-results, sign_in, and sign_out.

The following example represents a resource collection of humans. This collection contains resource instances of human. Since humans have limbs, every human contains a collection of limbs. This collection contains resource instances of limb. Since limbs have fingers, every limb contains a collection of fingers. This collection contains resource instances of finger.

Example:  

humans
    human
          limbs
               limb
                    fingers
                         finger
                         finger
               limb
                    fingers
                         finger
                         finger
     human
          limbs
...

Back to top

Resource naming conventions

Use the following resource naming conventions.

Resource Description
Name

Since resources represent entities, resource names should represent the entities' names.

Example: defect

Instance

Resource instances should be called by their names in singular.

Example: defect

Collection

Resource collections should be called by their names in plural.

Example: defects

Split name

A resource whose name is more than one word should be separated by the underscore symbol.

Example: ci_servers

Back to top

See also: