module-registry

The module-registry service is a private registry for Terraform/Opentofu modules

List modules

List all modules from the module registry

Securityx-api-key
Request
query Parameters
limit
integer <int64> [ 1 .. 1000 ]
Default: 30

Limit is the number of records to return for a page.

Example: limit=30
page
integer <int64> >= 1
Default: 1

Page is the page number to return relative to the page 'limit'.

Example: page=1
searchTerm
string
Default: ""

Filter results by partial name match

Example: searchTerm=mymod
sort
string
Default: "name,ASC"

Sort order for results

Enum: "name,ASC" "name,DESC" "updated,ASC" "updated,DESC"
Example: sort=name,DESC
header Parameters
Harness-Account
required
string

account name

Example: Ut aut exercitationem accusamus repellat quidem.
Responses
200

OK response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

get/iacm/api/modules
Request samples
Response samples
application/json
[
  • {
    },
  • {
    },
  • {
    }
]

Create module

Create a new module in the module registry

Securityx-api-key
Request
header Parameters
Harness-Account
required
string [ 1 .. 128 ] characters

account that owns the module

Example: 91
Request Body schema: application/json
required
description
string

description of the module

git_tag_style
string

Git Tag Style

name
required
string [ 1 .. 128 ] characters

module name

org
string [ 1 .. 1024 ] characters

org that owns the module

project
string [ 1 .. 1024 ] characters

project that owns the module

repository
string

Repository is the name of the repository to use.

repository_branch
string

Repository Branch in which the code should be accessed.

repository_commit
string

Repository Commit/Tag in which the code should be accessed.

repository_connector
string

Repository Connector is the reference to the connector to use for this code.

repository_path
string
Default: ""

Repository Path is the path in which the infra code resides.

system
required
string [ 1 .. 128 ] characters ^[a-z]+$

system name

tags
string

tags defining the module

Responses
200

OK response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

post/iacm/api/modules
Request samples
application/json
{
  • "description": "Nostrum voluptas consectetur perferendis ipsa.",
  • "git_tag_style": "In accusantium sunt.",
  • "name": "o5",
  • "org": "vz",
  • "project": "f31",
  • "repository": "Dolor tempore ipsa aut fugit ut.",
  • "repository_branch": "main",
  • "repository_commit": "abc10ed",
  • "repository_connector": "Porro enim molestiae laborum molestiae vero.",
  • "repository_path": "",
  • "system": "d6",
  • "tags": "Distinctio beatae."
}
Response samples
application/json
{
  • "account": "a",
  • "created": 6646991267384452000,
  • "description": "Repellat iure alias voluptatem.",
  • "id": "aaaaaaaa-bbbb-cccc-eeee-ffffffffffff",
  • "name": "l",
  • "repository": "Maiores a ad.",
  • "repository_branch": "main",
  • "repository_commit": "abc10ed",
  • "repository_connector": "Dolores veritatis.",
  • "repository_path": "",
  • "system": "16",
  • "tags": "Delectus et explicabo odit harum mollitia sint.",
  • "updated": 1996121038576849700
}

Delete module

Delete a module from the module registry

Securityx-api-key
Request
path Parameters
id
required
string

id

Example: Assumenda qui voluptas quia quibusdam earum.
header Parameters
Harness-Account
required
string

account name

Example: Est sunt minus sed repellendus voluptatem.
Responses
204

No Content response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

delete/iacm/api/modules/{id}
Request samples

List module by id

List a module from the module registry by ID

Securityx-api-key
Request
path Parameters
id
required
string

module id

Example: A pariatur consequatur est.
header Parameters
Harness-Account
required
string

account name

Example: Veniam voluptates quis.
Responses
200

OK response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

get/iacm/api/modules/{id}
Request samples
Response samples
application/json
{
  • "account": "ema",
  • "created": 1115554375052084000,
  • "description": "Laborum fugiat.",
  • "git_tag_style": "Odit voluptatem est id aut hic doloremque.",
  • "id": "aaaaaaaa-bbbb-cccc-eeee-ffffffffffff",
  • "module_error": "Dignissimos tempore ratione.",
  • "name": "u",
  • "org": "gg",
  • "project": "4",
  • "repository": "Ipsam consequatur ad.",
  • "repository_branch": "main",
  • "repository_commit": "abc10ed",
  • "repository_connector": "Vero quis necessitatibus qui eligendi.",
  • "repository_path": "",
  • "repository_url": "Sit cum praesentium necessitatibus aut earum et.",
  • "synced": 2483636887108303000,
  • "system": "xn",
  • "tags": "Tenetur et deserunt.",
  • "testing_enabled": false,
  • "testing_metadata": {
    },
  • "updated": 2081494750578636000,
  • "versions": [
    ]
}

Update module

Update a module in the module registry

Securityx-api-key
Request
path Parameters
id
required
string

module id

Example: aaaaaaaa-bbbb-cccc-eeee-ffffffffffff
header Parameters
Harness-Account
required
string [ 1 .. 128 ] characters

account that owns the module

Example: ue
Request Body schema: application/json
required
description
string

description of the module

git_tag_style
string

Git Tag Style

name
required
string [ 1 .. 128 ] characters

module name

org
string [ 1 .. 1024 ] characters

org that owns the module

project
string [ 1 .. 1024 ] characters

project that owns the module

repository
string

Repository is the name of the repository to use.

repository_branch
string

Repository Branch in which the code should be accessed.

repository_commit
string

Repository Commit/Tag in which the code should be accessed.

repository_connector
string

Repository Connector is the reference to the connector to use for this code.

repository_path
string
Default: ""

Repository Path is the path in which the infra code resides.

system
required
string [ 1 .. 128 ] characters ^[a-z]+$

system name

tags
string

tags defining the module

Responses
200

OK response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

put/iacm/api/modules/{id}
Request samples
application/json
{
  • "description": "Perspiciatis vitae harum suscipit quia modi et.",
  • "git_tag_style": "Est dignissimos animi.",
  • "name": "q",
  • "org": "fp",
  • "project": "q8",
  • "repository": "Maiores quisquam error et voluptas aspernatur autem.",
  • "repository_branch": "main",
  • "repository_commit": "abc10ed",
  • "repository_connector": "Vitae esse sit fuga.",
  • "repository_path": "",
  • "system": "u",
  • "tags": "Quae similique perspiciatis ea odit temporibus."
}

Create testing pipeline

Create a new testing pipeline for a given module

Securityx-api-key
Request
path Parameters
id
required
string

module id

Example: Quam dolore sunt.
header Parameters
Harness-Account
required
string [ 1 .. 128 ] characters

Account is the internal customer account ID.

Example: 0
Request Body schema: application/json
required
org
required
string [ 1 .. 128 ] characters

Org is the organisation identifier.

project
required
string [ 1 .. 128 ] characters

Project is the project identifier.

Responses
201

Created response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

post/iacm/api/modules/{id}/pipeline
Request samples
application/json
{
  • "org": "eg",
  • "project": "zrk"
}

Sync module metadata

Sync the module metadata from the module registry

Securityx-api-key
Request
path Parameters
id
required
string

id

Example: Dolores facilis.
header Parameters
Harness-Account
required
string

account name

Example: Accusantium cum saepe.
Responses
204

No Content response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

post/iacm/api/modules/{id}/sync
Request samples

Disable testing

Disable testing for a module

Securityx-api-key
Request
path Parameters
id
required
integer <int64>

module id

Example: 2291597251666637600
header Parameters
Harness-Account
required
string

account name

Example: Enim perferendis reiciendis accusamus et dolorem sit.
Responses
204

No Content response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

delete/iacm/api/modules/{id}/testing
Request samples

Enable testing

Enable testing for a module

Securityx-api-key
Request
path Parameters
id
required
string

module id

Example: Repellendus magni aut et eius impedit.
header Parameters
Harness-Account
required
string [ 1 .. 128 ] characters

Account is the internal customer account ID.

Example: 36
Request Body schema: application/json
required
org
required
string [ 1 .. 128 ] characters

Org is the organisation identifier.

pipeline_id
Array of strings

pipelines to create the webhooks to trigger the executions for testing

project
required
string [ 1 .. 128 ] characters

Project is the project identifier.

provider_connector
required
string

provider connector

provisioner_type
required
string

provisioner type

provisioner_version
required
string

provisioner version

release_pipeline
string

pipeline to create the webhooks for releases

Responses
204

No Content response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

post/iacm/api/modules/{id}/testing
Request samples
application/json
{
  • "org": "z8k",
  • "pipeline_id": [
    ],
  • "project": "f",
  • "provider_connector": "Est maxime ut explicabo maxime tempora.",
  • "provisioner_type": "Hic omnis sapiente.",
  • "provisioner_version": "Qui quaerat voluptatem maxime.",
  • "release_pipeline": "Nostrum dolore est sit ut."
}

Update module testing

Update module testing metadata

Securityx-api-key
Request
path Parameters
id
required
string

module id

Example: Veniam assumenda.
header Parameters
Harness-Account
required
string [ 1 .. 128 ] characters

Account is the internal customer account ID.

Example: 23t
Request Body schema: application/json
required
org
required
string [ 1 .. 128 ] characters

Org is the organisation identifier.

pipeline_id
Array of strings

pipelines to create the webhooks to trigger the executions for testing

project
required
string [ 1 .. 128 ] characters

Project is the project identifier.

provider_connector
required
string

provider connector

provisioner_type
required
string

provisioner type

provisioner_version
required
string

provisioner version

release_pipeline
string

pipeline to create the webhooks for releases

Responses
200

OK response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

put/iacm/api/modules/{id}/testing
Request samples
application/json
{
  • "org": "9p3",
  • "pipeline_id": [
    ],
  • "project": "q",
  • "provider_connector": "Dolore voluptatum dignissimos ut.",
  • "provisioner_type": "Dolore aut eum id aut dolor.",
  • "provisioner_version": "Assumenda illum dolores quis ratione.",
  • "release_pipeline": "Nesciunt totam omnis dolor facere."
}

List module metadata

List the module metadata from the module registry

Securityx-api-key
Request
path Parameters
module_id
required
string

module id

Example: Repellat cupiditate earum laboriosam ipsam.
query Parameters
version
required
string

version of the module

Example: version=Enim sit quia.
submodule
string

submodule name

Example: submodule=Veniam facere ipsa deleniti unde et.
header Parameters
Harness-Account
required
string

account name

Example: Sequi illum nobis.
Responses
200

OK response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

get/iacm/api/modules/{module_id}/metadata
Request samples
Response samples
application/json
{
  • "account": "Atque earum voluptatum.",
  • "dependencies": [
    ],
  • "metadata_error": "Et ut.",
  • "module_version": "In et sit ut id delectus illum.",
  • "name": "Cumque laudantium et ea aut.",
  • "outputs": [
    ],
  • "providers": [
    ],
  • "resources": [
    ],
  • "submodule": [
    ],
  • "system": "Et ut et vel.",
  • "variables": [
    ]
}

List module readme

List the module readme from the module registry

Securityx-api-key
Request
path Parameters
module_id
required
string

module id

Example: Architecto eos eos quia similique atque expedita.
query Parameters
version
required
string

version of the module

Example: version=Quaerat libero occaecati aperiam.
submodule
string

submodule name

Example: submodule=Quibusdam eos aliquid amet saepe non.
header Parameters
Harness-Account
required
string

account name

Example: Mollitia dolorum facere.
Responses
200

OK response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

get/iacm/api/modules/{module_id}/readme
Request samples
Response samples
application/json
"string"

Send an event related with a module execution

Send an event related with a module execution

Securityx-api-key
Request
path Parameters
moduleId
required
string [ 1 .. 1024 ] characters

module id associated with this event

Example: 7
Request Body schema: application/json
required
account
required
string [ 1 .. 128 ] characters

Account is the internal customer account ID.

eventType
required
string

The type of event that occurred

object (ModuleExecutionMetadata)
org
required
string [ 1 .. 128 ] characters

Org is the organisation identifier.

project
required
string [ 1 .. 128 ] characters

Project is the project identifier.

Responses
200

OK response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

post/iacm/api/modules/{moduleId}/events
Request samples
application/json
{
  • "account": "3d",
  • "eventType": "Repellendus assumenda ratione libero.",
  • "metadata": {
    },
  • "org": "7",
  • "project": "95"
}

List executions for a specific module

List all module executions for a module.

Securityx-api-key
Request
path Parameters
moduleId
required
string

Module identifier

Example: Et ipsa rem recusandae consequatur animi nam.
query Parameters
limit
integer <int64> [ 1 .. 1000 ]
Default: 30

Limit is the number of records to return for a page.

Example: limit=30
page
integer <int64> >= 1
Default: 1

Page is the page number to return relative to the page 'limit'.

Example: page=1
pipeline_execution_id
string

Pipeline identifier

Example: pipeline_execution_id=Dolorem ullam eos.
status
Array of strings

Status of the execution

Example: status=Soluta est ea ea voluptas similique.&status=Sunt eum quae quia eos.&status=Dolorem vero aliquid recusandae.
start_time
integer <int64>

Specify the start time for the query

Example: start_time=1691150743950
end_time
integer <int64>

Specify the end time limit for the query

Example: end_time=1691150743950
header Parameters
Harness-Account
required
string [ 1 .. 128 ] characters

Account is the internal customer account ID.

Example: 7ww
Responses
200

OK response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

get/iacm/api/modules/{moduleId}/executions
Request samples
Response samples
application/json
[
  • {
    },
  • {
    },
  • {
    },
  • {
    }
]

Create a new module execution

Create a new module execution.

Securityx-api-key
Request
path Parameters
moduleId
required
string

The unique identifier for the associated module

Example: Et non cumque ab voluptate voluptas quidem.
Request Body schema: application/json
required
account
required
string [ 1 .. 128 ] characters

Account is the internal customer account ID.

org
required
string [ 1 .. 128 ] characters

Org is the organisation identifier.

pipeline
required
string

The unique identifier for the associated pipeline

pipelineExecutionId
required
string

The unique identifier for the associated pipeline execution

pipelineStageId
required
string

The unique identifier for the associated pipeline stage

project
required
string [ 1 .. 128 ] characters

Project is the project identifier.

Responses
200

OK response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

post/iacm/api/modules/{moduleId}/executions
Request samples
application/json
{
  • "account": "w6v",
  • "org": "k",
  • "pipeline": "Quaerat asperiores voluptates corrupti fuga.",
  • "pipelineExecutionId": "Ipsum sint consequuntur necessitatibus quia.",
  • "pipelineStageId": "Non quam cum nisi.",
  • "project": "u"
}
Response samples
application/json
{
  • "account": "car",
  • "created": 8918672159886281000,
  • "metadata": {
    },
  • "moduleId": "Voluptatem aliquid.",
  • "org": "4",
  • "project": "va",
  • "status": "Consequatur adipisci id suscipit."
}

Create module data

Create a new module in the module registry

Securityx-api-key
Request
path Parameters
name
required
string

module name

Example: Voluptatem labore aut tempora est eos.
system
required
string

system name

Example: Sed voluptatum.
version
required
string

version of the module

Example: Nobis corrupti sequi qui aliquam ea.
header Parameters
Harness-Account
required
string

account name

Example: Qui tempora non id soluta velit.
Request Body schema: application/json
required
download_url
required
string

download url of the module

object

error from the tag operation

examples_paths
Array of strings

path of the examples relative to the module

git_tag
required
string

git tag of the module

metadata
required
string

metadata to be parsed

repo_url
string

url pointing to the repo

submodule_name
string

name of the submodule been processed

submodule_paths
Array of strings

path of the submodules relative to the module

Responses
201

Created response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

post/iacm/api/modules/{name}/{system}/{version}/metadata
Request samples
application/json
{
  • "download_url": "Nihil facilis.",
  • "error": {
    },
  • "examples_paths": [
    ],
  • "git_tag": "Quia a sunt reprehenderit corporis tempora.",
  • "metadata": "Eligendi voluptas veritatis.",
  • "repo_url": "Et cumque a.",
  • "submodule_name": "Reiciendis maxime tempora voluptatem ea.",
  • "submodule_paths": [
    ]
}

Create module readme

Endpoint to push the Readme for a given module

Securityx-api-key
Request
path Parameters
name
required
string

module name

Example: Deleniti expedita in reprehenderit quas.
system
required
string

system name

Example: Animi rerum sint.
version
required
string

version of the module

Example: Ut quia facere.
query Parameters
submoduleName
string

submodule name

Example: submoduleName=Dicta voluptatem.
header Parameters
Harness-Account
required
string

account name

Example: Dolorum sint aut laudantium.
Content-Length
integer <int64>

Size in bytes of the readme

Example: 2201822058248807700
Responses
201

Created response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

post/iacm/api/modules/{name}/{system}/{version}/readme
Request samples

Create module tags

List all tags for a given module

Securityx-api-key
Request
path Parameters
name
required
string [ 1 .. 128 ] characters

module name

Example: j
system
required
string [ 1 .. 128 ] characters ^[a-z]+$

system name

Example: ce1
header Parameters
Harness-Account
required
string [ 1 .. 128 ] characters

account that owns the module

Example: 0
Request Body schema: application/json
required
object

error from the tag operation

tags
Array of strings

tags defining the module

Responses
201

Created response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

post/iacm/api/modules/{name}/{system}/tags
Request samples
application/json
{
  • "error": {
    },
  • "tags": [
    ]
}

List connectors

List all connectors from the module registry for a specific account

Securityx-api-key
Request
query Parameters
org
string

organization name

Example: org=Aspernatur animi rerum animi modi exercitationem et.
project
string

project name

Example: project=Deserunt itaque aut voluptate impedit.
header Parameters
Harness-Account
required
string

account name

Example: Sint neque laborum animi recusandae.
Responses
200

OK response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

get/iacm/api/modules/connectors
Request samples
Response samples
application/json
[
  • "Sequi minus libero.",
  • "Quo deserunt molestias sunt.",
  • "At officia repellendus ut unde laudantium aut.",
  • "Et eaque."
]

Download module

Download a module given a specific version

Securityx-api-key
Request
path Parameters
account
required
string

account name

Example: Animi porro omnis laborum ducimus facilis voluptatem.
name
required
string

module name

Example: Vero ab non sit similique architecto corporis.
system
required
string

system name

Example: Illum et nam expedita natus.
version
required
string

version of the module

Example: Dolor sapiente impedit.
Responses
204

No Content response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

get/iacm/registry/account/{account}/{name}/{system}/{version}/download
Request samples

List module versions

list-module-versions returns an array of versions for a given module

Securityx-api-key
Request
path Parameters
account
required
string

account name

Example: Dolor mollitia.
name
required
string

module name

Example: Omnis et ipsa.
system
required
string

system name

Example: Quidem expedita mollitia.
Responses
200

OK response.

400

BadRequestError: Bad Request response.

401

UnauthorizedError: Unauthorized response.

403

ForbiddenError: Forbidden response.

404

NotFoundError: Not Found response.

408

TimeoutError: Request Timeout response.

409

ConflictError: Conflict response.

423

LockedError: Locked response.

499

ContextCancelledError: response.

500

InternalServerError: Internal Server Error response.

502

BadGatewayError: Bad Gateway response.

get/iacm/registry/account/{account}/{name}/{system}/versions
Request samples
Response samples
application/json
{
  • "modules": [
    ]
}