Metadata-Version: 2.1
Name: feature_cost_adaptor_gcp_iapi
Version: 0.0.2
Summary: IAPI Interface Files
Home-page: https://github.com/Cloudzero/feature-cost-adaptor-gcp
Author: CloudZero
Author-email: support@cloudzero.com
License: UNLICENSED
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown


# GCP Cost Adaptor IAPI

This package contains the interface for the GCP Cost Adaptor IAPI. 

## Installing and Use
Add `feature_cost_adaptor_gcp_iapi` to your requirements file or run `pip install feature_cost_adaptor_gcp_iapi`. To use, add `from feature_cost_adaptor_gcp_iapi import cost_adaptor_gcp_client`.

## Commands


### Get

**Command**: `service-principal-setup`

**Arguments**: 
- `organization_id`: `str`

**Usage**: `cost_adaptor_gcp_client.service-principal-setup(organization_id='1234568906')`

**Response** (*for the most up to date response, refer to* [BILLING_ACCOUNTS_RESPONSE](https://github.com/Cloudzero/feature-cost-adaptor-azure/blob/develop/src/common/schemas.py#L23-L33])): 
```python

#  TODO: Update this
{
  'items': [
    {
      'id': str,
      'name': str,
      'status': str,
      'agreement_type': str
    }
  ]
}
```


