Skip to main content

Python API for CONS3RT

Project description

pycons3rtapi

Python API for CONS3RT

Features

  • Python bindings for CONS3RT API calls

  • The cons3rt command line interface (CLI) for easy ReST calls

Installation

### Install from pip (latest release)

If you have Python 2.7 installed with pip, you can run:

pip install pycons3rtapi

Also you can install specific versions:

pip install pycons3rtapi==0.0.3

### Install from source (development)

git clone https://github.com/cons3rt/pycons3rtapi
cd pycons3rtapi
python setup.py install

### Install with CONS3RT assets

Search for community pycons3rtapi software assets in HmC or cons3rt.com to use.

To create your own pycons3rtapi assets, from the pycons3rtapi repo root directory, run from a Bash shell:

./scripts/make-assets.sh

This will create your own Linux and Windows pycons3rt assets for import:

./build/asset-pycons3rtapi-linux.zip
./build/asset-pycons3rtapi-windows.zip

Configuration

Run the following command to configure pycons3rtapi:

cons3rt config

Follow the instructions to create your CONS3RT API configuration. This creates a configuration file at ~/.cons3rt/config.json.

Alternatively, you can stage your own config file to ~/.cons3rt/config.json, or use one of the samples in the sample-configs directory.

### ReST API Tokens

Note: See the [this article](https://kb.cons3rt.com/kb/accounts/api-tokens) for info on generating an API token for one or more of your projects.

Sample Code

In your python code:

from pycons3rtapi.cons3rtapi import Cons3rtApi, Cons3rtApiError

c5t = Cons3rtApi()

# list scenarios
scenarios = c5t.list_scenarios()

# retrieve active deployment runs
active_drs = c5t.list_deployment_runs_in_virtualization_realm(
    vr_id=10,
    search_type='SEARCH_ACTIVE'
)

# retrieve deployment run details
active_dr_details = c5t.retrieve_deployment_run_details(dr_id='12345')

# For some calls you can store a JSON file on the local file system and call
# with the path to the JSON file

# Launch a deployment from a JSON file
# Note: edit the deployment_id and virtualizationRealmId in the JSON file
dr_id = c5t.launch_deployment_run_from_json(
    deployment_id='12345',
    json_file='/path/to/json/file.json'
)

# Create a simple Red Hat 7 system
system_id = c5t.create_system(
    name='Hello World System',
    operatingSystem='RHEL_7_X64',
    minNumCpus=2,
    minRam=2000,
    minBootDiskCapacity=102400,
    subtype='virtualHost'
)

# Build scenario hosts data, a list of systems to be launched together in a scenario
scenario_hosts = [
    {
        'systemRole': 'helloWorldSystem1',
        'buildOrder': 1,
        'systemModule':
        {
            'subtype': 'virtualHost',
            'id': system_id
        }
    },
    {
        'systemRole': 'helloWorldSystem2',
        'buildOrder': 2,
        'systemModule':
        {
            'subtype': 'virtualHost',
            'id': system_id
        }
    }
]

# Create a scenario from the scenario hosts
scenario_id = c5t.create_scenario(
    name='Hello World Scenario',
    scenario_hosts=scenario_hosts
)

# Add the scenario to a deployment
deployment_id = c5t.create_deployment(
    name='Hello World Deployment',
    scenario_id=scenario_id
)

# Create run options for the deployment
# Note: replace the virtualizationRealmId
run_options = {
    'deploymentRunName': 'Hello World',
    'virtualizationRealmId': 12345,
    'username': 'my_username',
    'password': 'TMEroot!!abc123',
    'endState': 'TESTS_EXECUTED_RESOURCES_RESERVED'
}

# Run the deployment
run_id = c5t.run_deployment(
    deployment_id=deployment_id,
    run_options=run_options
)

# You have successfully build and launched a deployment run!!

Here is a sample file.json for launch_deployment_run_from_json, replace the virtualizationRealmId with yours:

{
  "deploymentRunName": "ReST Test",
  "endState": "TESTS_EXECUTED_RESOURCES_RESERVED",
  "virtualizationRealmId": "12345",
  "username": "myuser",
  "password": "mypassword",
  "retainOnError": "true"
}

CONS3RT CLI

The “cons3rt” command line interface (CLI) gives you a convenience way to make ReST API calls by typing simple commands. If you have followed the instructions this far you are already set up to run CLI commands. If not, see the installation section.

Run cons3rt CLI command as follows:

cons3rt <command> <options>

Commands and various options are described below:

config

Configures pycons3rtapi and the CLI with your CONS3RT site connection information and API key.

No options required.

cloudspace

Perform actions on your CONS3RT cloudspaces. You will need to get cloudspace IDs.

Options:

  • –id = Specify a single cloudspace ID

  • –ids = Specify a list of cloudspace IDs (e.g –ids=288,432,648)

  • –release_active_runs = Releases all active runs in the cloudspace ID(s)

  • –delete_inactive_runs = Deletes all inactive runs from the cloudspace ID(s)

Examples:

cons3rt cloudspace --release_active_runs --delete_inactive_runs --ids=288,432,648

Asset Documentation

Asset Prerequisites

1. Git 1. Python 2.7.x 1. pip 1. [pycons3rt](https://github.com/cons3rt/pycons3rt) python package installed 1. Internet connectivity

Asset Exit Codes

Linux

  • 0 - Success

  • Non-zero - See log file in /var/log/cons3rt for more details

Windows

  • 0 - Success

  • Non-zero - See log file in C:cons3rtlog for more details

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycons3rtapi-0.0.12.tar.gz (43.4 kB view details)

Uploaded Source

Built Distribution

pycons3rtapi-0.0.12-py2-none-any.whl (41.6 kB view details)

Uploaded Python 2

File details

Details for the file pycons3rtapi-0.0.12.tar.gz.

File metadata

  • Download URL: pycons3rtapi-0.0.12.tar.gz
  • Upload date:
  • Size: 43.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.1 CPython/2.7.17

File hashes

Hashes for pycons3rtapi-0.0.12.tar.gz
Algorithm Hash digest
SHA256 1bffa1a5efca12f92883bc3e5faea8179b71807eadf535bd5a550fe55c865d56
MD5 069a629300e8d0c2d11cd4f62cb38b05
BLAKE2b-256 3c0c4bdfa448bba441ed23446dabdbabce7ac8d5b3a462729e4d33663b8b9681

See more details on using hashes here.

File details

Details for the file pycons3rtapi-0.0.12-py2-none-any.whl.

File metadata

  • Download URL: pycons3rtapi-0.0.12-py2-none-any.whl
  • Upload date:
  • Size: 41.6 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.1 CPython/2.7.17

File hashes

Hashes for pycons3rtapi-0.0.12-py2-none-any.whl
Algorithm Hash digest
SHA256 0bb4cf3678c7a02eece200c515b4822873b74d2b7eaf4113c1d012fa45a48492
MD5 71236633d3e6ba854167668d0bc8bb18
BLAKE2b-256 e06a5ddcd3aec69300797b026e70ccc1380ce7b946f71fecaf75a64570e635b7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page