garage-admin-sdk-generator/python
Quentin 2b685b90be
Support configuring gateways
2022-09-23 20:59:23 +02:00
..
.openapi-generator Use operationId to set friendlier names 2022-09-13 16:10:52 +02:00
docs Support configuring gateways 2022-09-23 20:59:23 +02:00
garage_admin_sdk Support configuring gateways 2022-09-23 20:59:23 +02:00
test Use operationId to set friendlier names 2022-09-13 16:10:52 +02:00
.gitignore Add Python OpenAPI 2022-09-12 17:02:35 +02:00
.gitlab-ci.yml Improve code generation 2022-09-13 16:00:03 +02:00
.openapi-generator-ignore Add Python OpenAPI 2022-09-12 17:02:35 +02:00
.travis.yml Improve code generation 2022-09-13 16:00:03 +02:00
README.md Update with required fields 2022-09-14 15:45:21 +02:00
git_push.sh Add Python OpenAPI 2022-09-12 17:02:35 +02:00
requirements.txt Add Python OpenAPI 2022-09-12 17:02:35 +02:00
setup.cfg Add Python OpenAPI 2022-09-12 17:02:35 +02:00
setup.py Improve code generation 2022-09-13 16:00:03 +02:00
test-requirements.txt Add Python OpenAPI 2022-09-12 17:02:35 +02:00
tox.ini Improve code generation 2022-09-13 16:00:03 +02:00

README.md

garage-admin-sdk

Administrate your Garage cluster programatically, including status, layout, keys, buckets, and maintainance tasks.

Disclaimer: The API is not stable yet, hence its v0 tag. The API can change at any time, and changes can include breaking backward compatibility. Read the changelog and upgrade your scripts before upgrading. Additionnaly, this specification is very early stage and can contain bugs, especially on error return codes/types that are not tested yet. Do not expect a well finished and polished product!

This Python package is automatically generated by the OpenAPI Generator project:

  • API version: v0.7.3
  • Package version: 0.7.3
  • Build package: org.openapitools.codegen.languages.PythonClientCodegen

Requirements.

Python >=3.6

Installation & Usage

pip install

If the python package is hosted on a repository, you can install directly using:

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)

Then import the package:

import garage_admin_sdk

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import garage_admin_sdk

Getting Started

Please follow the installation procedure and then run the following:


import time
import garage_admin_sdk
from pprint import pprint
from garage_admin_sdk.api import key_api
from garage_admin_sdk.model.add_key_request import AddKeyRequest
from garage_admin_sdk.model.import_key_request import ImportKeyRequest
from garage_admin_sdk.model.key_info import KeyInfo
from garage_admin_sdk.model.list_keys200_response_inner import ListKeys200ResponseInner
from garage_admin_sdk.model.update_key_request import UpdateKeyRequest
# Defining the host is optional and defaults to http://localhost:3903/v0
# See configuration.py for a list of all supported configuration parameters.
configuration = garage_admin_sdk.Configuration(
    host = "http://localhost:3903/v0"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization: bearerAuth
configuration = garage_admin_sdk.Configuration(
    access_token = 'YOUR_BEARER_TOKEN'
)


# Enter a context with an instance of the API client
with garage_admin_sdk.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = key_api.KeyApi(api_client)
    add_key_request = AddKeyRequest(
        name="test-key",
    ) # AddKeyRequest | \"You can set a friendly name for this key, send an empty string instead\" 

    try:
        # Create a new API key
        api_response = api_instance.add_key(add_key_request)
        pprint(api_response)
    except garage_admin_sdk.ApiException as e:
        print("Exception when calling KeyApi->add_key: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to http://localhost:3903/v0

Class Method HTTP request Description
KeyApi add_key POST /key Create a new API key
KeyApi delete_key DELETE /key?id={access_key} Delete a key
KeyApi get_key GET /key?id={access_key} Get key information
KeyApi import_key POST /key/import Import an existing key
KeyApi list_keys GET /key List all keys
KeyApi search_key GET /key?search={pattern} Select key by pattern
KeyApi update_key POST /key?id={access_key} Update a key
LayoutApi add_layout POST /layout Send modifications to the cluster layout
LayoutApi apply_layout POST /layout/apply Apply staged layout
LayoutApi get_layout GET /layout Details on the current and staged layout
LayoutApi revert_layout POST /layout/revert Clear staged layout
NodesApi add_node POST /connect Connect target node to other Garage nodes
NodesApi get_nodes GET /status Status of this node and other nodes in the cluster

Documentation For Models

Documentation For Authorization

bearerAuth

  • Type: Bearer authentication

Author

Notes for Large OpenAPI documents

If the OpenAPI document is large, imports in garage_admin_sdk.apis and garage_admin_sdk.models may fail with a RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:

Solution 1: Use specific imports for apis and models like:

  • from garage_admin_sdk.api.default_api import DefaultApi
  • from garage_admin_sdk.model.pet import Pet

Solution 2: Before importing the package, adjust the maximum recursion limit as shown below:

import sys
sys.setrecursionlimit(1500)
import garage_admin_sdk
from garage_admin_sdk.apis import *
from garage_admin_sdk.models import *