Metadata-Version: 2.4
Name: pyincusd
Version: 6.23.0.post5
Summary: Auto-generated Python client for the Incus daemon REST API
Home-page: 
Author: Incus upstream
Author-email: lxc-devel@lists.linuxcontainers.org
License: Apache-2.0
Project-URL: Homepage, https://github.com/anonhostpi/pyincusd
Project-URL: Incus Docs, https://linuxcontainers.org/incus/docs/main/rest-api/
Project-URL: Source Spec, https://github.com/lxc/incus/blob/main/doc/rest-api.yaml
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.20
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: pydantic>=2
Requires-Dist: typing-extensions>=4.7.1
Dynamic: author
Dynamic: author-email

# pyincusd
This is the REST API used by all Incus clients.
Internal endpoints aren't included in this documentation.

The Incus API is available over both a local unix+http and remote https API.
Authentication for local users relies on group membership and access to the unix socket.
For remote users, the default authentication method is TLS client
certificates.

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

- API version: 1.0
- Package version: 6.23.0.post5
- Generator version: 7.22.0-SNAPSHOT
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
For more information, please visit [https://github.com/lxc/incus](https://github.com/lxc/incus)

## Requirements.

Python 3.10+

## Installation & Usage
### pip install

```sh
pip install pyincusd
```

### 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 pyincusd
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

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

```python

import pyincusd
from pyincusd.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 = pyincusd.Configuration(
    host = "http://localhost"
)



# Enter a context with an instance of the API client
async with pyincusd.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = pyincusd.CertificatesApi(api_client)

    try:
        # Delete the trusted certificate
        api_response = await api_instance.certificate_delete()
        print("The response of CertificatesApi->certificate_delete:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling CertificatesApi->certificate_delete: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to the incusd API (unix socket or https). See [Incus REST API docs](https://linuxcontainers.org/incus/docs/main/rest-api/).

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*CertificatesApi* | [**certificate_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificatesApi.md#certificate_delete) | **DELETE** /1.0/certificates/{fingerprint} | Delete the trusted certificate
*CertificatesApi* | [**certificate_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificatesApi.md#certificate_get) | **GET** /1.0/certificates/{fingerprint} | Get the trusted certificate
*CertificatesApi* | [**certificate_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificatesApi.md#certificate_patch) | **PATCH** /1.0/certificates/{fingerprint} | Partially update the trusted certificate
*CertificatesApi* | [**certificate_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificatesApi.md#certificate_put) | **PUT** /1.0/certificates/{fingerprint} | Update the trusted certificate
*CertificatesApi* | [**certificates_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificatesApi.md#certificates_get) | **GET** /1.0/certificates | Get the trusted certificates
*CertificatesApi* | [**certificates_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificatesApi.md#certificates_get_recursion1) | **GET** /1.0/certificates?recursion&#x3D;1 | Get the trusted certificates
*CertificatesApi* | [**certificates_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificatesApi.md#certificates_post) | **POST** /1.0/certificates | Add a trusted certificate
*CertificatesApi* | [**certificates_post_untrusted**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificatesApi.md#certificates_post_untrusted) | **POST** /1.0/certificates?public | Add a trusted certificate
*ClusterApi* | [**cluster_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#cluster_get) | **GET** /1.0/cluster | Get the cluster configuration
*ClusterApi* | [**cluster_groups_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#cluster_groups_post) | **POST** /1.0/cluster/groups | Create a cluster group.
*ClusterApi* | [**cluster_member_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#cluster_member_delete) | **DELETE** /1.0/cluster/members/{name} | Delete the cluster member
*ClusterApi* | [**cluster_member_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#cluster_member_get) | **GET** /1.0/cluster/members/{name} | Get the cluster member
*ClusterApi* | [**cluster_member_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#cluster_member_patch) | **PATCH** /1.0/cluster/members/{name} | Partially update the cluster member
*ClusterApi* | [**cluster_member_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#cluster_member_post) | **POST** /1.0/cluster/members/{name} | Rename the cluster member
*ClusterApi* | [**cluster_member_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#cluster_member_put) | **PUT** /1.0/cluster/members/{name} | Update the cluster member
*ClusterApi* | [**cluster_member_state_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#cluster_member_state_get) | **GET** /1.0/cluster/members/{name}/state | Get state of the cluster member
*ClusterApi* | [**cluster_member_state_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#cluster_member_state_post) | **POST** /1.0/cluster/members/{name}/state | Evacuate or restore a cluster member
*ClusterApi* | [**cluster_members_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#cluster_members_get) | **GET** /1.0/cluster/members | Get the cluster members
*ClusterApi* | [**cluster_members_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#cluster_members_get_recursion1) | **GET** /1.0/cluster/members?recursion&#x3D;1 | Get the cluster members
*ClusterApi* | [**cluster_members_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#cluster_members_post) | **POST** /1.0/cluster/members | Request a join token
*ClusterApi* | [**cluster_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#cluster_put) | **PUT** /1.0/cluster | Update the cluster configuration
*ClusterApi* | [**clustering_update_cert**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterApi.md#clustering_update_cert) | **PUT** /1.0/cluster/certificate | Update the certificate for the cluster
*ClusterGroupsApi* | [**cluster_group_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroupsApi.md#cluster_group_delete) | **DELETE** /1.0/cluster/groups/{name} | Delete the cluster group.
*ClusterGroupsApi* | [**cluster_group_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroupsApi.md#cluster_group_get) | **GET** /1.0/cluster/groups/{name} | Get the cluster group
*ClusterGroupsApi* | [**cluster_group_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroupsApi.md#cluster_group_patch) | **PATCH** /1.0/cluster/groups/{name} | Update the cluster group
*ClusterGroupsApi* | [**cluster_group_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroupsApi.md#cluster_group_post) | **POST** /1.0/cluster/groups/{name} | Rename the cluster group
*ClusterGroupsApi* | [**cluster_group_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroupsApi.md#cluster_group_put) | **PUT** /1.0/cluster/groups/{name} | Update the cluster group
*ClusterGroupsApi* | [**cluster_groups_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroupsApi.md#cluster_groups_get) | **GET** /1.0/cluster/groups | Get the cluster groups
*ClusterGroupsApi* | [**cluster_groups_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroupsApi.md#cluster_groups_get_recursion1) | **GET** /1.0/cluster/groups?recursion&#x3D;1 | Get the cluster groups
*DefaultApi* | [**metadata_configuration_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/DefaultApi.md#metadata_configuration_get) | **GET** /1.0/metadata/configuration | Get the metadata configuration
*ImagesApi* | [**image_alias_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#image_alias_delete) | **DELETE** /1.0/images/aliases/{name} | Delete the image alias
*ImagesApi* | [**image_alias_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#image_alias_get) | **GET** /1.0/images/aliases/{name} | Get the image alias
*ImagesApi* | [**image_alias_get_untrusted**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#image_alias_get_untrusted) | **GET** /1.0/images/aliases/{name}?public | Get the public image alias
*ImagesApi* | [**image_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#image_delete) | **DELETE** /1.0/images/{fingerprint} | Delete the image
*ImagesApi* | [**image_export_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#image_export_get) | **GET** /1.0/images/{fingerprint}/export | Get the raw image file(s)
*ImagesApi* | [**image_export_get_untrusted**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#image_export_get_untrusted) | **GET** /1.0/images/{fingerprint}/export?public | Get the raw image file(s)
*ImagesApi* | [**image_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#image_get) | **GET** /1.0/images/{fingerprint} | Get the image
*ImagesApi* | [**image_get_untrusted**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#image_get_untrusted) | **GET** /1.0/images/{fingerprint}?public | Get the public image
*ImagesApi* | [**image_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#image_patch) | **PATCH** /1.0/images/{fingerprint} | Partially update the image
*ImagesApi* | [**image_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#image_put) | **PUT** /1.0/images/{fingerprint} | Update the image
*ImagesApi* | [**images_alias_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_alias_patch) | **PATCH** /1.0/images/aliases/{name} | Partially update the image alias
*ImagesApi* | [**images_alias_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_alias_post) | **POST** /1.0/images/aliases/{name} | Rename the image alias
*ImagesApi* | [**images_aliases_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_aliases_get) | **GET** /1.0/images/aliases | Get the image aliases
*ImagesApi* | [**images_aliases_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_aliases_get_recursion1) | **GET** /1.0/images/aliases?recursion&#x3D;1 | Get the image aliases
*ImagesApi* | [**images_aliases_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_aliases_post) | **POST** /1.0/images/aliases | Add an image alias
*ImagesApi* | [**images_aliases_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_aliases_put) | **PUT** /1.0/images/aliases/{name} | Update the image alias
*ImagesApi* | [**images_export_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_export_post) | **POST** /1.0/images/{fingerprint}/export | Make the server push the image to a remote server
*ImagesApi* | [**images_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_get) | **GET** /1.0/images | Get the images
*ImagesApi* | [**images_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_get_recursion1) | **GET** /1.0/images?recursion&#x3D;1 | Get the images
*ImagesApi* | [**images_get_recursion1_untrusted**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_get_recursion1_untrusted) | **GET** /1.0/images?public&amp;recursion&#x3D;1 | Get the public images
*ImagesApi* | [**images_get_untrusted**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_get_untrusted) | **GET** /1.0/images?public | Get the public images
*ImagesApi* | [**images_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_post) | **POST** /1.0/images | Add an image
*ImagesApi* | [**images_post_untrusted**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_post_untrusted) | **POST** /1.0/images?public | Add an image
*ImagesApi* | [**images_refresh_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_refresh_post) | **POST** /1.0/images/{fingerprint}/refresh | Refresh an image
*ImagesApi* | [**images_secret_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesApi.md#images_secret_post) | **POST** /1.0/images/{fingerprint}/secret | Generate secret for retrieval of the image by an untrusted client
*InstancesApi* | [**instance_access**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_access) | **GET** /1.0/instances/{name}/access | Get who has access to an instance
*InstancesApi* | [**instance_backup_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_backup_delete) | **DELETE** /1.0/instances/{name}/backups/{backup} | Delete a backup
*InstancesApi* | [**instance_backup_export**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_backup_export) | **GET** /1.0/instances/{name}/backups/{backup}/export | Get the raw backup file(s)
*InstancesApi* | [**instance_backup_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_backup_get) | **GET** /1.0/instances/{name}/backups/{backup} | Get the backup
*InstancesApi* | [**instance_backup_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_backup_post) | **POST** /1.0/instances/{name}/backups/{backup} | Rename a backup
*InstancesApi* | [**instance_backups_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_backups_get) | **GET** /1.0/instances/{name}/backups | Get the backups
*InstancesApi* | [**instance_backups_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_backups_get_recursion1) | **GET** /1.0/instances/{name}/backups?recursion&#x3D;1 | Get the backups
*InstancesApi* | [**instance_backups_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_backups_post) | **POST** /1.0/instances/{name}/backups | Create a backup
*InstancesApi* | [**instance_console_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_console_delete) | **DELETE** /1.0/instances/{name}/console | Clear the console log
*InstancesApi* | [**instance_console_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_console_get) | **GET** /1.0/instances/{name}/console | Get console output
*InstancesApi* | [**instance_console_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_console_post) | **POST** /1.0/instances/{name}/console | Connect to console
*InstancesApi* | [**instance_debug_memory_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_debug_memory_get) | **GET** /1.0/instances/{name}/debug/memory | Get memory debug information of an instance
*InstancesApi* | [**instance_debug_repair_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_debug_repair_post) | **GET** /1.0/instances/{name}/debug/repair | Trigger a repair action on the instance.
*InstancesApi* | [**instance_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_delete) | **DELETE** /1.0/instances/{name} | Delete an instance
*InstancesApi* | [**instance_exec_output_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_exec_output_delete) | **DELETE** /1.0/instances/{name}/logs/exec-output/{filename} | Delete the exec record-output file
*InstancesApi* | [**instance_exec_output_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_exec_output_get) | **GET** /1.0/instances/{name}/logs/exec-output/{filename} | Get the exec-output log file
*InstancesApi* | [**instance_exec_outputs_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_exec_outputs_get) | **GET** /1.0/instances/{name}/logs/exec-output | Get the exec record-output files
*InstancesApi* | [**instance_exec_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_exec_post) | **POST** /1.0/instances/{name}/exec | Run a command
*InstancesApi* | [**instance_files_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_files_delete) | **DELETE** /1.0/instances/{name}/files | Delete a file
*InstancesApi* | [**instance_files_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_files_get) | **GET** /1.0/instances/{name}/files | Get a file
*InstancesApi* | [**instance_files_head**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_files_head) | **HEAD** /1.0/instances/{name}/files | Get metadata for a file
*InstancesApi* | [**instance_files_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_files_post) | **POST** /1.0/instances/{name}/files | Create or replace a file
*InstancesApi* | [**instance_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_get) | **GET** /1.0/instances/{name} | Get the instance
*InstancesApi* | [**instance_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_get_recursion1) | **GET** /1.0/instances/{name}?recursion&#x3D;1 | Get the instance
*InstancesApi* | [**instance_log_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_log_delete) | **DELETE** /1.0/instances/{name}/logs/{filename} | Delete the log file
*InstancesApi* | [**instance_log_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_log_get) | **GET** /1.0/instances/{name}/logs/{filename} | Get the log file
*InstancesApi* | [**instance_logs_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_logs_get) | **GET** /1.0/instances/{name}/logs | Get the log files
*InstancesApi* | [**instance_metadata_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_metadata_get) | **GET** /1.0/instances/{name}/metadata | Get the instance image metadata
*InstancesApi* | [**instance_metadata_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_metadata_patch) | **PATCH** /1.0/instances/{name}/metadata | Partially update the image metadata
*InstancesApi* | [**instance_metadata_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_metadata_put) | **PUT** /1.0/instances/{name}/metadata | Update the image metadata
*InstancesApi* | [**instance_metadata_templates_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_metadata_templates_delete) | **DELETE** /1.0/instances/{name}/metadata/templates | Delete a template file
*InstancesApi* | [**instance_metadata_templates_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_metadata_templates_get) | **GET** /1.0/instances/{name}/metadata/templates | Get the template file names or a specific
*InstancesApi* | [**instance_metadata_templates_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_metadata_templates_post) | **POST** /1.0/instances/{name}/metadata/templates | Create or replace a template file
*InstancesApi* | [**instance_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_patch) | **PATCH** /1.0/instances/{name} | Partially update the instance
*InstancesApi* | [**instance_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_post) | **POST** /1.0/instances/{name} | Rename or move/migrate an instance
*InstancesApi* | [**instance_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_put) | **PUT** /1.0/instances/{name} | Update the instance
*InstancesApi* | [**instance_rebuild_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_rebuild_post) | **POST** /1.0/instances/{name}/rebuild | Rebuild an instance
*InstancesApi* | [**instance_sftp**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_sftp) | **GET** /1.0/instances/{name}/sftp | Get the instance SFTP connection
*InstancesApi* | [**instance_snapshot_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_snapshot_delete) | **DELETE** /1.0/instances/{name}/snapshots/{snapshot} | Delete a snapshot
*InstancesApi* | [**instance_snapshot_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_snapshot_get) | **GET** /1.0/instances/{name}/snapshots/{snapshot} | Get the snapshot
*InstancesApi* | [**instance_snapshot_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_snapshot_patch) | **PATCH** /1.0/instances/{name}/snapshots/{snapshot} | Partially update snapshot
*InstancesApi* | [**instance_snapshot_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_snapshot_post) | **POST** /1.0/instances/{name}/snapshots/{snapshot} | Rename or move/migrate a snapshot
*InstancesApi* | [**instance_snapshot_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_snapshot_put) | **PUT** /1.0/instances/{name}/snapshots/{snapshot} | Update snapshot
*InstancesApi* | [**instance_snapshots_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_snapshots_get) | **GET** /1.0/instances/{name}/snapshots | Get the snapshots
*InstancesApi* | [**instance_snapshots_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_snapshots_get_recursion1) | **GET** /1.0/instances/{name}/snapshots?recursion&#x3D;1 | Get the snapshots
*InstancesApi* | [**instance_snapshots_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_snapshots_post) | **POST** /1.0/instances/{name}/snapshots | Create a snapshot
*InstancesApi* | [**instance_state_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_state_get) | **GET** /1.0/instances/{name}/state | Get the runtime state
*InstancesApi* | [**instance_state_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instance_state_put) | **PUT** /1.0/instances/{name}/state | Change the state
*InstancesApi* | [**instances_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instances_get) | **GET** /1.0/instances | Get the instances
*InstancesApi* | [**instances_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instances_get_recursion1) | **GET** /1.0/instances?recursion&#x3D;1 | Get the instances
*InstancesApi* | [**instances_get_recursion2**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instances_get_recursion2) | **GET** /1.0/instances?recursion&#x3D;2 | Get the instances
*InstancesApi* | [**instances_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instances_post) | **POST** /1.0/instances | Create a new instance
*InstancesApi* | [**instances_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesApi.md#instances_put) | **PUT** /1.0/instances | Bulk instance state update
*MetricsApi* | [**metrics_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/MetricsApi.md#metrics_get) | **GET** /1.0/metrics | Get metrics
*NetworkAclsApi* | [**network_acl_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAclsApi.md#network_acl_delete) | **DELETE** /1.0/network-acls/{name} | Delete the network ACL
*NetworkAclsApi* | [**network_acl_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAclsApi.md#network_acl_get) | **GET** /1.0/network-acls/{name} | Get the network ACL
*NetworkAclsApi* | [**network_acl_log_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAclsApi.md#network_acl_log_get) | **GET** /1.0/network-acls/{name}/log | Get the network ACL log
*NetworkAclsApi* | [**network_acl_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAclsApi.md#network_acl_patch) | **PATCH** /1.0/network-acls/{name} | Partially update the network ACL
*NetworkAclsApi* | [**network_acl_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAclsApi.md#network_acl_post) | **POST** /1.0/network-acls/{name} | Rename the network ACL
*NetworkAclsApi* | [**network_acl_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAclsApi.md#network_acl_put) | **PUT** /1.0/network-acls/{name} | Update the network ACL
*NetworkAclsApi* | [**network_acls_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAclsApi.md#network_acls_get) | **GET** /1.0/network-acls | Get the network ACLs
*NetworkAclsApi* | [**network_acls_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAclsApi.md#network_acls_get_recursion1) | **GET** /1.0/network-acls?recursion&#x3D;1 | Get the network ACLs
*NetworkAclsApi* | [**network_acls_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAclsApi.md#network_acls_post) | **POST** /1.0/network-acls | Add a network ACL
*NetworkAddressSetsApi* | [**network_address_set_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetsApi.md#network_address_set_delete) | **DELETE** /1.0/network-address-sets/{name} | Delete the network address set
*NetworkAddressSetsApi* | [**network_address_set_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetsApi.md#network_address_set_get) | **GET** /1.0/network-address-sets/{name} | Get the network address set
*NetworkAddressSetsApi* | [**network_address_set_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetsApi.md#network_address_set_patch) | **PATCH** /1.0/network-address-sets/{name} | Partially update the network address set
*NetworkAddressSetsApi* | [**network_address_set_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetsApi.md#network_address_set_post) | **POST** /1.0/network-address-sets/{name} | Rename the network address set
*NetworkAddressSetsApi* | [**network_address_set_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetsApi.md#network_address_set_put) | **PUT** /1.0/network-address-sets/{name} | Update the network address set
*NetworkAddressSetsApi* | [**network_address_sets_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetsApi.md#network_address_sets_get) | **GET** /1.0/network-address-sets | Get the network address sets
*NetworkAddressSetsApi* | [**network_address_sets_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetsApi.md#network_address_sets_get_recursion1) | **GET** /1.0/network-address-sets?recursion&#x3D;1 | Get the network address sets
*NetworkAddressSetsApi* | [**network_address_sets_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetsApi.md#network_address_sets_post) | **POST** /1.0/network-address-sets | Add a network address set
*NetworkAllocationsApi* | [**network_allocations_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAllocationsApi.md#network_allocations_get) | **GET** /1.0/network-allocations | Get the network allocations in use (&#x60;network&#x60;, &#x60;network-forward&#x60; and &#x60;load-balancer&#x60; and &#x60;instance&#x60;)
*NetworkForwardsApi* | [**network_forward_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForwardsApi.md#network_forward_delete) | **DELETE** /1.0/networks/{networkName}/forwards/{listenAddress} | Delete the network address forward
*NetworkForwardsApi* | [**network_forward_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForwardsApi.md#network_forward_get) | **GET** /1.0/networks/{networkName}/forwards/{listenAddress} | Get the network address forward
*NetworkForwardsApi* | [**network_forward_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForwardsApi.md#network_forward_get_recursion1) | **GET** /1.0/networks/{networkName}/forwards?recursion&#x3D;1 | Get the network address forwards
*NetworkForwardsApi* | [**network_forward_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForwardsApi.md#network_forward_patch) | **PATCH** /1.0/networks/{networkName}/forwards/{listenAddress} | Partially update the network address forward
*NetworkForwardsApi* | [**network_forward_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForwardsApi.md#network_forward_put) | **PUT** /1.0/networks/{networkName}/forwards/{listenAddress} | Update the network address forward
*NetworkForwardsApi* | [**network_forwards_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForwardsApi.md#network_forwards_get) | **GET** /1.0/networks/{networkName}/forwards | Get the network address forwards
*NetworkForwardsApi* | [**network_forwards_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForwardsApi.md#network_forwards_post) | **POST** /1.0/networks/{networkName}/forwards | Add a network address forward
*NetworkIntegrationsApi* | [**network_integration_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationsApi.md#network_integration_delete) | **DELETE** /1.0/network-integrations/{integration} | Delete the network integration
*NetworkIntegrationsApi* | [**network_integration_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationsApi.md#network_integration_get) | **GET** /1.0/network-integrations/{integration} | Get the network integration
*NetworkIntegrationsApi* | [**network_integration_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationsApi.md#network_integration_patch) | **PATCH** /1.0/network-integrations/{integration} | Partially update the network integration
*NetworkIntegrationsApi* | [**network_integration_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationsApi.md#network_integration_post) | **POST** /1.0/network-integrations/{integration} | Rename the network integration
*NetworkIntegrationsApi* | [**network_integration_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationsApi.md#network_integration_put) | **PUT** /1.0/network-integrations/{integration} | Update the network integration
*NetworkIntegrationsApi* | [**network_integrations_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationsApi.md#network_integrations_get) | **GET** /1.0/network-integrations | Get the network integrations
*NetworkIntegrationsApi* | [**network_integrations_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationsApi.md#network_integrations_get_recursion1) | **GET** /1.0/network-integrations?recursion&#x3D;1 | Get the network integrations
*NetworkIntegrationsApi* | [**network_integrations_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationsApi.md#network_integrations_post) | **POST** /1.0/network-integrations | Add a network integration
*NetworkLoadBalancersApi* | [**network_load_balancer_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancersApi.md#network_load_balancer_delete) | **DELETE** /1.0/networks/{networkName}/load-balancers/{listenAddress} | Delete the network address load balancer
*NetworkLoadBalancersApi* | [**network_load_balancer_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancersApi.md#network_load_balancer_get) | **GET** /1.0/networks/{networkName}/load-balancers/{listenAddress} | Get the network address load balancer
*NetworkLoadBalancersApi* | [**network_load_balancer_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancersApi.md#network_load_balancer_get_recursion1) | **GET** /1.0/networks/{networkName}/load-balancers?recursion&#x3D;1 | Get the network address load balancers
*NetworkLoadBalancersApi* | [**network_load_balancer_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancersApi.md#network_load_balancer_patch) | **PATCH** /1.0/networks/{networkName}/load-balancers/{listenAddress} | Partially update the network address load balancer
*NetworkLoadBalancersApi* | [**network_load_balancer_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancersApi.md#network_load_balancer_put) | **PUT** /1.0/networks/{networkName}/load-balancers/{listenAddress} | Update the network address load balancer
*NetworkLoadBalancersApi* | [**network_load_balancer_state_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancersApi.md#network_load_balancer_state_get) | **GET** /1.0/networks/{networkName}/load-balancers/{listenAddress}/state | Get the network address load balancer state
*NetworkLoadBalancersApi* | [**network_load_balancers_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancersApi.md#network_load_balancers_get) | **GET** /1.0/networks/{networkName}/load-balancers | Get the network address of load balancers
*NetworkLoadBalancersApi* | [**network_load_balancers_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancersApi.md#network_load_balancers_post) | **POST** /1.0/networks/{networkName}/load-balancers | Add a network load balancer
*NetworkPeersApi* | [**network_peer_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPeersApi.md#network_peer_delete) | **DELETE** /1.0/networks/{networkName}/peers/{peerName} | Delete the network peer
*NetworkPeersApi* | [**network_peer_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPeersApi.md#network_peer_get) | **GET** /1.0/networks/{networkName}/peers/{peerName} | Get the network peer
*NetworkPeersApi* | [**network_peer_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPeersApi.md#network_peer_get_recursion1) | **GET** /1.0/networks/{networkName}/peers?recursion&#x3D;1 | Get the network peers
*NetworkPeersApi* | [**network_peer_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPeersApi.md#network_peer_patch) | **PATCH** /1.0/networks/{networkName}/peers/{peerName} | Partially update the network peer
*NetworkPeersApi* | [**network_peer_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPeersApi.md#network_peer_put) | **PUT** /1.0/networks/{networkName}/peers/{peerName} | Update the network peer
*NetworkPeersApi* | [**network_peers_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPeersApi.md#network_peers_get) | **GET** /1.0/networks/{networkName}/peers | Get the network peers
*NetworkPeersApi* | [**network_peers_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPeersApi.md#network_peers_post) | **POST** /1.0/networks/{networkName}/peers | Add a network peer
*NetworkZonesApi* | [**network_zone_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zone_delete) | **DELETE** /1.0/network-zones/{zone} | Delete the network zone
*NetworkZonesApi* | [**network_zone_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zone_get) | **GET** /1.0/network-zones/{zone} | Get the network zone
*NetworkZonesApi* | [**network_zone_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zone_patch) | **PATCH** /1.0/network-zones/{zone} | Partially update the network zone
*NetworkZonesApi* | [**network_zone_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zone_put) | **PUT** /1.0/network-zones/{zone} | Update the network zone
*NetworkZonesApi* | [**network_zone_record_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zone_record_delete) | **DELETE** /1.0/network-zones/{zone}/records/{name} | Delete the network zone record
*NetworkZonesApi* | [**network_zone_record_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zone_record_get) | **GET** /1.0/network-zones/{zone}/records/{name} | Get the network zone record
*NetworkZonesApi* | [**network_zone_record_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zone_record_patch) | **PATCH** /1.0/network-zones/{zone}/records/{name} | Partially update the network zone record
*NetworkZonesApi* | [**network_zone_record_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zone_record_put) | **PUT** /1.0/network-zones/{zone}/records/{name} | Update the network zone record
*NetworkZonesApi* | [**network_zone_records_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zone_records_get) | **GET** /1.0/network-zones/{zone}/records | Get the network zone records
*NetworkZonesApi* | [**network_zone_records_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zone_records_get_recursion1) | **GET** /1.0/network-zones/{zone}/records?recursion&#x3D;1 | Get the network zone records
*NetworkZonesApi* | [**network_zone_records_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zone_records_post) | **POST** /1.0/network-zones/{zone}/records | Add a network zone record
*NetworkZonesApi* | [**network_zones_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zones_get) | **GET** /1.0/network-zones | Get the network zones
*NetworkZonesApi* | [**network_zones_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zones_get_recursion1) | **GET** /1.0/network-zones?recursion&#x3D;1 | Get the network zones
*NetworkZonesApi* | [**network_zones_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesApi.md#network_zones_post) | **POST** /1.0/network-zones | Add a network zone
*NetworksApi* | [**network_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksApi.md#network_delete) | **DELETE** /1.0/networks/{name} | Delete the network
*NetworksApi* | [**network_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksApi.md#network_get) | **GET** /1.0/networks/{name} | Get the network
*NetworksApi* | [**network_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksApi.md#network_patch) | **PATCH** /1.0/networks/{name} | Partially update the network
*NetworksApi* | [**network_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksApi.md#network_post) | **POST** /1.0/networks/{name} | Rename the network
*NetworksApi* | [**network_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksApi.md#network_put) | **PUT** /1.0/networks/{name} | Update the network
*NetworksApi* | [**networks_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksApi.md#networks_get) | **GET** /1.0/networks | Get the networks
*NetworksApi* | [**networks_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksApi.md#networks_get_recursion1) | **GET** /1.0/networks?recursion&#x3D;1 | Get the networks
*NetworksApi* | [**networks_leases_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksApi.md#networks_leases_get) | **GET** /1.0/networks/{name}/leases | Get the DHCP leases
*NetworksApi* | [**networks_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksApi.md#networks_post) | **POST** /1.0/networks | Add a network
*NetworksApi* | [**networks_state_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksApi.md#networks_state_get) | **GET** /1.0/networks/{name}/state | Get the network state
*OperationsApi* | [**operation_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/OperationsApi.md#operation_delete) | **DELETE** /1.0/operations/{id} | Cancel the operation
*OperationsApi* | [**operation_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/OperationsApi.md#operation_get) | **GET** /1.0/operations/{id} | Get the operation state
*OperationsApi* | [**operation_wait_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/OperationsApi.md#operation_wait_get) | **GET** /1.0/operations/{id}/wait | Wait for the operation
*OperationsApi* | [**operation_wait_get_untrusted**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/OperationsApi.md#operation_wait_get_untrusted) | **GET** /1.0/operations/{id}/wait?public | Wait for the operation
*OperationsApi* | [**operation_websocket_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/OperationsApi.md#operation_websocket_get) | **GET** /1.0/operations/{id}/websocket | Get the websocket stream
*OperationsApi* | [**operation_websocket_get_untrusted**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/OperationsApi.md#operation_websocket_get_untrusted) | **GET** /1.0/operations/{id}/websocket?public | Get the websocket stream
*OperationsApi* | [**operations_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/OperationsApi.md#operations_get) | **GET** /1.0/operations | Get the operations
*OperationsApi* | [**operations_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/OperationsApi.md#operations_get_recursion1) | **GET** /1.0/operations?recursion&#x3D;1 | Get the operations
*ProfilesApi* | [**profile_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfilesApi.md#profile_delete) | **DELETE** /1.0/profiles/{name} | Delete the profile
*ProfilesApi* | [**profile_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfilesApi.md#profile_get) | **GET** /1.0/profiles/{name} | Get the profile
*ProfilesApi* | [**profile_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfilesApi.md#profile_patch) | **PATCH** /1.0/profiles/{name} | Partially update the profile
*ProfilesApi* | [**profile_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfilesApi.md#profile_post) | **POST** /1.0/profiles/{name} | Rename the profile
*ProfilesApi* | [**profile_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfilesApi.md#profile_put) | **PUT** /1.0/profiles/{name} | Update the profile
*ProfilesApi* | [**profiles_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfilesApi.md#profiles_get) | **GET** /1.0/profiles | Get the profiles
*ProfilesApi* | [**profiles_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfilesApi.md#profiles_get_recursion1) | **GET** /1.0/profiles?recursion&#x3D;1 | Get the profiles
*ProfilesApi* | [**profiles_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfilesApi.md#profiles_post) | **POST** /1.0/profiles | Add a profile
*ProjectsApi* | [**project_access**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectsApi.md#project_access) | **GET** /1.0/projects/{name}/access | Get who has access to a project
*ProjectsApi* | [**project_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectsApi.md#project_delete) | **DELETE** /1.0/projects/{name} | Delete the project
*ProjectsApi* | [**project_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectsApi.md#project_get) | **GET** /1.0/projects/{name} | Get the project
*ProjectsApi* | [**project_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectsApi.md#project_patch) | **PATCH** /1.0/projects/{name} | Partially update the project
*ProjectsApi* | [**project_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectsApi.md#project_post) | **POST** /1.0/projects/{name} | Rename the project
*ProjectsApi* | [**project_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectsApi.md#project_put) | **PUT** /1.0/projects/{name} | Update the project
*ProjectsApi* | [**project_state_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectsApi.md#project_state_get) | **GET** /1.0/projects/{name}/state | Get the project state
*ProjectsApi* | [**projects_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectsApi.md#projects_get) | **GET** /1.0/projects | Get the projects
*ProjectsApi* | [**projects_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectsApi.md#projects_get_recursion1) | **GET** /1.0/projects?recursion&#x3D;1 | Get the projects
*ProjectsApi* | [**projects_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectsApi.md#projects_post) | **POST** /1.0/projects | Add a project
*ServerApi* | [**api_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerApi.md#api_get) | **GET** / | Get the supported API endpoints
*ServerApi* | [**events_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerApi.md#events_get) | **GET** /1.0/events | Get the event stream
*ServerApi* | [**resources_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerApi.md#resources_get) | **GET** /1.0/resources | Get system resources information
*ServerApi* | [**server_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerApi.md#server_get) | **GET** /1.0 | Get the server environment and configuration
*ServerApi* | [**server_get_untrusted**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerApi.md#server_get_untrusted) | **GET** /1.0?public | Get the server environment
*ServerApi* | [**server_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerApi.md#server_patch) | **PATCH** /1.0 | Partially update the server configuration
*ServerApi* | [**server_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerApi.md#server_put) | **PUT** /1.0 | Update the server configuration
*StorageApi* | [**storage_pool_bucket_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_bucket_delete) | **DELETE** /1.0/storage-pools/{name}/buckets/{bucketName} | Delete the storage bucket
*StorageApi* | [**storage_pool_bucket_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_bucket_get) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName} | Get the storage pool bucket
*StorageApi* | [**storage_pool_bucket_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_bucket_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}?recursion&#x3D;1 | Get the full storage pool bucket details
*StorageApi* | [**storage_pool_bucket_key_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_bucket_key_delete) | **DELETE** /1.0/storage-pools/{name}/buckets/{bucketName}/keys/{keyName} | Delete the storage bucket key
*StorageApi* | [**storage_pool_bucket_key_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_bucket_key_get) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/keys/{keyName} | Get the storage pool bucket key
*StorageApi* | [**storage_pool_bucket_key_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_bucket_key_post) | **POST** /1.0/storage-pools/{poolName}/buckets/{bucketName}/keys | Add a storage pool bucket key.
*StorageApi* | [**storage_pool_bucket_key_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_bucket_key_put) | **PUT** /1.0/storage-pools/{name}/buckets/{bucketName}/keys/{keyName} | Update the storage bucket key
*StorageApi* | [**storage_pool_bucket_keys_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_bucket_keys_get) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/keys | Get the storage pool bucket keys
*StorageApi* | [**storage_pool_bucket_keys_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_bucket_keys_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/keys?recursion&#x3D;1 | Get the storage pool bucket keys
*StorageApi* | [**storage_pool_bucket_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_bucket_patch) | **PATCH** /1.0/storage-pools/{name}/buckets/{bucketName} | Partially update the storage bucket.
*StorageApi* | [**storage_pool_bucket_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_bucket_post) | **POST** /1.0/storage-pools/{poolName}/buckets | Add a storage pool bucket.
*StorageApi* | [**storage_pool_bucket_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_bucket_put) | **PUT** /1.0/storage-pools/{name}/buckets/{bucketName} | Update the storage bucket
*StorageApi* | [**storage_pool_buckets_backup_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_buckets_backup_delete) | **DELETE** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups/{backupName} | Delete a storage bucket backup
*StorageApi* | [**storage_pool_buckets_backup_export_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_buckets_backup_export_get) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups/{backupName}/export | Get the raw backup file
*StorageApi* | [**storage_pool_buckets_backup_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_buckets_backup_get) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups/{backupName} | Get the storage bucket backup
*StorageApi* | [**storage_pool_buckets_backup_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_buckets_backup_post) | **POST** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups/{backupName} | Rename a storage bucket backup
*StorageApi* | [**storage_pool_buckets_backups_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_buckets_backups_get) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups | Get the storage bucket backups
*StorageApi* | [**storage_pool_buckets_backups_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_buckets_backups_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups?recursion&#x3D;1 | Get the storage bucket backups
*StorageApi* | [**storage_pool_buckets_backups_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_buckets_backups_post) | **POST** /1.0/storage-pools/{poolName}/buckets/{bucketName}/backups | Create a storage bucket backup
*StorageApi* | [**storage_pool_buckets_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_buckets_get) | **GET** /1.0/storage-pools/{poolName}/buckets | Get the storage pool buckets
*StorageApi* | [**storage_pool_buckets_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_buckets_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/buckets?recursion&#x3D;1 | Get the storage pool buckets
*StorageApi* | [**storage_pool_buckets_get_recursion2**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_buckets_get_recursion2) | **GET** /1.0/storage-pools/{poolName}/buckets?recursion&#x3D;2 | Get the storage pool bucket details
*StorageApi* | [**storage_pool_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_get) | **GET** /1.0/storage-pools/{poolName} | Get the storage pool
*StorageApi* | [**storage_pool_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_patch) | **PATCH** /1.0/storage-pools/{poolName} | Partially update the storage pool
*StorageApi* | [**storage_pool_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_put) | **PUT** /1.0/storage-pools/{poolName} | Update the storage pool
*StorageApi* | [**storage_pool_resources**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_resources) | **GET** /1.0/storage-pools/{name}/resources | Get storage pool resources information
*StorageApi* | [**storage_pool_volume_type_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volume_type_delete) | **DELETE** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName} | Delete the storage volume
*StorageApi* | [**storage_pool_volume_type_files_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volume_type_files_delete) | **DELETE** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/files | Delete a file
*StorageApi* | [**storage_pool_volume_type_files_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volume_type_files_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/files | Get a file
*StorageApi* | [**storage_pool_volume_type_files_head**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volume_type_files_head) | **HEAD** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/files | Get metadata for a file
*StorageApi* | [**storage_pool_volume_type_files_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volume_type_files_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/files | Create or replace a file
*StorageApi* | [**storage_pool_volume_type_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volume_type_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName} | Get the storage volume
*StorageApi* | [**storage_pool_volume_type_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volume_type_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}?recursion&#x3D;1 | Get the full storage volume details
*StorageApi* | [**storage_pool_volume_type_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volume_type_patch) | **PATCH** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName} | Partially update the storage volume
*StorageApi* | [**storage_pool_volume_type_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volume_type_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName} | Rename or move/migrate a storage volume
*StorageApi* | [**storage_pool_volume_type_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volume_type_put) | **PUT** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName} | Update the storage volume
*StorageApi* | [**storage_pool_volume_type_sftp_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volume_type_sftp_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/sftp | Get the storage volume SFTP connection
*StorageApi* | [**storage_pool_volume_type_state_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volume_type_state_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/state | Get the storage volume state
*StorageApi* | [**storage_pool_volumes_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_get) | **GET** /1.0/storage-pools/{poolName}/volumes | Get the storage volumes
*StorageApi* | [**storage_pool_volumes_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/volumes?recursion&#x3D;1 | Get the storage volumes
*StorageApi* | [**storage_pool_volumes_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_post) | **POST** /1.0/storage-pools/{poolName}/volumes | Add a storage volume
*StorageApi* | [**storage_pool_volumes_type_backup_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_backup_delete) | **DELETE** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups/{backupName} | Delete a storage volume backup
*StorageApi* | [**storage_pool_volumes_type_backup_export_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_backup_export_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups/{backupName}/export | Get the raw backup file
*StorageApi* | [**storage_pool_volumes_type_backup_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_backup_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups/{backupName} | Get the storage volume backup
*StorageApi* | [**storage_pool_volumes_type_backup_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_backup_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups/{backupName} | Rename a storage volume backup
*StorageApi* | [**storage_pool_volumes_type_backups_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_backups_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups | Get the storage volume backups
*StorageApi* | [**storage_pool_volumes_type_backups_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_backups_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups?recursion&#x3D;1 | Get the storage volume backups
*StorageApi* | [**storage_pool_volumes_type_backups_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_backups_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/backups | Create a storage volume backup
*StorageApi* | [**storage_pool_volumes_type_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type} | Get the storage volumes
*StorageApi* | [**storage_pool_volumes_type_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}?recursion&#x3D;1 | Get the storage volumes
*StorageApi* | [**storage_pool_volumes_type_get_recursion2**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_get_recursion2) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}?recursion&#x3D;2 | Get the storage volumes with all details
*StorageApi* | [**storage_pool_volumes_type_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type} | Add a storage volume
*StorageApi* | [**storage_pool_volumes_type_snapshot_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_snapshot_delete) | **DELETE** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots/{snapshotName} | Delete a storage volume snapshot
*StorageApi* | [**storage_pool_volumes_type_snapshot_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_snapshot_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots/{snapshotName} | Get the storage volume snapshot
*StorageApi* | [**storage_pool_volumes_type_snapshot_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_snapshot_patch) | **PATCH** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots/{snapshotName} | Partially update the storage volume snapshot
*StorageApi* | [**storage_pool_volumes_type_snapshot_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_snapshot_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots/{snapshotName} | Rename a storage volume snapshot
*StorageApi* | [**storage_pool_volumes_type_snapshot_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_snapshot_put) | **PUT** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots/{snapshotName} | Update the storage volume snapshot
*StorageApi* | [**storage_pool_volumes_type_snapshots_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_snapshots_get) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots | Get the storage volume snapshots
*StorageApi* | [**storage_pool_volumes_type_snapshots_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_snapshots_get_recursion1) | **GET** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots?recursion&#x3D;1 | Get the storage volume snapshots
*StorageApi* | [**storage_pool_volumes_type_snapshots_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pool_volumes_type_snapshots_post) | **POST** /1.0/storage-pools/{poolName}/volumes/{type}/{volumeName}/snapshots | Create a storage volume snapshot
*StorageApi* | [**storage_pools_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pools_delete) | **DELETE** /1.0/storage-pools/{poolName} | Delete the storage pool
*StorageApi* | [**storage_pools_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pools_get) | **GET** /1.0/storage-pools | Get the storage pools
*StorageApi* | [**storage_pools_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pools_get_recursion1) | **GET** /1.0/storage-pools?recursion&#x3D;1 | Get the storage pools
*StorageApi* | [**storage_pools_post**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageApi.md#storage_pools_post) | **POST** /1.0/storage-pools | Add a storage pool
*WarningsApi* | [**warning_delete**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/WarningsApi.md#warning_delete) | **DELETE** /1.0/warnings/{uuid} | Delete the warning
*WarningsApi* | [**warning_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/WarningsApi.md#warning_get) | **GET** /1.0/warnings/{uuid} | Get the warning
*WarningsApi* | [**warning_patch**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/WarningsApi.md#warning_patch) | **PATCH** /1.0/warnings/{uuid} | Partially update the warning
*WarningsApi* | [**warning_put**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/WarningsApi.md#warning_put) | **PUT** /1.0/warnings/{uuid} | Update the warning
*WarningsApi* | [**warnings_get**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/WarningsApi.md#warnings_get) | **GET** /1.0/warnings | List the warnings
*WarningsApi* | [**warnings_get_recursion1**](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/WarningsApi.md#warnings_get_recursion1) | **GET** /1.0/warnings?recursion&#x3D;1 | Get the warnings


## Documentation For Models

 - [AccessEntry](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/AccessEntry.md)
 - [ApiGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ApiGet200Response.md)
 - [BackupTarget](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/BackupTarget.md)
 - [Certificate](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/Certificate.md)
 - [CertificateAddToken](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificateAddToken.md)
 - [CertificateGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificateGet200Response.md)
 - [CertificatePut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificatePut.md)
 - [CertificatesGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificatesGet200Response.md)
 - [CertificatesGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificatesGetRecursion1200Response.md)
 - [CertificatesPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/CertificatesPost.md)
 - [Cluster](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/Cluster.md)
 - [ClusterCertificatePut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterCertificatePut.md)
 - [ClusterGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGet200Response.md)
 - [ClusterGroup](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroup.md)
 - [ClusterGroupGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroupGet200Response.md)
 - [ClusterGroupPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroupPost.md)
 - [ClusterGroupPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroupPut.md)
 - [ClusterGroupsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroupsGet200Response.md)
 - [ClusterGroupsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroupsGetRecursion1200Response.md)
 - [ClusterGroupsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterGroupsPost.md)
 - [ClusterMember](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMember.md)
 - [ClusterMemberConfigKey](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMemberConfigKey.md)
 - [ClusterMemberGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMemberGet200Response.md)
 - [ClusterMemberJoinToken](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMemberJoinToken.md)
 - [ClusterMemberPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMemberPost.md)
 - [ClusterMemberPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMemberPut.md)
 - [ClusterMemberState](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMemberState.md)
 - [ClusterMemberStateGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMemberStateGet200Response.md)
 - [ClusterMemberStatePost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMemberStatePost.md)
 - [ClusterMemberSysInfo](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMemberSysInfo.md)
 - [ClusterMembersGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMembersGet200Response.md)
 - [ClusterMembersGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMembersGetRecursion1200Response.md)
 - [ClusterMembersPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMembersPost.md)
 - [ClusterMembersPost202Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterMembersPost202Response.md)
 - [ClusterPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ClusterPut.md)
 - [Event](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/Event.md)
 - [Image](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/Image.md)
 - [ImageAlias](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImageAlias.md)
 - [ImageAliasGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImageAliasGet200Response.md)
 - [ImageAliasesEntry](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImageAliasesEntry.md)
 - [ImageAliasesEntryPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImageAliasesEntryPost.md)
 - [ImageAliasesEntryPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImageAliasesEntryPut.md)
 - [ImageAliasesPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImageAliasesPost.md)
 - [ImageExportPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImageExportPost.md)
 - [ImageGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImageGet200Response.md)
 - [ImageMetadata](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImageMetadata.md)
 - [ImageMetadataTemplate](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImageMetadataTemplate.md)
 - [ImagePut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagePut.md)
 - [ImageSource](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImageSource.md)
 - [ImagesAliasesGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesAliasesGet200Response.md)
 - [ImagesAliasesGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesAliasesGetRecursion1200Response.md)
 - [ImagesGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesGet200Response.md)
 - [ImagesGetRecursion1Untrusted200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesGetRecursion1Untrusted200Response.md)
 - [ImagesPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesPost.md)
 - [ImagesPostSource](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ImagesPostSource.md)
 - [InitClusterPreseed](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InitClusterPreseed.md)
 - [InitLocalPreseed](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InitLocalPreseed.md)
 - [InitNetworksProjectPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InitNetworksProjectPost.md)
 - [InitPreseed](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InitPreseed.md)
 - [InitProfileProjectPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InitProfileProjectPost.md)
 - [InitStorageVolumesProjectPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InitStorageVolumesProjectPost.md)
 - [Instance](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/Instance.md)
 - [InstanceAccess200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceAccess200Response.md)
 - [InstanceBackup](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceBackup.md)
 - [InstanceBackupGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceBackupGet200Response.md)
 - [InstanceBackupPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceBackupPost.md)
 - [InstanceBackupsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceBackupsGet200Response.md)
 - [InstanceBackupsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceBackupsGetRecursion1200Response.md)
 - [InstanceBackupsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceBackupsPost.md)
 - [InstanceConsoleGet404Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceConsoleGet404Response.md)
 - [InstanceConsolePost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceConsolePost.md)
 - [InstanceDebugRepairPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceDebugRepairPost.md)
 - [InstanceExecOutputsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceExecOutputsGet200Response.md)
 - [InstanceExecPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceExecPost.md)
 - [InstanceFull](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceFull.md)
 - [InstanceGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceGet200Response.md)
 - [InstanceGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceGetRecursion1200Response.md)
 - [InstanceLogsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceLogsGet200Response.md)
 - [InstanceMetadataGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceMetadataGet200Response.md)
 - [InstancePost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancePost.md)
 - [InstancePostTarget](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancePostTarget.md)
 - [InstancePut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancePut.md)
 - [InstanceRebuildPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceRebuildPost.md)
 - [InstanceSnapshot](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceSnapshot.md)
 - [InstanceSnapshotGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceSnapshotGet200Response.md)
 - [InstanceSnapshotPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceSnapshotPost.md)
 - [InstanceSnapshotPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceSnapshotPut.md)
 - [InstanceSnapshotsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceSnapshotsGet200Response.md)
 - [InstanceSnapshotsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceSnapshotsGetRecursion1200Response.md)
 - [InstanceSnapshotsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceSnapshotsPost.md)
 - [InstanceSource](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceSource.md)
 - [InstanceState](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceState.md)
 - [InstanceStateCPU](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceStateCPU.md)
 - [InstanceStateDisk](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceStateDisk.md)
 - [InstanceStateGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceStateGet200Response.md)
 - [InstanceStateMemory](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceStateMemory.md)
 - [InstanceStateNetwork](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceStateNetwork.md)
 - [InstanceStateNetworkAddress](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceStateNetworkAddress.md)
 - [InstanceStateNetworkCounters](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceStateNetworkCounters.md)
 - [InstanceStateOSInfo](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceStateOSInfo.md)
 - [InstanceStatePut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstanceStatePut.md)
 - [InstancesGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesGet200Response.md)
 - [InstancesGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesGetRecursion1200Response.md)
 - [InstancesGetRecursion2200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesGetRecursion2200Response.md)
 - [InstancesPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesPost.md)
 - [InstancesPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/InstancesPut.md)
 - [MetadataConfigGroup](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/MetadataConfigGroup.md)
 - [MetadataConfigKey](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/MetadataConfigKey.md)
 - [MetadataConfiguration](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/MetadataConfiguration.md)
 - [MetadataConfigurationGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/MetadataConfigurationGet200Response.md)
 - [Network](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/Network.md)
 - [NetworkACL](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkACL.md)
 - [NetworkACLPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkACLPost.md)
 - [NetworkACLPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkACLPut.md)
 - [NetworkACLRule](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkACLRule.md)
 - [NetworkACLsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkACLsPost.md)
 - [NetworkAclGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAclGet200Response.md)
 - [NetworkAclsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAclsGet200Response.md)
 - [NetworkAclsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAclsGetRecursion1200Response.md)
 - [NetworkAddressSet](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSet.md)
 - [NetworkAddressSetGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetGet200Response.md)
 - [NetworkAddressSetPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetPost.md)
 - [NetworkAddressSetPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetPut.md)
 - [NetworkAddressSetsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetsGet200Response.md)
 - [NetworkAddressSetsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetsGetRecursion1200Response.md)
 - [NetworkAddressSetsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAddressSetsPost.md)
 - [NetworkAllocations](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAllocations.md)
 - [NetworkAllocationsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkAllocationsGet200Response.md)
 - [NetworkForward](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForward.md)
 - [NetworkForwardGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForwardGet200Response.md)
 - [NetworkForwardGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForwardGetRecursion1200Response.md)
 - [NetworkForwardPort](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForwardPort.md)
 - [NetworkForwardPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForwardPut.md)
 - [NetworkForwardsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForwardsGet200Response.md)
 - [NetworkForwardsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkForwardsPost.md)
 - [NetworkGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkGet200Response.md)
 - [NetworkIntegration](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegration.md)
 - [NetworkIntegrationGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationGet200Response.md)
 - [NetworkIntegrationPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationPost.md)
 - [NetworkIntegrationPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationPut.md)
 - [NetworkIntegrationsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationsGet200Response.md)
 - [NetworkIntegrationsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationsGetRecursion1200Response.md)
 - [NetworkIntegrationsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkIntegrationsPost.md)
 - [NetworkLease](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLease.md)
 - [NetworkLoadBalancer](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancer.md)
 - [NetworkLoadBalancerBackend](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancerBackend.md)
 - [NetworkLoadBalancerGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancerGet200Response.md)
 - [NetworkLoadBalancerGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancerGetRecursion1200Response.md)
 - [NetworkLoadBalancerPort](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancerPort.md)
 - [NetworkLoadBalancerPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancerPut.md)
 - [NetworkLoadBalancerState](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancerState.md)
 - [NetworkLoadBalancerStateBackendHealth](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancerStateBackendHealth.md)
 - [NetworkLoadBalancerStateBackendHealthPort](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancerStateBackendHealthPort.md)
 - [NetworkLoadBalancerStateGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancerStateGet200Response.md)
 - [NetworkLoadBalancersGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancersGet200Response.md)
 - [NetworkLoadBalancersPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkLoadBalancersPost.md)
 - [NetworkPeer](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPeer.md)
 - [NetworkPeerGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPeerGet200Response.md)
 - [NetworkPeerGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPeerGetRecursion1200Response.md)
 - [NetworkPeerPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPeerPut.md)
 - [NetworkPeersGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPeersGet200Response.md)
 - [NetworkPeersPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPeersPost.md)
 - [NetworkPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPost.md)
 - [NetworkPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkPut.md)
 - [NetworkState](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkState.md)
 - [NetworkStateAddress](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkStateAddress.md)
 - [NetworkStateBond](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkStateBond.md)
 - [NetworkStateBridge](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkStateBridge.md)
 - [NetworkStateCounters](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkStateCounters.md)
 - [NetworkStateOVN](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkStateOVN.md)
 - [NetworkStateVLAN](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkStateVLAN.md)
 - [NetworkZone](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZone.md)
 - [NetworkZoneGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZoneGet200Response.md)
 - [NetworkZonePut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonePut.md)
 - [NetworkZoneRecord](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZoneRecord.md)
 - [NetworkZoneRecordEntry](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZoneRecordEntry.md)
 - [NetworkZoneRecordGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZoneRecordGet200Response.md)
 - [NetworkZoneRecordPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZoneRecordPut.md)
 - [NetworkZoneRecordsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZoneRecordsGet200Response.md)
 - [NetworkZoneRecordsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZoneRecordsGetRecursion1200Response.md)
 - [NetworkZoneRecordsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZoneRecordsPost.md)
 - [NetworkZonesGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesGet200Response.md)
 - [NetworkZonesGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesGetRecursion1200Response.md)
 - [NetworkZonesPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworkZonesPost.md)
 - [NetworksGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksGet200Response.md)
 - [NetworksGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksGetRecursion1200Response.md)
 - [NetworksLeasesGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksLeasesGet200Response.md)
 - [NetworksPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksPost.md)
 - [NetworksStateGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/NetworksStateGet200Response.md)
 - [Operation](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/Operation.md)
 - [OperationGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/OperationGet200Response.md)
 - [OperationsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/OperationsGet200Response.md)
 - [OperationsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/OperationsGetRecursion1200Response.md)
 - [Profile](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/Profile.md)
 - [ProfileGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfileGet200Response.md)
 - [ProfilePost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfilePost.md)
 - [ProfilePut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfilePut.md)
 - [ProfilesGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfilesGet200Response.md)
 - [ProfilesGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfilesGetRecursion1200Response.md)
 - [ProfilesPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProfilesPost.md)
 - [Project](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/Project.md)
 - [ProjectGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectGet200Response.md)
 - [ProjectPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectPost.md)
 - [ProjectPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectPut.md)
 - [ProjectState](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectState.md)
 - [ProjectStateGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectStateGet200Response.md)
 - [ProjectStateResource](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectStateResource.md)
 - [ProjectsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectsGet200Response.md)
 - [ProjectsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectsGetRecursion1200Response.md)
 - [ProjectsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ProjectsPost.md)
 - [Resources](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/Resources.md)
 - [ResourcesCPU](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesCPU.md)
 - [ResourcesCPUAddressSizes](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesCPUAddressSizes.md)
 - [ResourcesCPUCache](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesCPUCache.md)
 - [ResourcesCPUCore](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesCPUCore.md)
 - [ResourcesCPUSocket](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesCPUSocket.md)
 - [ResourcesCPUThread](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesCPUThread.md)
 - [ResourcesGPU](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesGPU.md)
 - [ResourcesGPUCard](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesGPUCard.md)
 - [ResourcesGPUCardDRM](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesGPUCardDRM.md)
 - [ResourcesGPUCardMdev](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesGPUCardMdev.md)
 - [ResourcesGPUCardNvidia](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesGPUCardNvidia.md)
 - [ResourcesGPUCardSRIOV](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesGPUCardSRIOV.md)
 - [ResourcesGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesGet200Response.md)
 - [ResourcesLoad](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesLoad.md)
 - [ResourcesMemory](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesMemory.md)
 - [ResourcesMemoryNode](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesMemoryNode.md)
 - [ResourcesNetwork](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesNetwork.md)
 - [ResourcesNetworkCard](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesNetworkCard.md)
 - [ResourcesNetworkCardPort](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesNetworkCardPort.md)
 - [ResourcesNetworkCardPortInfiniband](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesNetworkCardPortInfiniband.md)
 - [ResourcesNetworkCardSRIOV](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesNetworkCardSRIOV.md)
 - [ResourcesNetworkCardVDPA](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesNetworkCardVDPA.md)
 - [ResourcesPCI](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesPCI.md)
 - [ResourcesPCIDevice](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesPCIDevice.md)
 - [ResourcesPCIVPD](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesPCIVPD.md)
 - [ResourcesSerial](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesSerial.md)
 - [ResourcesSerialDevice](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesSerialDevice.md)
 - [ResourcesStorage](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesStorage.md)
 - [ResourcesStorageDisk](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesStorageDisk.md)
 - [ResourcesStorageDiskPartition](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesStorageDiskPartition.md)
 - [ResourcesStoragePool](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesStoragePool.md)
 - [ResourcesStoragePoolInodes](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesStoragePoolInodes.md)
 - [ResourcesStoragePoolSpace](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesStoragePoolSpace.md)
 - [ResourcesSystem](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesSystem.md)
 - [ResourcesSystemChassis](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesSystemChassis.md)
 - [ResourcesSystemFirmware](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesSystemFirmware.md)
 - [ResourcesSystemMotherboard](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesSystemMotherboard.md)
 - [ResourcesUSB](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesUSB.md)
 - [ResourcesUSBDevice](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesUSBDevice.md)
 - [ResourcesUSBDeviceInterface](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ResourcesUSBDeviceInterface.md)
 - [Server](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/Server.md)
 - [ServerEnvironment](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerEnvironment.md)
 - [ServerGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerGet200Response.md)
 - [ServerGet500Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerGet500Response.md)
 - [ServerGetUntrusted200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerGetUntrusted200Response.md)
 - [ServerPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerPut.md)
 - [ServerPut200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerPut200Response.md)
 - [ServerPut400Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerPut400Response.md)
 - [ServerPut403Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerPut403Response.md)
 - [ServerPut412Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerPut412Response.md)
 - [ServerStorageDriverInfo](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerStorageDriverInfo.md)
 - [ServerUntrusted](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/ServerUntrusted.md)
 - [StorageBucket](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageBucket.md)
 - [StorageBucketBackup](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageBucketBackup.md)
 - [StorageBucketBackupPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageBucketBackupPost.md)
 - [StorageBucketBackupsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageBucketBackupsPost.md)
 - [StorageBucketFull](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageBucketFull.md)
 - [StorageBucketKey](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageBucketKey.md)
 - [StorageBucketKeyPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageBucketKeyPut.md)
 - [StorageBucketKeysPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageBucketKeysPost.md)
 - [StorageBucketPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageBucketPut.md)
 - [StorageBucketsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageBucketsPost.md)
 - [StoragePool](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePool.md)
 - [StoragePoolBucketGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolBucketGet200Response.md)
 - [StoragePoolBucketGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolBucketGetRecursion1200Response.md)
 - [StoragePoolBucketKeyGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolBucketKeyGet200Response.md)
 - [StoragePoolBucketKeysGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolBucketKeysGet200Response.md)
 - [StoragePoolBucketKeysGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolBucketKeysGetRecursion1200Response.md)
 - [StoragePoolBucketsBackupGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolBucketsBackupGet200Response.md)
 - [StoragePoolBucketsBackupsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolBucketsBackupsGet200Response.md)
 - [StoragePoolBucketsBackupsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolBucketsBackupsGetRecursion1200Response.md)
 - [StoragePoolBucketsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolBucketsGet200Response.md)
 - [StoragePoolBucketsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolBucketsGetRecursion1200Response.md)
 - [StoragePoolBucketsGetRecursion2200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolBucketsGetRecursion2200Response.md)
 - [StoragePoolGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolGet200Response.md)
 - [StoragePoolPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolPut.md)
 - [StoragePoolResources200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolResources200Response.md)
 - [StoragePoolState](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolState.md)
 - [StoragePoolVolumeTypeGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolVolumeTypeGet200Response.md)
 - [StoragePoolVolumeTypeGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolVolumeTypeGetRecursion1200Response.md)
 - [StoragePoolVolumeTypeStateGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolVolumeTypeStateGet200Response.md)
 - [StoragePoolVolumesGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolVolumesGet200Response.md)
 - [StoragePoolVolumesTypeBackupGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolVolumesTypeBackupGet200Response.md)
 - [StoragePoolVolumesTypeBackupsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolVolumesTypeBackupsGet200Response.md)
 - [StoragePoolVolumesTypeBackupsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolVolumesTypeBackupsGetRecursion1200Response.md)
 - [StoragePoolVolumesTypeGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolVolumesTypeGet200Response.md)
 - [StoragePoolVolumesTypeGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolVolumesTypeGetRecursion1200Response.md)
 - [StoragePoolVolumesTypeGetRecursion2200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolVolumesTypeGetRecursion2200Response.md)
 - [StoragePoolVolumesTypeSnapshotGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolVolumesTypeSnapshotGet200Response.md)
 - [StoragePoolVolumesTypeSnapshotsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolVolumesTypeSnapshotsGet200Response.md)
 - [StoragePoolVolumesTypeSnapshotsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolVolumesTypeSnapshotsGetRecursion1200Response.md)
 - [StoragePoolsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolsGet200Response.md)
 - [StoragePoolsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolsGetRecursion1200Response.md)
 - [StoragePoolsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StoragePoolsPost.md)
 - [StorageVolume](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolume.md)
 - [StorageVolumeBackup](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumeBackup.md)
 - [StorageVolumeBackupPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumeBackupPost.md)
 - [StorageVolumeBackupsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumeBackupsPost.md)
 - [StorageVolumeFull](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumeFull.md)
 - [StorageVolumePost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumePost.md)
 - [StorageVolumePostTarget](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumePostTarget.md)
 - [StorageVolumePut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumePut.md)
 - [StorageVolumeSnapshot](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumeSnapshot.md)
 - [StorageVolumeSnapshotPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumeSnapshotPost.md)
 - [StorageVolumeSnapshotPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumeSnapshotPut.md)
 - [StorageVolumeSnapshotsPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumeSnapshotsPost.md)
 - [StorageVolumeSource](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumeSource.md)
 - [StorageVolumeState](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumeState.md)
 - [StorageVolumeStateUsage](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumeStateUsage.md)
 - [StorageVolumesPost](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/StorageVolumesPost.md)
 - [Warning](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/Warning.md)
 - [WarningGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/WarningGet200Response.md)
 - [WarningPut](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/WarningPut.md)
 - [WarningsGet200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/WarningsGet200Response.md)
 - [WarningsGetRecursion1200Response](https://github.com/anonhostpi/pyincusd/blob/v6.23.0.post5/docs/WarningsGetRecursion1200Response.md)


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

Endpoints do not require authorization.


## Author

API originally authored by [LXC](https://linuxcontainers.org/incus/), Python client auto-generated by [anonhostpi](https://github.com/anonhostpi)


