Skip to content
/ go-cti Public

An implementation of CTI (Cross-domain Typed Identifiers) and CTI/Metadata specification in Go.

License

Notifications You must be signed in to change notification settings

acronis/go-cti

Repository files navigation

Cross-domain Typed Identifiers (CTI) management tool and library

What is Cross-domain Typed Identifiers (CTI)?

CTIs provide a structured, standardized approach for uniquely identifying data types, instances, and their relationships across multi-service, multi-vendor, multi-platform, and multi-application environments. This system enables the unique definition of resources (both data types and instances) throughout the ecosystem, embedding vendor, package, and extension information within each identifier. Using CTI, each type and instance is represented by a CTI associated with a specific entity, ensuring clear, consistent identification across diverse systems.

Note

For more details on CTI specification, see Cross-domain Typed Identifiers (CTI) version 1.0 Specification

What does this project provide?

The project provides the following:

  • An extensible library that provides interfaces for:
    • A parser for RAMLx files that are extended with CTI specification.
    • CTI package management to work with dependent packages in other Github repositories.
    • A validator for compiled CTI entities.
  • A CLI tool that is ready to use with CTI packages and implements functionality according to the interface.

How the technology is used

CTI technology is utilized by Acronis CyberApp technology that allows third-party ISVs (application vendors) to extend Acronis Cyber Protect Cloud platform (the platform) by:

  • Bringing new object types and APIs to the system.
  • Extending the platform base domain model types (like types of tenants, alerts, events, protection plans) by new inherited types.
  • Enforce granular access to objects of different types for the API clients.

With CTI, the following entities become explicitly defined and linked to corresponding entities:

  • Domain object types, i.e. object schemas like tenants, alerts, protection plans, etc.
  • Well-known object instances, like event topics, namespaces, groups.

To describe types and instances that are associated with the CTI, RAMLx is used.

Installation

Library

go get -u github.com/acronis/go-cti

CLI

go install github.com/acronis/go-cti/cmd/cti@latest

CLI Reference

Note

By default, all commands are executed in the current working directory. You can use the global --working-dir argument to specify the working directory, if necessary.

cti init

Initializes a CTI package. Writes index.json and .ramlx folder with CTI specification files for RAMLx.

Example:

cti init

cti pkg get

cti pkg get <git_remote>@<git_ref>

Fetches the package from the specified git remote and appends the package in the dependencies list of the current component.

Example:

cti pkg get github.com/acronis/sample-package@v1

cti validate

Parses and validates the package against RAMLx.

Example:

cti validate

cti pack

Packs the package into a bundle. The valid package should be in the current working directory (or directory specified by --working-dir).

Example:

> cti pack --include-source --format zip --prefix output --output=sample-package.cti

> ls output
sample-package.cti

--include-source

Includes the source files in the bundle. By default, the source files are not included. Hidden files (starting with a dot) are not included in the bundle.

--format

The format of the output bundle. Supported formats are zip and tgz. Default is tgz.

--prefix

The directory where the output bundle will be saved. Default is ..

--output

The name of the output bundle. Default is bundle.cti. Please note that the extension is not added automatically.