fice-client


Namefice-client JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/GIT_USER_ID/GIT_REPO_ID
SummaryFastAPI
upload_time2023-08-14 15:23:33
maintainer
docs_urlNone
authorOpenAPI Generator Community
requires_python>=3.7,<4.0
licenseNoLicense
keywords openapi openapi-generator fastapi
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # fice-client
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 0.1.20
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.

Python 3.7+

## Installation & Usage
### pip install

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

```sh
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:
```python
import fice_client
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)

Then import the package:
```python
import fice_client
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python

import time
import fice_client
from fice_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = fice_client.Configuration(
    host = "http://localhost"
)

# 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.

configuration.access_token = os.environ["ACCESS_TOKEN"]

# Configure Bearer authorization: Auth0HTTPBearer
configuration = fice_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)


# Enter a context with an instance of the API client
with fice_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = fice_client.AgentsApi(api_client)
    tenant = 'tenant_example' # str | 
    new_agent = fice_client.NewAgent() # NewAgent | 

    try:
        # Create Agent
        api_response = api_instance.create_agent_api_v1_agents_tenant_post(tenant, new_agent)
        print("The response of AgentsApi->create_agent_api_v1_agents_tenant_post:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling AgentsApi->create_agent_api_v1_agents_tenant_post: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *http://localhost*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AgentsApi* | [**create_agent_api_v1_agents_tenant_post**](docs/AgentsApi.md#create_agent_api_v1_agents_tenant_post) | **POST** /api/v1/agents/{tenant} | Create Agent
*AgentsApi* | [**create_agent_command_api_v1_agents_tenant_agent_id_command_post**](docs/AgentsApi.md#create_agent_command_api_v1_agents_tenant_agent_id_command_post) | **POST** /api/v1/agents/{tenant}/{agent_id}/command | Create Agent Command
*AgentsApi* | [**download_docker_agent_api_v1_agents_download_compose_get**](docs/AgentsApi.md#download_docker_agent_api_v1_agents_download_compose_get) | **GET** /api/v1/agents/download/compose | Download Docker Agent
*AgentsApi* | [**get_agent_command_api_v1_agents_tenant_agent_id_command_id_get**](docs/AgentsApi.md#get_agent_command_api_v1_agents_tenant_agent_id_command_id_get) | **GET** /api/v1/agents/{tenant}/{agent_id}/command/{id} | Get Agent Command
*AgentsApi* | [**get_api_v1_agents_chat_get**](docs/AgentsApi.md#get_api_v1_agents_chat_get) | **GET** /api/v1/agents/chat | Get
*AgentsApi* | [**get_docker_compose_api_v1_agents_download_agent_docker_compose_get**](docs/AgentsApi.md#get_docker_compose_api_v1_agents_download_agent_docker_compose_get) | **GET** /api/v1/agents/download/agent-docker-compose | Get Docker Compose
*AgentsApi* | [**list_agents_api_v1_agents_tenant_get**](docs/AgentsApi.md#list_agents_api_v1_agents_tenant_get) | **GET** /api/v1/agents/{tenant}/ | List Agents
*AgentsApi* | [**read_finder_config_api_v1_agents_tenant_agent_id_finder_config_get**](docs/AgentsApi.md#read_finder_config_api_v1_agents_tenant_agent_id_finder_config_get) | **GET** /api/v1/agents/{tenant}/{agent_id}/finder_config | Read Finder Config
*AgentsApi* | [**run_murphee_api_v1_agents_demo_murphee_post**](docs/AgentsApi.md#run_murphee_api_v1_agents_demo_murphee_post) | **POST** /api/v1/agents/demo-murphee | Run Murphee
*AgentsApi* | [**write_finder_config_api_v1_agents_tenant_agent_id_finder_config_post**](docs/AgentsApi.md#write_finder_config_api_v1_agents_tenant_agent_id_finder_config_post) | **POST** /api/v1/agents/{tenant}/{agent_id}/finder_config | Write Finder Config
*AuthorizationApi* | [**get_short_lived_access_token_api_v1_auth_ttl_token_get**](docs/AuthorizationApi.md#get_short_lived_access_token_api_v1_auth_ttl_token_get) | **GET** /api/v1/auth/ttl-token | Get Short Lived Access Token
*AuthorizationApi* | [**get_token_api_v1_auth_token_get**](docs/AuthorizationApi.md#get_token_api_v1_auth_token_get) | **GET** /api/v1/auth/token | Get Token
*AuthorizationApi* | [**get_user_info_api_v1_auth_info_get**](docs/AuthorizationApi.md#get_user_info_api_v1_auth_info_get) | **GET** /api/v1/auth/info | Get User Info
*AuthorizationApi* | [**login_api_v1_auth_login_get**](docs/AuthorizationApi.md#login_api_v1_auth_login_get) | **GET** /api/v1/auth/login | Login
*AuthorizationApi* | [**logout_oauth2_api_v1_auth_logout_get**](docs/AuthorizationApi.md#logout_oauth2_api_v1_auth_logout_get) | **GET** /api/v1/auth/logout | Logout Oauth2
*AuthorizationApi* | [**oauth2_callback_api_v1_auth_callback_get**](docs/AuthorizationApi.md#oauth2_callback_api_v1_auth_callback_get) | **GET** /api/v1/auth/callback | Oauth2-Callback
*AuthorizationApi* | [**refresh_token_api_v1_auth_refresh_get**](docs/AuthorizationApi.md#refresh_token_api_v1_auth_refresh_get) | **GET** /api/v1/auth/refresh | Refresh Token
*ComplianceApi* | [**get_compliance_failures_api_v1_compliance_tenant_failures_get**](docs/ComplianceApi.md#get_compliance_failures_api_v1_compliance_tenant_failures_get) | **GET** /api/v1/compliance/{tenant}/failures | Get Compliance Failures
*ComplianceApi* | [**get_device_compliance_status_api_v1_compliance_tenant_status_hostname_get**](docs/ComplianceApi.md#get_device_compliance_status_api_v1_compliance_tenant_status_hostname_get) | **GET** /api/v1/compliance/{tenant}/status/{hostname} | Get Device Compliance Status
*ComplianceApi* | [**log_compliance_api_v1_compliance_tenant_log_config_id_post**](docs/ComplianceApi.md#log_compliance_api_v1_compliance_tenant_log_config_id_post) | **POST** /api/v1/compliance/{tenant}/log/{config_id} | Log Compliance
*ComplianceApi* | [**report_compliance_api_v1_compliance_tenant_report_config_id_post**](docs/ComplianceApi.md#report_compliance_api_v1_compliance_tenant_report_config_id_post) | **POST** /api/v1/compliance/{tenant}/report/{config_id} | Report Compliance
*CompliancePolicyApi* | [**create_compliance_policy_api_v1_policy_tenant_post**](docs/CompliancePolicyApi.md#create_compliance_policy_api_v1_policy_tenant_post) | **POST** /api/v1/policy/{tenant}/ | Create Compliance Policy
*CompliancePolicyApi* | [**create_new_rule_api_v1_policy_tenant_policy_rule_post**](docs/CompliancePolicyApi.md#create_new_rule_api_v1_policy_tenant_policy_rule_post) | **POST** /api/v1/policy/{tenant}/{policy}/rule/ | Create New Rule
*CompliancePolicyApi* | [**execute_rule_test_api_v1_policy_tenant_policy_debug_post**](docs/CompliancePolicyApi.md#execute_rule_test_api_v1_policy_tenant_policy_debug_post) | **POST** /api/v1/policy/{tenant}/{policy}/debug | Execute Rule Test
*CompliancePolicyApi* | [**list_compliance_policies_api_v1_policy_tenant_get**](docs/CompliancePolicyApi.md#list_compliance_policies_api_v1_policy_tenant_get) | **GET** /api/v1/policy/{tenant} | List Compliance Policies
*CompliancePolicyApi* | [**remove_rule_api_v1_policy_tenant_policy_rule_rule_name_delete**](docs/CompliancePolicyApi.md#remove_rule_api_v1_policy_tenant_policy_rule_rule_name_delete) | **DELETE** /api/v1/policy/{tenant}/{policy}/rule/{rule_name} | Remove Rule
*DevicesApi* | [**create_device_api_v1_devices_tenant_post**](docs/DevicesApi.md#create_device_api_v1_devices_tenant_post) | **POST** /api/v1/devices/{tenant} | Create Device
*DevicesApi* | [**download_config_api_v1_devices_tenant_hostname_configs_config_id_get**](docs/DevicesApi.md#download_config_api_v1_devices_tenant_hostname_configs_config_id_get) | **GET** /api/v1/devices/{tenant}/{hostname}/configs/{config_id} | Download Config
*DevicesApi* | [**get_all_devices_api_v1_devices_tenant_get**](docs/DevicesApi.md#get_all_devices_api_v1_devices_tenant_get) | **GET** /api/v1/devices/{tenant}/ | Get All Devices
*DevicesApi* | [**get_device_api_v1_devices_tenant_hostname_get**](docs/DevicesApi.md#get_device_api_v1_devices_tenant_hostname_get) | **GET** /api/v1/devices/{tenant}/{hostname} | Get Device
*DevicesApi* | [**get_run_discovery_api_v1_devices_tenant_discover_get**](docs/DevicesApi.md#get_run_discovery_api_v1_devices_tenant_discover_get) | **GET** /api/v1/devices/{tenant}/discover | Get Run Discovery
*DevicesApi* | [**process_device_discovery_api_v1_devices_tenant_post**](docs/DevicesApi.md#process_device_discovery_api_v1_devices_tenant_post) | **POST** /api/v1/devices/{tenant}/ | Process Device Discovery
*DevicesApi* | [**upload_config_api_v1_devices_tenant_hostname_configs_post**](docs/DevicesApi.md#upload_config_api_v1_devices_tenant_hostname_configs_post) | **POST** /api/v1/devices/{tenant}/{hostname}/configs | Upload Config
*MiscellaneousApi* | [**authorized_status_api_v1_status_authorized_get**](docs/MiscellaneousApi.md#authorized_status_api_v1_status_authorized_get) | **GET** /api/v1/status/authorized | Authorized Status
*MiscellaneousApi* | [**status_api_v1_status_get**](docs/MiscellaneousApi.md#status_api_v1_status_get) | **GET** /api/v1/status | Status
*TenatsApi* | [**create_tenant_api_v1_tenants_post**](docs/TenatsApi.md#create_tenant_api_v1_tenants_post) | **POST** /api/v1/tenants | Create Tenant
*TenatsApi* | [**get_all_tenants_api_v1_tenants_get**](docs/TenatsApi.md#get_all_tenants_api_v1_tenants_get) | **GET** /api/v1/tenants/ | Get All Tenants


## Documentation For Models

 - [Agent](docs/Agent.md)
 - [AgentCmd](docs/AgentCmd.md)
 - [AgentWithStatus](docs/AgentWithStatus.md)
 - [CodeRuleDefinition](docs/CodeRuleDefinition.md)
 - [ComplianceLog](docs/ComplianceLog.md)
 - [CompliancePolicy](docs/CompliancePolicy.md)
 - [ComplianceReport](docs/ComplianceReport.md)
 - [Device](docs/Device.md)
 - [DeviceConfig](docs/DeviceConfig.md)
 - [HTTPValidationError](docs/HTTPValidationError.md)
 - [Info](docs/Info.md)
 - [Kind](docs/Kind.md)
 - [LineRange](docs/LineRange.md)
 - [LocationInner](docs/LocationInner.md)
 - [NewAgent](docs/NewAgent.md)
 - [NewCommand](docs/NewCommand.md)
 - [NewComplianceFailure](docs/NewComplianceFailure.md)
 - [NewCompliancePolicy](docs/NewCompliancePolicy.md)
 - [NewDevice](docs/NewDevice.md)
 - [NewTenant](docs/NewTenant.md)
 - [Outcome](docs/Outcome.md)
 - [Rule](docs/Rule.md)
 - [RuleWithInputContext](docs/RuleWithInputContext.md)
 - [Severity](docs/Severity.md)
 - [SimpleRule](docs/SimpleRule.md)
 - [Tenant](docs/Tenant.md)
 - [UserAndAgent](docs/UserAndAgent.md)
 - [ValidationError](docs/ValidationError.md)


<a id="documentation-for-authorization"></a>
## Documentation For Authorization


Authentication schemes defined for the API:
<a id="Auth0ImplicitBearer"></a>
### Auth0ImplicitBearer

- **Type**: OAuth
- **Flow**: implicit
- **Authorization URL**: https://net-carrot.eu.auth0.com/authorize?audience=http%3A%2F%2Flocalhost%3A8000
- **Scopes**: 
 - **openid**: 
 - **offline_access**: 
 - **access:api**: 
 - **read:none**: 
 - **write:all**: 
 - **read:tenants**: 

<a id="Auth0HTTPBearer"></a>
### Auth0HTTPBearer

- **Type**: Bearer authentication

<a id="OAuth2AuthorizationCodeBearer"></a>
### OAuth2AuthorizationCodeBearer

- **Type**: OAuth
- **Flow**: accessCode
- **Authorization URL**: https://net-carrot.eu.auth0.com/authorize?audience=http%3A%2F%2Flocalhost%3A8000
- **Scopes**: 
 - **openid**: 
 - **offline_access**: 
 - **access:api**: 
 - **read:none**: 
 - **write:all**: 
 - **read:tenants**: 


## Author





            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/GIT_USER_ID/GIT_REPO_ID",
    "name": "fice-client",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7,<4.0",
    "maintainer_email": "",
    "keywords": "OpenAPI,OpenAPI-Generator,FastAPI",
    "author": "OpenAPI Generator Community",
    "author_email": "team@openapitools.org",
    "download_url": "https://files.pythonhosted.org/packages/40/62/c4e378bdc89a6bbac3f12d33cfd43f6797b5732617397b4cd0e8b6095a73/fice_client-1.0.0.tar.gz",
    "platform": null,
    "description": "# fice-client\nNo description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 0.1.20\n- Package version: 1.0.0\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\n\n## Requirements.\n\nPython 3.7+\n\n## Installation & Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)\n\nThen import the package:\n```python\nimport fice_client\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport fice_client\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport time\nimport fice_client\nfrom fice_client.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to http://localhost\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = fice_client.Configuration(\n    host = \"http://localhost\"\n)\n\n# The client must configure the authentication and authorization parameters\n# in accordance with the API server security policy.\n# Examples for each auth method are provided below, use the example that\n# satisfies your auth use case.\n\nconfiguration.access_token = os.environ[\"ACCESS_TOKEN\"]\n\n# Configure Bearer authorization: Auth0HTTPBearer\nconfiguration = fice_client.Configuration(\n    access_token = os.environ[\"BEARER_TOKEN\"]\n)\n\n\n# Enter a context with an instance of the API client\nwith fice_client.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = fice_client.AgentsApi(api_client)\n    tenant = 'tenant_example' # str | \n    new_agent = fice_client.NewAgent() # NewAgent | \n\n    try:\n        # Create Agent\n        api_response = api_instance.create_agent_api_v1_agents_tenant_post(tenant, new_agent)\n        print(\"The response of AgentsApi->create_agent_api_v1_agents_tenant_post:\\n\")\n        pprint(api_response)\n    except ApiException as e:\n        print(\"Exception when calling AgentsApi->create_agent_api_v1_agents_tenant_post: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *http://localhost*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*AgentsApi* | [**create_agent_api_v1_agents_tenant_post**](docs/AgentsApi.md#create_agent_api_v1_agents_tenant_post) | **POST** /api/v1/agents/{tenant} | Create Agent\n*AgentsApi* | [**create_agent_command_api_v1_agents_tenant_agent_id_command_post**](docs/AgentsApi.md#create_agent_command_api_v1_agents_tenant_agent_id_command_post) | **POST** /api/v1/agents/{tenant}/{agent_id}/command | Create Agent Command\n*AgentsApi* | [**download_docker_agent_api_v1_agents_download_compose_get**](docs/AgentsApi.md#download_docker_agent_api_v1_agents_download_compose_get) | **GET** /api/v1/agents/download/compose | Download Docker Agent\n*AgentsApi* | [**get_agent_command_api_v1_agents_tenant_agent_id_command_id_get**](docs/AgentsApi.md#get_agent_command_api_v1_agents_tenant_agent_id_command_id_get) | **GET** /api/v1/agents/{tenant}/{agent_id}/command/{id} | Get Agent Command\n*AgentsApi* | [**get_api_v1_agents_chat_get**](docs/AgentsApi.md#get_api_v1_agents_chat_get) | **GET** /api/v1/agents/chat | Get\n*AgentsApi* | [**get_docker_compose_api_v1_agents_download_agent_docker_compose_get**](docs/AgentsApi.md#get_docker_compose_api_v1_agents_download_agent_docker_compose_get) | **GET** /api/v1/agents/download/agent-docker-compose | Get Docker Compose\n*AgentsApi* | [**list_agents_api_v1_agents_tenant_get**](docs/AgentsApi.md#list_agents_api_v1_agents_tenant_get) | **GET** /api/v1/agents/{tenant}/ | List Agents\n*AgentsApi* | [**read_finder_config_api_v1_agents_tenant_agent_id_finder_config_get**](docs/AgentsApi.md#read_finder_config_api_v1_agents_tenant_agent_id_finder_config_get) | **GET** /api/v1/agents/{tenant}/{agent_id}/finder_config | Read Finder Config\n*AgentsApi* | [**run_murphee_api_v1_agents_demo_murphee_post**](docs/AgentsApi.md#run_murphee_api_v1_agents_demo_murphee_post) | **POST** /api/v1/agents/demo-murphee | Run Murphee\n*AgentsApi* | [**write_finder_config_api_v1_agents_tenant_agent_id_finder_config_post**](docs/AgentsApi.md#write_finder_config_api_v1_agents_tenant_agent_id_finder_config_post) | **POST** /api/v1/agents/{tenant}/{agent_id}/finder_config | Write Finder Config\n*AuthorizationApi* | [**get_short_lived_access_token_api_v1_auth_ttl_token_get**](docs/AuthorizationApi.md#get_short_lived_access_token_api_v1_auth_ttl_token_get) | **GET** /api/v1/auth/ttl-token | Get Short Lived Access Token\n*AuthorizationApi* | [**get_token_api_v1_auth_token_get**](docs/AuthorizationApi.md#get_token_api_v1_auth_token_get) | **GET** /api/v1/auth/token | Get Token\n*AuthorizationApi* | [**get_user_info_api_v1_auth_info_get**](docs/AuthorizationApi.md#get_user_info_api_v1_auth_info_get) | **GET** /api/v1/auth/info | Get User Info\n*AuthorizationApi* | [**login_api_v1_auth_login_get**](docs/AuthorizationApi.md#login_api_v1_auth_login_get) | **GET** /api/v1/auth/login | Login\n*AuthorizationApi* | [**logout_oauth2_api_v1_auth_logout_get**](docs/AuthorizationApi.md#logout_oauth2_api_v1_auth_logout_get) | **GET** /api/v1/auth/logout | Logout Oauth2\n*AuthorizationApi* | [**oauth2_callback_api_v1_auth_callback_get**](docs/AuthorizationApi.md#oauth2_callback_api_v1_auth_callback_get) | **GET** /api/v1/auth/callback | Oauth2-Callback\n*AuthorizationApi* | [**refresh_token_api_v1_auth_refresh_get**](docs/AuthorizationApi.md#refresh_token_api_v1_auth_refresh_get) | **GET** /api/v1/auth/refresh | Refresh Token\n*ComplianceApi* | [**get_compliance_failures_api_v1_compliance_tenant_failures_get**](docs/ComplianceApi.md#get_compliance_failures_api_v1_compliance_tenant_failures_get) | **GET** /api/v1/compliance/{tenant}/failures | Get Compliance Failures\n*ComplianceApi* | [**get_device_compliance_status_api_v1_compliance_tenant_status_hostname_get**](docs/ComplianceApi.md#get_device_compliance_status_api_v1_compliance_tenant_status_hostname_get) | **GET** /api/v1/compliance/{tenant}/status/{hostname} | Get Device Compliance Status\n*ComplianceApi* | [**log_compliance_api_v1_compliance_tenant_log_config_id_post**](docs/ComplianceApi.md#log_compliance_api_v1_compliance_tenant_log_config_id_post) | **POST** /api/v1/compliance/{tenant}/log/{config_id} | Log Compliance\n*ComplianceApi* | [**report_compliance_api_v1_compliance_tenant_report_config_id_post**](docs/ComplianceApi.md#report_compliance_api_v1_compliance_tenant_report_config_id_post) | **POST** /api/v1/compliance/{tenant}/report/{config_id} | Report Compliance\n*CompliancePolicyApi* | [**create_compliance_policy_api_v1_policy_tenant_post**](docs/CompliancePolicyApi.md#create_compliance_policy_api_v1_policy_tenant_post) | **POST** /api/v1/policy/{tenant}/ | Create Compliance Policy\n*CompliancePolicyApi* | [**create_new_rule_api_v1_policy_tenant_policy_rule_post**](docs/CompliancePolicyApi.md#create_new_rule_api_v1_policy_tenant_policy_rule_post) | **POST** /api/v1/policy/{tenant}/{policy}/rule/ | Create New Rule\n*CompliancePolicyApi* | [**execute_rule_test_api_v1_policy_tenant_policy_debug_post**](docs/CompliancePolicyApi.md#execute_rule_test_api_v1_policy_tenant_policy_debug_post) | **POST** /api/v1/policy/{tenant}/{policy}/debug | Execute Rule Test\n*CompliancePolicyApi* | [**list_compliance_policies_api_v1_policy_tenant_get**](docs/CompliancePolicyApi.md#list_compliance_policies_api_v1_policy_tenant_get) | **GET** /api/v1/policy/{tenant} | List Compliance Policies\n*CompliancePolicyApi* | [**remove_rule_api_v1_policy_tenant_policy_rule_rule_name_delete**](docs/CompliancePolicyApi.md#remove_rule_api_v1_policy_tenant_policy_rule_rule_name_delete) | **DELETE** /api/v1/policy/{tenant}/{policy}/rule/{rule_name} | Remove Rule\n*DevicesApi* | [**create_device_api_v1_devices_tenant_post**](docs/DevicesApi.md#create_device_api_v1_devices_tenant_post) | **POST** /api/v1/devices/{tenant} | Create Device\n*DevicesApi* | [**download_config_api_v1_devices_tenant_hostname_configs_config_id_get**](docs/DevicesApi.md#download_config_api_v1_devices_tenant_hostname_configs_config_id_get) | **GET** /api/v1/devices/{tenant}/{hostname}/configs/{config_id} | Download Config\n*DevicesApi* | [**get_all_devices_api_v1_devices_tenant_get**](docs/DevicesApi.md#get_all_devices_api_v1_devices_tenant_get) | **GET** /api/v1/devices/{tenant}/ | Get All Devices\n*DevicesApi* | [**get_device_api_v1_devices_tenant_hostname_get**](docs/DevicesApi.md#get_device_api_v1_devices_tenant_hostname_get) | **GET** /api/v1/devices/{tenant}/{hostname} | Get Device\n*DevicesApi* | [**get_run_discovery_api_v1_devices_tenant_discover_get**](docs/DevicesApi.md#get_run_discovery_api_v1_devices_tenant_discover_get) | **GET** /api/v1/devices/{tenant}/discover | Get Run Discovery\n*DevicesApi* | [**process_device_discovery_api_v1_devices_tenant_post**](docs/DevicesApi.md#process_device_discovery_api_v1_devices_tenant_post) | **POST** /api/v1/devices/{tenant}/ | Process Device Discovery\n*DevicesApi* | [**upload_config_api_v1_devices_tenant_hostname_configs_post**](docs/DevicesApi.md#upload_config_api_v1_devices_tenant_hostname_configs_post) | **POST** /api/v1/devices/{tenant}/{hostname}/configs | Upload Config\n*MiscellaneousApi* | [**authorized_status_api_v1_status_authorized_get**](docs/MiscellaneousApi.md#authorized_status_api_v1_status_authorized_get) | **GET** /api/v1/status/authorized | Authorized Status\n*MiscellaneousApi* | [**status_api_v1_status_get**](docs/MiscellaneousApi.md#status_api_v1_status_get) | **GET** /api/v1/status | Status\n*TenatsApi* | [**create_tenant_api_v1_tenants_post**](docs/TenatsApi.md#create_tenant_api_v1_tenants_post) | **POST** /api/v1/tenants | Create Tenant\n*TenatsApi* | [**get_all_tenants_api_v1_tenants_get**](docs/TenatsApi.md#get_all_tenants_api_v1_tenants_get) | **GET** /api/v1/tenants/ | Get All Tenants\n\n\n## Documentation For Models\n\n - [Agent](docs/Agent.md)\n - [AgentCmd](docs/AgentCmd.md)\n - [AgentWithStatus](docs/AgentWithStatus.md)\n - [CodeRuleDefinition](docs/CodeRuleDefinition.md)\n - [ComplianceLog](docs/ComplianceLog.md)\n - [CompliancePolicy](docs/CompliancePolicy.md)\n - [ComplianceReport](docs/ComplianceReport.md)\n - [Device](docs/Device.md)\n - [DeviceConfig](docs/DeviceConfig.md)\n - [HTTPValidationError](docs/HTTPValidationError.md)\n - [Info](docs/Info.md)\n - [Kind](docs/Kind.md)\n - [LineRange](docs/LineRange.md)\n - [LocationInner](docs/LocationInner.md)\n - [NewAgent](docs/NewAgent.md)\n - [NewCommand](docs/NewCommand.md)\n - [NewComplianceFailure](docs/NewComplianceFailure.md)\n - [NewCompliancePolicy](docs/NewCompliancePolicy.md)\n - [NewDevice](docs/NewDevice.md)\n - [NewTenant](docs/NewTenant.md)\n - [Outcome](docs/Outcome.md)\n - [Rule](docs/Rule.md)\n - [RuleWithInputContext](docs/RuleWithInputContext.md)\n - [Severity](docs/Severity.md)\n - [SimpleRule](docs/SimpleRule.md)\n - [Tenant](docs/Tenant.md)\n - [UserAndAgent](docs/UserAndAgent.md)\n - [ValidationError](docs/ValidationError.md)\n\n\n<a id=\"documentation-for-authorization\"></a>\n## Documentation For Authorization\n\n\nAuthentication schemes defined for the API:\n<a id=\"Auth0ImplicitBearer\"></a>\n### Auth0ImplicitBearer\n\n- **Type**: OAuth\n- **Flow**: implicit\n- **Authorization URL**: https://net-carrot.eu.auth0.com/authorize?audience=http%3A%2F%2Flocalhost%3A8000\n- **Scopes**: \n - **openid**: \n - **offline_access**: \n - **access:api**: \n - **read:none**: \n - **write:all**: \n - **read:tenants**: \n\n<a id=\"Auth0HTTPBearer\"></a>\n### Auth0HTTPBearer\n\n- **Type**: Bearer authentication\n\n<a id=\"OAuth2AuthorizationCodeBearer\"></a>\n### OAuth2AuthorizationCodeBearer\n\n- **Type**: OAuth\n- **Flow**: accessCode\n- **Authorization URL**: https://net-carrot.eu.auth0.com/authorize?audience=http%3A%2F%2Flocalhost%3A8000\n- **Scopes**: \n - **openid**: \n - **offline_access**: \n - **access:api**: \n - **read:none**: \n - **write:all**: \n - **read:tenants**: \n\n\n## Author\n\n\n\n\n",
    "bugtrack_url": null,
    "license": "NoLicense",
    "summary": "FastAPI",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://github.com/GIT_USER_ID/GIT_REPO_ID",
        "Repository": "https://github.com/GIT_USER_ID/GIT_REPO_ID"
    },
    "split_keywords": [
        "openapi",
        "openapi-generator",
        "fastapi"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c7a57d3b679ec49f02d78ba26dceb329c688687a0fe7cb23e342a5a047cbd56",
                "md5": "dd8724b33d9a3712229e712fd42912d8",
                "sha256": "8bf401a4e7ff5448f1a9fa3dce1399cc28381a7023d8263980e0fe3b7a7dffc9"
            },
            "downloads": -1,
            "filename": "fice_client-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "dd8724b33d9a3712229e712fd42912d8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7,<4.0",
            "size": 73400,
            "upload_time": "2023-08-14T15:23:31",
            "upload_time_iso_8601": "2023-08-14T15:23:31.670143Z",
            "url": "https://files.pythonhosted.org/packages/3c/7a/57d3b679ec49f02d78ba26dceb329c688687a0fe7cb23e342a5a047cbd56/fice_client-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4062c4e378bdc89a6bbac3f12d33cfd43f6797b5732617397b4cd0e8b6095a73",
                "md5": "cb11c41582eeeaa8c1306be4fa56903f",
                "sha256": "11caacd4ad2aca64c91730a31934a2855184014f52e2a8903013c76a6f4a90a1"
            },
            "downloads": -1,
            "filename": "fice_client-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "cb11c41582eeeaa8c1306be4fa56903f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7,<4.0",
            "size": 38366,
            "upload_time": "2023-08-14T15:23:33",
            "upload_time_iso_8601": "2023-08-14T15:23:33.998300Z",
            "url": "https://files.pythonhosted.org/packages/40/62/c4e378bdc89a6bbac3f12d33cfd43f6797b5732617397b4cd0e8b6095a73/fice_client-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-14 15:23:33",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "GIT_USER_ID",
    "github_project": "GIT_REPO_ID",
    "github_not_found": true,
    "lcname": "fice-client"
}
        
Elapsed time: 0.40298s