cloudaux


Namecloudaux JSON
Version 1.9.6 PyPI version JSON
download
home_pagehttps://github.com/Netflix-Skunkworks/cloudaux
SummaryCloud Auxiliary is a python wrapper and orchestration module for interacting with cloud providers
upload_time2021-08-11 06:08:45
maintainer
docs_urlNone
authorThe Cloudaux Developers
requires_python
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage
            # cloudaux

[![Join the chat at https://gitter.im/Netflix-Skunkworks/cloudaux](https://badges.gitter.im/Netflix-Skunkworks/cloudaux.svg)](https://gitter.im/Netflix-Skunkworks/cloudaux?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

[![Version](http://img.shields.io/pypi/v/cloudaux.svg?style=flat)](https://pypi.python.org/pypi/cloudaux/)

[![Build Status](https://travis-ci.com/Netflix-Skunkworks/cloudaux.svg?branch=master)](https://travis-ci.com/Netflix-Skunkworks/cloudaux)

[![Coverage Status](https://coveralls.io/repos/github/Netflix-Skunkworks/cloudaux/badge.svg?branch=master)](https://coveralls.io/github/Netflix-Skunkworks/cloudaux?branch=master)

Cloud Auxiliary is a python wrapper and orchestration module for interacting with cloud providers.


## NOTE: What are we supporting?
CloudAux was initially developed to provide convenience wrappers for common patterns when working with cloud infrastructures (like role assumption, and multi-regionality). It also contained some convenience functions to describe entire resources with the wrappers to fetch the full resource configuration details.

However, over time, we have stopped relying on the resource configuration wrapper capabilities and instead are only supporting the AWS convenience decorators, such as `sts_conn`, and `paginated` to name a few.  If you wish to make use of CloudAux, simply wrap your boto calls in a function with the decorators applied to them.

## NOTE: Python 2 Deprecation
Python 2 support has been dropped as of version 1.9.0. For projects that still require Python 2 support, please use the latest 1.8.x builds.

## Documentation

 - [CloudAux](README.md "CloudAux Readme") [THIS FILE]
 - [AWS](cloudaux/aws/README.md "Amazon Web Services Docs")
 - [GCP](cloudaux/gcp/README.md "Google Cloud Platform Docs")
 - [OpenStack](cloudaux/openstack/README.md "OpenStack Docs")

## Features

AWS:
 - intelligent connection caching.
 - handles pagination for certain client methods.
 - rate limit handling, with exponential backoff.
 - multi-account sts:assumerole abstraction.
 - orchestrates all the calls required to fully describe an item.
 - control which attributes are returned with flags.

GCP:
 - choosing the best client based on service
 - client caching
 - general caching and stats decorators available
 - basic support for non-specified discovery-API services
 - control which attributes are returned with flags.

OpenStack:
 - intelligent connection caching.
 - generalized OpenStack SDK generator usage.
 - orchestrates all the calls required to fully describe an item.
 - control which attributes are returned flags.

## Orchestration Supported Technologies

AWS:
 - IAM Role
 - IAM User
 - IAM SAML Provider
 - [S3](cloudaux/orchestration/aws/s3.md)
 - ELB (v1)
 - ELBv2 (ALB)
 - [Lambda Functions](cloudaux/orchestration/aws/lambda_function.md)
 - [Glacier](cloudaux/orchestration/aws/glacier.md)
 - [EC2 Image](cloudaux/orchestration/aws/image.md)
 - [Cloudwatch Events](cloudaux/orchestration/aws/events.md)
 - [SQS](cloudaux/orchestration/aws/sqs.md)

GCP: (DEPRECATED - NO LONGER SUPPORTED)
 - IAM Service Accounts
 - Network/Subnetworks
 - Storage Buckets

OpenStack: (DEPRECATED - NO LONGER SUPPORTED)
 - Network/Subnet
 - Floating IP/Router/Port
 - User
 - Instance/Image
 - Load Balancer
 - Object Storage Container

## Install

    pip install cloudaux

For GCP support run:

    pip install cloudaux\[gcp\]

For OpenStack support run:

    pip install cloudaux\[openstack\]

## Examples



### AWS Example

    # Using wrapper methods:
    from cloudaux.aws.sqs import get_queue, get_messages
    conn_details = {
        'account_number': '111111111111',
        'assume_role': 'MyRole',
        'session_name': 'MySession',
        'region': 'us-east-1'
    }
    queue = get_queue(queue_name='MyQueue', **conn_details)
    messages = get_messages(queue=queue)


    # Using the CloudAux class
    from cloudaux import CloudAux
    CloudAux.go('kms.client.list_aliases', **conn_details)

    ca = CloudAux(**conn_details)
    ca.call('kms.client.list_aliases')


    # directly asking for a boto3 connection:
    from cloudaux.aws.sts import boto3_cached_conn
    conn = boto3_cached_conn('ec2', **conn_details)


    # Over your entire environment:
    from cloudaux.decorators import iter_account_region

    accounts = ['000000000000', '111111111111']

    conn_details = {
        'assume_role': 'MyRole',
        'session_name': 'MySession',
        'conn_type': 'boto3'
    }

    @iter_account_region('kms', accounts=accounts, regions=['us-east-1'], **conn_details)
    def list_keys(conn=None):
        return conn.list_keys()['Keys']

    # If you want your role to be read-only, you can assume your role and add the read_only flag to connection details
    # to inherit the AWS ReadOnlyAccess policy. This flag defaults to False
    # The permissions from the role being assumed will be limited to Read and List only
    conn_details = {
        'account_number': '111111111111',
        'assume_role': 'MyRole',
        'session_name': 'MySession',
        'region': 'us-east-1',
        'read_only': True
    }

### GCP Example -- DEPRECATED - NO LONGER SUPPORTED

    # directly asking for a client:
    from cloudaux.aws.gcp.auth import get_client
    client = get_client('gce', **conn_details)

    # Over your entire environment:
    from cloudaux.gcp.decorators import iter_project

    projects = ['my-project-one', 'my-project-two']

    # To specify per-project key_files, you can do thie following:
    # projects = [
    #  {'project': 'my-project-one', key_file='/path/to/project-one.json'},
    #  {'project': 'my-project-two', key_file='/path/to/project-two.json'}
    # ]
    #
    # To specify a single key_file for all projects, use the key_file argument
    # to the decorator
    # @iter_project(projects=projects, key_file='/path/to/key.json')
    #
    # To use default credentials, omit the key_file argument
    # @iter_project(projects=projects)

    from cloudaux.gcp.iam import list_serviceaccounts
    from cloudaux.orchestration.gcp.iam.serviceaccount import get_serviceaccount_complete

    @iter_project(projects=projects, key_file='/path/to/key.json')
    def test_iter(**kwargs):
       accounts = list_serviceaccounts(**kwargs)
       ret = []
       for account in accounts:
         ret.append(get_serviceaccount_complete(service_account=account['name']))
       return ret

### OpenStack Example -- DEPRECATED - NO LONGER SUPPORTED

    from cloudaux.openstack.decorators import _connect
    conn = _connect(cloud_name, region, yaml_file):

    # Over your entire environment:
    from cloudaux.openstack.decorators import iter_account_region, get_regions

    @iter_account_region(account_regions=get_regions())
    def list_networks(conn=None, service='network', generator='security_groups'):
        from cloudaux.openstack.utils import list_items
        list_items(**kwargs)

## Orchestration Example -- DEPRECATED - PLEASE DON'T USE THESE ANYMORE

### AWS IAM Role

    from cloudaux.orchestration.aws.iam.role import get_role, FLAGS

    # account_number may be extracted from the ARN of the role passed to get_role
    # if not included in conn.
    conn = dict(
        assume_role='SecurityMonkey',  # or whichever role you wish to assume into
        session_name='cloudaux',
        region='us-east-1'
    )

    role = get_role(
        dict(arn='arn:aws:iam::000000000000:role/myRole', role_name='myRole'),
        output='camelized',  # optional: {camelized underscored}
        flags=FLAGS.ALL,  # optional
        **conn)

    # The flags parameter is optional but allows the user to indicate that
    # only a subset of the full item description is required.
    # IAM Role Flag Options:
    #   BASE, MANAGED_POLICIES, INLINE_POLICIES, INSTANCE_PROFILES, TAGS, ALL (default)
    # For instance: flags=FLAGS.MANAGED_POLICIES | FLAGS.INSTANCE_PROFILES

    # cloudaux makes a number of calls to obtain a full description of the role
    print(json.dumps(role, indent=4, sort_keys=True))

    {
        "Arn": ...,
        "AssumeRolePolicyDocument": ...,
        "CreateDate": ...,  # str
        "InlinePolicies": ...,
        "InstanceProfiles": ...,
        "ManagedPolicies": ...,
        "Path": ...,
        "RoleId": ...,
        "RoleName": ...,
        "Tags": {},
        "_version": 3    # Orchestration results return a _Version
    }

### GCP IAM Service Account -- DEPRECATED - PLEASE DON'T USE THESE ANYMORE

    from cloudaux.orchestration.gcp.iam.serviceaccount import get_serviceaccount_complete, FLAGS
    sa_name = 'projects/my-project-one/serviceAccounts/service-account-key@my-project-one.iam.gserviceaccount.com'
    sa = get_serviceaccount_complete(sa_name, flags=FLAGS.ALL, **conn_details)
    print(json.dumps(sa, indent=4, sort_keys=True))

    # Flag options for Service Accounts are BASE, KEYS, POLICY, ALL (default).

    {
      "DisplayName": "service-account",
      "Email": "service-account@my-project-one.iam.gserviceaccount.com",
      "Etag": "BwUzTDvWgHw=",
      "Keys": [
          {
              "KeyAlgorithm": "KEY_ALG_RSA_2048",
              "Name": "projects/my-project-one/serviceAccounts/service-account@my-project-one.iam.gserviceaccount.com/keys/8be0096886f6ed5cf51abb463d3448c8aee6c6b6",
              "ValidAfterTime": "2016-06-30T18:26:45Z",
              "ValidBeforeTime": "2026-06-28T18:26:45Z"
          },
 	  ...
      ],
      "Name": "projects/my-project-one/serviceAccounts/service-account@my-project-one.iam.gserviceaccount.com",
      "Oauth2ClientId": "115386704809902483492",
      "Policy": [
          {
              "Members": [
                  "user:test-user@gmail.com"
              ],
              "Role": "roles/iam.serviceAccountActor"
          }
      ],
      "ProjectId": "my-project-one",
      "UniqueId": "115386704809902483492"
    }

### OpenStack Security Group - DEPRECATED - PLEASE DON'T USE THESE ANYMORE

    from cloudaux.orchestration.openstack.security_group import get_security_group, FLAGS

    secgroup = get_security_group(result, flags=flags, **kwargs)

    # The flags parameter is optional but allows the user to indicate that
    # only a subset of the full item description is required.
    # Security Group Flag Options:
    #   RULES, INSTANCES (default)
    # For instance: flags=FLAGS.RULES | FLAGS.INSTANCES

    print(json.dumps(secgroup, indent=4, sort_keys=True))

    {
        "assigned_to": [
            {
               "instance_id": "..."
            }
        ],
        "created_at": "...",
        "description": "...",
        "id": "...",
        "location": "...",
        "name": "...",
        "project_id": "...",
        "revision_number": 3,
        "rules": [
            {
                "rule_type": "...",
                "remote_group_id": "...",
                "from_port": "...",
                "description": "...",
                "tags": [],
                "to_port": "...",
                "ethertype": "...",
                "created_at": "...",
                "updated_at": "...",
                "security_group_id": "...",
                "revision_number": 0,
                "tenant_id": "...",
                "project_id": "..."",
                "id": "...",
                "cidr_ip": "...",
                "ip_protocol": "..."
            },
        ],
        "updated_at": "..."
    }



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Netflix-Skunkworks/cloudaux",
    "name": "cloudaux",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "The Cloudaux Developers",
    "author_email": "oss@netflix.com",
    "download_url": "https://files.pythonhosted.org/packages/75/92/fa5d00c52ce68cef3cf95f1ebbc1b9ea650c836ba2837443be6c9fab297e/cloudaux-1.9.6.tar.gz",
    "platform": "",
    "description": "# cloudaux\n\n[![Join the chat at https://gitter.im/Netflix-Skunkworks/cloudaux](https://badges.gitter.im/Netflix-Skunkworks/cloudaux.svg)](https://gitter.im/Netflix-Skunkworks/cloudaux?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n[![Version](http://img.shields.io/pypi/v/cloudaux.svg?style=flat)](https://pypi.python.org/pypi/cloudaux/)\n\n[![Build Status](https://travis-ci.com/Netflix-Skunkworks/cloudaux.svg?branch=master)](https://travis-ci.com/Netflix-Skunkworks/cloudaux)\n\n[![Coverage Status](https://coveralls.io/repos/github/Netflix-Skunkworks/cloudaux/badge.svg?branch=master)](https://coveralls.io/github/Netflix-Skunkworks/cloudaux?branch=master)\n\nCloud Auxiliary is a python wrapper and orchestration module for interacting with cloud providers.\n\n\n## NOTE: What are we supporting?\nCloudAux was initially developed to provide convenience wrappers for common patterns when working with cloud infrastructures (like role assumption, and multi-regionality). It also contained some convenience functions to describe entire resources with the wrappers to fetch the full resource configuration details.\n\nHowever, over time, we have stopped relying on the resource configuration wrapper capabilities and instead are only supporting the AWS convenience decorators, such as `sts_conn`, and `paginated` to name a few.  If you wish to make use of CloudAux, simply wrap your boto calls in a function with the decorators applied to them.\n\n## NOTE: Python 2 Deprecation\nPython 2 support has been dropped as of version 1.9.0. For projects that still require Python 2 support, please use the latest 1.8.x builds.\n\n## Documentation\n\n - [CloudAux](README.md \"CloudAux Readme\") [THIS FILE]\n - [AWS](cloudaux/aws/README.md \"Amazon Web Services Docs\")\n - [GCP](cloudaux/gcp/README.md \"Google Cloud Platform Docs\")\n - [OpenStack](cloudaux/openstack/README.md \"OpenStack Docs\")\n\n## Features\n\nAWS:\n - intelligent connection caching.\n - handles pagination for certain client methods.\n - rate limit handling, with exponential backoff.\n - multi-account sts:assumerole abstraction.\n - orchestrates all the calls required to fully describe an item.\n - control which attributes are returned with flags.\n\nGCP:\n - choosing the best client based on service\n - client caching\n - general caching and stats decorators available\n - basic support for non-specified discovery-API services\n - control which attributes are returned with flags.\n\nOpenStack:\n - intelligent connection caching.\n - generalized OpenStack SDK generator usage.\n - orchestrates all the calls required to fully describe an item.\n - control which attributes are returned flags.\n\n## Orchestration Supported Technologies\n\nAWS:\n - IAM Role\n - IAM User\n - IAM SAML Provider\n - [S3](cloudaux/orchestration/aws/s3.md)\n - ELB (v1)\n - ELBv2 (ALB)\n - [Lambda Functions](cloudaux/orchestration/aws/lambda_function.md)\n - [Glacier](cloudaux/orchestration/aws/glacier.md)\n - [EC2 Image](cloudaux/orchestration/aws/image.md)\n - [Cloudwatch Events](cloudaux/orchestration/aws/events.md)\n - [SQS](cloudaux/orchestration/aws/sqs.md)\n\nGCP: (DEPRECATED - NO LONGER SUPPORTED)\n - IAM Service Accounts\n - Network/Subnetworks\n - Storage Buckets\n\nOpenStack: (DEPRECATED - NO LONGER SUPPORTED)\n - Network/Subnet\n - Floating IP/Router/Port\n - User\n - Instance/Image\n - Load Balancer\n - Object Storage Container\n\n## Install\n\n    pip install cloudaux\n\nFor GCP support run:\n\n    pip install cloudaux\\[gcp\\]\n\nFor OpenStack support run:\n\n    pip install cloudaux\\[openstack\\]\n\n## Examples\n\n\n\n### AWS Example\n\n    # Using wrapper methods:\n    from cloudaux.aws.sqs import get_queue, get_messages\n    conn_details = {\n        'account_number': '111111111111',\n        'assume_role': 'MyRole',\n        'session_name': 'MySession',\n        'region': 'us-east-1'\n    }\n    queue = get_queue(queue_name='MyQueue', **conn_details)\n    messages = get_messages(queue=queue)\n\n\n    # Using the CloudAux class\n    from cloudaux import CloudAux\n    CloudAux.go('kms.client.list_aliases', **conn_details)\n\n    ca = CloudAux(**conn_details)\n    ca.call('kms.client.list_aliases')\n\n\n    # directly asking for a boto3 connection:\n    from cloudaux.aws.sts import boto3_cached_conn\n    conn = boto3_cached_conn('ec2', **conn_details)\n\n\n    # Over your entire environment:\n    from cloudaux.decorators import iter_account_region\n\n    accounts = ['000000000000', '111111111111']\n\n    conn_details = {\n        'assume_role': 'MyRole',\n        'session_name': 'MySession',\n        'conn_type': 'boto3'\n    }\n\n    @iter_account_region('kms', accounts=accounts, regions=['us-east-1'], **conn_details)\n    def list_keys(conn=None):\n        return conn.list_keys()['Keys']\n\n    # If you want your role to be read-only, you can assume your role and add the read_only flag to connection details\n    # to inherit the AWS ReadOnlyAccess policy. This flag defaults to False\n    # The permissions from the role being assumed will be limited to Read and List only\n    conn_details = {\n        'account_number': '111111111111',\n        'assume_role': 'MyRole',\n        'session_name': 'MySession',\n        'region': 'us-east-1',\n        'read_only': True\n    }\n\n### GCP Example -- DEPRECATED - NO LONGER SUPPORTED\n\n    # directly asking for a client:\n    from cloudaux.aws.gcp.auth import get_client\n    client = get_client('gce', **conn_details)\n\n    # Over your entire environment:\n    from cloudaux.gcp.decorators import iter_project\n\n    projects = ['my-project-one', 'my-project-two']\n\n    # To specify per-project key_files, you can do thie following:\n    # projects = [\n    #  {'project': 'my-project-one', key_file='/path/to/project-one.json'},\n    #  {'project': 'my-project-two', key_file='/path/to/project-two.json'}\n    # ]\n    #\n    # To specify a single key_file for all projects, use the key_file argument\n    # to the decorator\n    # @iter_project(projects=projects, key_file='/path/to/key.json')\n    #\n    # To use default credentials, omit the key_file argument\n    # @iter_project(projects=projects)\n\n    from cloudaux.gcp.iam import list_serviceaccounts\n    from cloudaux.orchestration.gcp.iam.serviceaccount import get_serviceaccount_complete\n\n    @iter_project(projects=projects, key_file='/path/to/key.json')\n    def test_iter(**kwargs):\n       accounts = list_serviceaccounts(**kwargs)\n       ret = []\n       for account in accounts:\n         ret.append(get_serviceaccount_complete(service_account=account['name']))\n       return ret\n\n### OpenStack Example -- DEPRECATED - NO LONGER SUPPORTED\n\n    from cloudaux.openstack.decorators import _connect\n    conn = _connect(cloud_name, region, yaml_file):\n\n    # Over your entire environment:\n    from cloudaux.openstack.decorators import iter_account_region, get_regions\n\n    @iter_account_region(account_regions=get_regions())\n    def list_networks(conn=None, service='network', generator='security_groups'):\n        from cloudaux.openstack.utils import list_items\n        list_items(**kwargs)\n\n## Orchestration Example -- DEPRECATED - PLEASE DON'T USE THESE ANYMORE\n\n### AWS IAM Role\n\n    from cloudaux.orchestration.aws.iam.role import get_role, FLAGS\n\n    # account_number may be extracted from the ARN of the role passed to get_role\n    # if not included in conn.\n    conn = dict(\n        assume_role='SecurityMonkey',  # or whichever role you wish to assume into\n        session_name='cloudaux',\n        region='us-east-1'\n    )\n\n    role = get_role(\n        dict(arn='arn:aws:iam::000000000000:role/myRole', role_name='myRole'),\n        output='camelized',  # optional: {camelized underscored}\n        flags=FLAGS.ALL,  # optional\n        **conn)\n\n    # The flags parameter is optional but allows the user to indicate that\n    # only a subset of the full item description is required.\n    # IAM Role Flag Options:\n    #   BASE, MANAGED_POLICIES, INLINE_POLICIES, INSTANCE_PROFILES, TAGS, ALL (default)\n    # For instance: flags=FLAGS.MANAGED_POLICIES | FLAGS.INSTANCE_PROFILES\n\n    # cloudaux makes a number of calls to obtain a full description of the role\n    print(json.dumps(role, indent=4, sort_keys=True))\n\n    {\n        \"Arn\": ...,\n        \"AssumeRolePolicyDocument\": ...,\n        \"CreateDate\": ...,  # str\n        \"InlinePolicies\": ...,\n        \"InstanceProfiles\": ...,\n        \"ManagedPolicies\": ...,\n        \"Path\": ...,\n        \"RoleId\": ...,\n        \"RoleName\": ...,\n        \"Tags\": {},\n        \"_version\": 3    # Orchestration results return a _Version\n    }\n\n### GCP IAM Service Account -- DEPRECATED - PLEASE DON'T USE THESE ANYMORE\n\n    from cloudaux.orchestration.gcp.iam.serviceaccount import get_serviceaccount_complete, FLAGS\n    sa_name = 'projects/my-project-one/serviceAccounts/service-account-key@my-project-one.iam.gserviceaccount.com'\n    sa = get_serviceaccount_complete(sa_name, flags=FLAGS.ALL, **conn_details)\n    print(json.dumps(sa, indent=4, sort_keys=True))\n\n    # Flag options for Service Accounts are BASE, KEYS, POLICY, ALL (default).\n\n    {\n      \"DisplayName\": \"service-account\",\n      \"Email\": \"service-account@my-project-one.iam.gserviceaccount.com\",\n      \"Etag\": \"BwUzTDvWgHw=\",\n      \"Keys\": [\n          {\n              \"KeyAlgorithm\": \"KEY_ALG_RSA_2048\",\n              \"Name\": \"projects/my-project-one/serviceAccounts/service-account@my-project-one.iam.gserviceaccount.com/keys/8be0096886f6ed5cf51abb463d3448c8aee6c6b6\",\n              \"ValidAfterTime\": \"2016-06-30T18:26:45Z\",\n              \"ValidBeforeTime\": \"2026-06-28T18:26:45Z\"\n          },\n \t  ...\n      ],\n      \"Name\": \"projects/my-project-one/serviceAccounts/service-account@my-project-one.iam.gserviceaccount.com\",\n      \"Oauth2ClientId\": \"115386704809902483492\",\n      \"Policy\": [\n          {\n              \"Members\": [\n                  \"user:test-user@gmail.com\"\n              ],\n              \"Role\": \"roles/iam.serviceAccountActor\"\n          }\n      ],\n      \"ProjectId\": \"my-project-one\",\n      \"UniqueId\": \"115386704809902483492\"\n    }\n\n### OpenStack Security Group - DEPRECATED - PLEASE DON'T USE THESE ANYMORE\n\n    from cloudaux.orchestration.openstack.security_group import get_security_group, FLAGS\n\n    secgroup = get_security_group(result, flags=flags, **kwargs)\n\n    # The flags parameter is optional but allows the user to indicate that\n    # only a subset of the full item description is required.\n    # Security Group Flag Options:\n    #   RULES, INSTANCES (default)\n    # For instance: flags=FLAGS.RULES | FLAGS.INSTANCES\n\n    print(json.dumps(secgroup, indent=4, sort_keys=True))\n\n    {\n        \"assigned_to\": [\n            {\n               \"instance_id\": \"...\"\n            }\n        ],\n        \"created_at\": \"...\",\n        \"description\": \"...\",\n        \"id\": \"...\",\n        \"location\": \"...\",\n        \"name\": \"...\",\n        \"project_id\": \"...\",\n        \"revision_number\": 3,\n        \"rules\": [\n            {\n                \"rule_type\": \"...\",\n                \"remote_group_id\": \"...\",\n                \"from_port\": \"...\",\n                \"description\": \"...\",\n                \"tags\": [],\n                \"to_port\": \"...\",\n                \"ethertype\": \"...\",\n                \"created_at\": \"...\",\n                \"updated_at\": \"...\",\n                \"security_group_id\": \"...\",\n                \"revision_number\": 0,\n                \"tenant_id\": \"...\",\n                \"project_id\": \"...\"\",\n                \"id\": \"...\",\n                \"cidr_ip\": \"...\",\n                \"ip_protocol\": \"...\"\n            },\n        ],\n        \"updated_at\": \"...\"\n    }\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Cloud Auxiliary is a python wrapper and orchestration module for interacting with cloud providers",
    "version": "1.9.6",
    "project_urls": {
        "Homepage": "https://github.com/Netflix-Skunkworks/cloudaux"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba4c98f63b4b43c36be0d9a322dc533956dab80a3fb7990defecfff198e57a25",
                "md5": "18cf7c20359604e0f20b9ffcd03bb12f",
                "sha256": "762db6d5434024ded85c939f151193a1008d5ace215d726ff26b3046f7fca308"
            },
            "downloads": -1,
            "filename": "cloudaux-1.9.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "18cf7c20359604e0f20b9ffcd03bb12f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 97807,
            "upload_time": "2021-08-11T06:08:44",
            "upload_time_iso_8601": "2021-08-11T06:08:44.166411Z",
            "url": "https://files.pythonhosted.org/packages/ba/4c/98f63b4b43c36be0d9a322dc533956dab80a3fb7990defecfff198e57a25/cloudaux-1.9.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7592fa5d00c52ce68cef3cf95f1ebbc1b9ea650c836ba2837443be6c9fab297e",
                "md5": "ede1b5f1ec2ad340e84b8d1447216546",
                "sha256": "4b3fccbb2a0e0057b3c95eec2f49377642aa67def206d57dcfff61e1c9a97e3b"
            },
            "downloads": -1,
            "filename": "cloudaux-1.9.6.tar.gz",
            "has_sig": false,
            "md5_digest": "ede1b5f1ec2ad340e84b8d1447216546",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 65987,
            "upload_time": "2021-08-11T06:08:45",
            "upload_time_iso_8601": "2021-08-11T06:08:45.638550Z",
            "url": "https://files.pythonhosted.org/packages/75/92/fa5d00c52ce68cef3cf95f1ebbc1b9ea650c836ba2837443be6c9fab297e/cloudaux-1.9.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2021-08-11 06:08:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Netflix-Skunkworks",
    "github_project": "cloudaux",
    "travis_ci": true,
    "coveralls": true,
    "github_actions": false,
    "tox": true,
    "lcname": "cloudaux"
}
        
Elapsed time: 0.27109s