affinidi_tdk_vault_data_manager_client


Nameaffinidi_tdk_vault_data_manager_client JSON
Version 1.63.0 PyPI version JSON
download
home_pagehttps://github.com/affinidi/affinidi-tdk
SummaryVaultFileSystem
upload_time2025-07-08 11:32:31
maintainerNone
docs_urlNone
authorAffinidi
requires_python<4.0,>=3.8
licenseApache-2.0
keywords openapi openapi-generator vaultfilesystem
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # affinidi_tdk_vault_data_manager_client

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

For more information, please visit [https://github.com/affinidi/affinidi-tdk](https://github.com/affinidi/affinidi-tdk)

Documentation is available at [https://docs.affinidi.com/dev-tools/affinidi-tdk/clients/vault-data-manager](https://docs.affinidi.com/dev-tools/affinidi-tdk/clients/vault-data-manager)

## Requirements.

Python 3.7+

## Installation & Usage

### pip install

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

```sh
pip install affinidi_tdk_vault_data_manager_client
```

Then import the package:

```python
import affinidi_tdk_vault_data_manager_client
```

### Setuptools

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

```sh
python setup.py install --user
```

Then import the package:

```python
import affinidi_tdk_vault_data_manager_client
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

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

```python

import time
import affinidi_tdk_vault_data_manager_client
from affinidi_tdk_vault_data_manager_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.vault.affinidi.com/vfs
# See configuration.py for a list of all supported configuration parameters.
configuration = affinidi_tdk_vault_data_manager_client.Configuration(
    host = "https://api.vault.affinidi.com/vfs"
)

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

# Configure API key authorization: ConsumerTokenAuth
configuration.api_key['ConsumerTokenAuth'] = os.environ["API_KEY"]

# Configure a hook to auto-refresh API key for your personal access token (PAT), if expired
import affinidi_tdk_auth_provider

stats = {
  apiGatewayUrl,
  keyId,
  passphrase,
  privateKey,
  projectId,
  tokenEndpoint,
  tokenId,
}
authProvider = affinidi_tdk_auth_provider.AuthProvider(stats)
configuration.refresh_api_key_hook = lambda api_client: authProvider.fetch_project_scoped_token()

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['ConsumerTokenAuth'] = 'Bearer'


# Enter a context with an instance of the API client
with affinidi_tdk_vault_data_manager_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = affinidi_tdk_vault_data_manager_client.AccountsApi(api_client)
    create_account_input = affinidi_tdk_vault_data_manager_client.CreateAccountInput() # CreateAccountInput | CreateAccount

    try:
        api_response = api_instance.create_account(create_account_input)
        print("The response of AccountsApi->create_account:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling AccountsApi->create_account: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *https://api.vault.affinidi.com/vfs*

| Class              | Method                                                                        | HTTP request                                          | Description |
| ------------------ | ----------------------------------------------------------------------------- | ----------------------------------------------------- | ----------- |
| _AccountsApi_      | [**create_account**](docs/AccountsApi.md#create_account)                      | **POST** /v1/accounts                                 |
| _AccountsApi_      | [**delete_account**](docs/AccountsApi.md#delete_account)                      | **DELETE** /v1/accounts/{accountIndex}                |
| _AccountsApi_      | [**list_accounts**](docs/AccountsApi.md#list_accounts)                        | **GET** /v1/accounts                                  |
| _AccountsApi_      | [**update_account**](docs/AccountsApi.md#update_account)                      | **PUT** /v1/accounts/{accountIndex}                   |
| _ConfigurationApi_ | [**get_configuration**](docs/ConfigurationApi.md#get_configuration)           | **GET** /v1/config                                    |
| _FilesApi_         | [**get_scanned_file_info**](docs/FilesApi.md#get_scanned_file_info)           | **GET** /v1/scanned-files/{scannedFileJobId}          |
| _FilesApi_         | [**list_scanned_files**](docs/FilesApi.md#list_scanned_files)                 | **GET** /v1/scanned-files/                            |
| _FilesApi_         | [**start_file_scan**](docs/FilesApi.md#start_file_scan)                       | **POST** /v1/nodes/{nodeId}/file/scan                 |
| _NodesApi_         | [**create_node**](docs/NodesApi.md#create_node)                               | **POST** /v1/nodes                                    |
| _NodesApi_         | [**delete_node**](docs/NodesApi.md#delete_node)                               | **DELETE** /v1/nodes/{nodeId}                         |
| _NodesApi_         | [**get_detailed_node_info**](docs/NodesApi.md#get_detailed_node_info)         | **GET** /v1/nodes/{nodeId}                            |
| _NodesApi_         | [**init_nodes**](docs/NodesApi.md#init_nodes)                                 | **POST** /v1/nodes/init                               |
| _NodesApi_         | [**list_node_children**](docs/NodesApi.md#list_node_children)                 | **GET** /v1/nodes/{nodeId}/children                   |
| _NodesApi_         | [**list_root_node_children**](docs/NodesApi.md#list_root_node_children)       | **GET** /v1/nodes                                     |
| _NodesApi_         | [**move_node**](docs/NodesApi.md#move_node)                                   | **POST** /v1/nodes/{nodeId}/move                      |
| _NodesApi_         | [**permanently_delete_node**](docs/NodesApi.md#permanently_delete_node)       | **DELETE** /v1/nodes/{nodeId}/remove/{nodeIdToRemove} |
| _NodesApi_         | [**restore_node_from_trashbin**](docs/NodesApi.md#restore_node_from_trashbin) | **POST** /v1/nodes/{nodeId}/restore/{nodeIdToRestore} |
| _NodesApi_         | [**update_node**](docs/NodesApi.md#update_node)                               | **PATCH** /v1/nodes/{nodeId}                          |
| _ProfileDataApi_   | [**query_profile_data**](docs/ProfileDataApi.md#query_profile_data)           | **GET** /v1/nodes/{nodeId}/profile-data               |
| _ProfileDataApi_   | [**update_profile_data**](docs/ProfileDataApi.md#update_profile_data)         | **PATCH** /v1/nodes/{nodeId}/profile-data             |
| _WellKnownApi_     | [**get_well_known_jwks**](docs/WellKnownApi.md#get_well_known_jwks)           | **GET** /.well-known/jwks.json                        |

## Documentation For Models

- [AccountDto](docs/AccountDto.md)
- [AwsCredentialExchangeOperationOK](docs/AwsCredentialExchangeOperationOK.md)
- [ConsumerMetadataDto](docs/ConsumerMetadataDto.md)
- [CorsAwsCredentialExchangeOK](docs/CorsAwsCredentialExchangeOK.md)
- [CorsDeleteAccountOK](docs/CorsDeleteAccountOK.md)
- [CorsDeleteNodeOK](docs/CorsDeleteNodeOK.md)
- [CorsGetConfigOK](docs/CorsGetConfigOK.md)
- [CorsGetConfigurationOK](docs/CorsGetConfigurationOK.md)
- [CorsGetScannedFileInfoOK](docs/CorsGetScannedFileInfoOK.md)
- [CorsGetWellKnownJwksOK](docs/CorsGetWellKnownJwksOK.md)
- [CorsInitNodesOK](docs/CorsInitNodesOK.md)
- [CorsListAccountsOK](docs/CorsListAccountsOK.md)
- [CorsListNodeChildrenOK](docs/CorsListNodeChildrenOK.md)
- [CorsListRootNodeChildrenOK](docs/CorsListRootNodeChildrenOK.md)
- [CorsListScannedFilesOK](docs/CorsListScannedFilesOK.md)
- [CorsMoveNodeOK](docs/CorsMoveNodeOK.md)
- [CorsPermanentlyDeleteNodeOK](docs/CorsPermanentlyDeleteNodeOK.md)
- [CorsRestoreNodeFromTrashbinOK](docs/CorsRestoreNodeFromTrashbinOK.md)
- [CorsStartFileScanOK](docs/CorsStartFileScanOK.md)
- [CorsUpdateProfileDataOK](docs/CorsUpdateProfileDataOK.md)
- [CreateAccountInput](docs/CreateAccountInput.md)
- [CreateAccountOK](docs/CreateAccountOK.md)
- [CreateNodeInput](docs/CreateNodeInput.md)
- [CreateNodeOK](docs/CreateNodeOK.md)
- [DeleteAccountDto](docs/DeleteAccountDto.md)
- [DeleteNodeDto](docs/DeleteNodeDto.md)
- [EdekInfo](docs/EdekInfo.md)
- [GetConfigOK](docs/GetConfigOK.md)
- [GetDetailedNodeInfoOK](docs/GetDetailedNodeInfoOK.md)
- [GetScannedFileInfoOK](docs/GetScannedFileInfoOK.md)
- [InitNodesOK](docs/InitNodesOK.md)
- [InvalidParameterError](docs/InvalidParameterError.md)
- [InvalidParameterErrorDetailsInner](docs/InvalidParameterErrorDetailsInner.md)
- [JsonWebKeyDto](docs/JsonWebKeyDto.md)
- [JsonWebKeySetDto](docs/JsonWebKeySetDto.md)
- [ListAccountsDto](docs/ListAccountsDto.md)
- [ListNodeChildrenOK](docs/ListNodeChildrenOK.md)
- [ListRootNodeChildrenOK](docs/ListRootNodeChildrenOK.md)
- [ListScannedFilesOK](docs/ListScannedFilesOK.md)
- [ListScannedFilesOKScannedFilesInner](docs/ListScannedFilesOKScannedFilesInner.md)
- [MoveNodeDto](docs/MoveNodeDto.md)
- [MoveNodeInput](docs/MoveNodeInput.md)
- [NodeDto](docs/NodeDto.md)
- [NodeStatus](docs/NodeStatus.md)
- [NodeType](docs/NodeType.md)
- [NotFoundError](docs/NotFoundError.md)
- [QueryProfileDataOK](docs/QueryProfileDataOK.md)
- [RestoreNodeFromTrashbin](docs/RestoreNodeFromTrashbin.md)
- [StartFileScanInput](docs/StartFileScanInput.md)
- [StartFileScanOK](docs/StartFileScanOK.md)
- [UnexpectedError](docs/UnexpectedError.md)
- [UpdateAccountDto](docs/UpdateAccountDto.md)
- [UpdateAccountInput](docs/UpdateAccountInput.md)
- [UpdateNodeInput](docs/UpdateNodeInput.md)
- [UpdateProfileDataInput](docs/UpdateProfileDataInput.md)
- [UpdateProfileDataOK](docs/UpdateProfileDataOK.md)

<a id="documentation-for-authorization"></a>

## Documentation For Authorization

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

### AwsSigV4

- **Type**: API key
- **API key parameter name**: Authorization
- **Location**: HTTP header

<a id="ApiKey"></a>

### ApiKey

- **Type**: API key
- **API key parameter name**: x-api-key
- **Location**: HTTP header

<a id="bearerAuth"></a>

### bearerAuth

- **Type**: Bearer authentication (JWT)

<a id="ConsumerTokenAuth"></a>

### ConsumerTokenAuth

- **Type**: API key
- **API key parameter name**: authorization
- **Location**: HTTP header

<a id="UserTokenAuth"></a>

### UserTokenAuth

- **Type**: API key
- **API key parameter name**: authorization
- **Location**: HTTP header

<a id="ProjectTokenAuth"></a>

### ProjectTokenAuth

- **Type**: API key
- **API key parameter name**: authorization
- **Location**: HTTP header

## Author

info@affinidi.com

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/affinidi/affinidi-tdk",
    "name": "affinidi_tdk_vault_data_manager_client",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": "OpenAPI, OpenAPI-Generator, VaultFileSystem",
    "author": "Affinidi",
    "author_email": "info@affinidi.com",
    "download_url": "https://files.pythonhosted.org/packages/2c/4f/86be8594c0359002a1b731e748aec81922f305a6154dda86454580debb13/affinidi_tdk_vault_data_manager_client-1.63.0.tar.gz",
    "platform": null,
    "description": "# affinidi_tdk_vault_data_manager_client\n\nNo description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)\n\nFor more information, please visit [https://github.com/affinidi/affinidi-tdk](https://github.com/affinidi/affinidi-tdk)\n\nDocumentation is available at [https://docs.affinidi.com/dev-tools/affinidi-tdk/clients/vault-data-manager](https://docs.affinidi.com/dev-tools/affinidi-tdk/clients/vault-data-manager)\n\n## Requirements.\n\nPython 3.7+\n\n## Installation & Usage\n\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install affinidi_tdk_vault_data_manager_client\n```\n\nThen import the package:\n\n```python\nimport affinidi_tdk_vault_data_manager_client\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n\nThen import the package:\n\n```python\nimport affinidi_tdk_vault_data_manager_client\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport time\nimport affinidi_tdk_vault_data_manager_client\nfrom affinidi_tdk_vault_data_manager_client.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to https://api.vault.affinidi.com/vfs\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = affinidi_tdk_vault_data_manager_client.Configuration(\n    host = \"https://api.vault.affinidi.com/vfs\"\n)\n\n# The client must configure the authentication and authorization parameters\n# in accordance with the API server security policy.\n# Examples for each auth method are provided below, use the example that\n# satisfies your auth use case.\n\n# Configure API key authorization: ConsumerTokenAuth\nconfiguration.api_key['ConsumerTokenAuth'] = os.environ[\"API_KEY\"]\n\n# Configure a hook to auto-refresh API key for your personal access token (PAT), if expired\nimport affinidi_tdk_auth_provider\n\nstats = {\n  apiGatewayUrl,\n  keyId,\n  passphrase,\n  privateKey,\n  projectId,\n  tokenEndpoint,\n  tokenId,\n}\nauthProvider = affinidi_tdk_auth_provider.AuthProvider(stats)\nconfiguration.refresh_api_key_hook = lambda api_client: authProvider.fetch_project_scoped_token()\n\n# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n# configuration.api_key_prefix['ConsumerTokenAuth'] = 'Bearer'\n\n\n# Enter a context with an instance of the API client\nwith affinidi_tdk_vault_data_manager_client.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = affinidi_tdk_vault_data_manager_client.AccountsApi(api_client)\n    create_account_input = affinidi_tdk_vault_data_manager_client.CreateAccountInput() # CreateAccountInput | CreateAccount\n\n    try:\n        api_response = api_instance.create_account(create_account_input)\n        print(\"The response of AccountsApi->create_account:\\n\")\n        pprint(api_response)\n    except ApiException as e:\n        print(\"Exception when calling AccountsApi->create_account: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.vault.affinidi.com/vfs*\n\n| Class              | Method                                                                        | HTTP request                                          | Description |\n| ------------------ | ----------------------------------------------------------------------------- | ----------------------------------------------------- | ----------- |\n| _AccountsApi_      | [**create_account**](docs/AccountsApi.md#create_account)                      | **POST** /v1/accounts                                 |\n| _AccountsApi_      | [**delete_account**](docs/AccountsApi.md#delete_account)                      | **DELETE** /v1/accounts/{accountIndex}                |\n| _AccountsApi_      | [**list_accounts**](docs/AccountsApi.md#list_accounts)                        | **GET** /v1/accounts                                  |\n| _AccountsApi_      | [**update_account**](docs/AccountsApi.md#update_account)                      | **PUT** /v1/accounts/{accountIndex}                   |\n| _ConfigurationApi_ | [**get_configuration**](docs/ConfigurationApi.md#get_configuration)           | **GET** /v1/config                                    |\n| _FilesApi_         | [**get_scanned_file_info**](docs/FilesApi.md#get_scanned_file_info)           | **GET** /v1/scanned-files/{scannedFileJobId}          |\n| _FilesApi_         | [**list_scanned_files**](docs/FilesApi.md#list_scanned_files)                 | **GET** /v1/scanned-files/                            |\n| _FilesApi_         | [**start_file_scan**](docs/FilesApi.md#start_file_scan)                       | **POST** /v1/nodes/{nodeId}/file/scan                 |\n| _NodesApi_         | [**create_node**](docs/NodesApi.md#create_node)                               | **POST** /v1/nodes                                    |\n| _NodesApi_         | [**delete_node**](docs/NodesApi.md#delete_node)                               | **DELETE** /v1/nodes/{nodeId}                         |\n| _NodesApi_         | [**get_detailed_node_info**](docs/NodesApi.md#get_detailed_node_info)         | **GET** /v1/nodes/{nodeId}                            |\n| _NodesApi_         | [**init_nodes**](docs/NodesApi.md#init_nodes)                                 | **POST** /v1/nodes/init                               |\n| _NodesApi_         | [**list_node_children**](docs/NodesApi.md#list_node_children)                 | **GET** /v1/nodes/{nodeId}/children                   |\n| _NodesApi_         | [**list_root_node_children**](docs/NodesApi.md#list_root_node_children)       | **GET** /v1/nodes                                     |\n| _NodesApi_         | [**move_node**](docs/NodesApi.md#move_node)                                   | **POST** /v1/nodes/{nodeId}/move                      |\n| _NodesApi_         | [**permanently_delete_node**](docs/NodesApi.md#permanently_delete_node)       | **DELETE** /v1/nodes/{nodeId}/remove/{nodeIdToRemove} |\n| _NodesApi_         | [**restore_node_from_trashbin**](docs/NodesApi.md#restore_node_from_trashbin) | **POST** /v1/nodes/{nodeId}/restore/{nodeIdToRestore} |\n| _NodesApi_         | [**update_node**](docs/NodesApi.md#update_node)                               | **PATCH** /v1/nodes/{nodeId}                          |\n| _ProfileDataApi_   | [**query_profile_data**](docs/ProfileDataApi.md#query_profile_data)           | **GET** /v1/nodes/{nodeId}/profile-data               |\n| _ProfileDataApi_   | [**update_profile_data**](docs/ProfileDataApi.md#update_profile_data)         | **PATCH** /v1/nodes/{nodeId}/profile-data             |\n| _WellKnownApi_     | [**get_well_known_jwks**](docs/WellKnownApi.md#get_well_known_jwks)           | **GET** /.well-known/jwks.json                        |\n\n## Documentation For Models\n\n- [AccountDto](docs/AccountDto.md)\n- [AwsCredentialExchangeOperationOK](docs/AwsCredentialExchangeOperationOK.md)\n- [ConsumerMetadataDto](docs/ConsumerMetadataDto.md)\n- [CorsAwsCredentialExchangeOK](docs/CorsAwsCredentialExchangeOK.md)\n- [CorsDeleteAccountOK](docs/CorsDeleteAccountOK.md)\n- [CorsDeleteNodeOK](docs/CorsDeleteNodeOK.md)\n- [CorsGetConfigOK](docs/CorsGetConfigOK.md)\n- [CorsGetConfigurationOK](docs/CorsGetConfigurationOK.md)\n- [CorsGetScannedFileInfoOK](docs/CorsGetScannedFileInfoOK.md)\n- [CorsGetWellKnownJwksOK](docs/CorsGetWellKnownJwksOK.md)\n- [CorsInitNodesOK](docs/CorsInitNodesOK.md)\n- [CorsListAccountsOK](docs/CorsListAccountsOK.md)\n- [CorsListNodeChildrenOK](docs/CorsListNodeChildrenOK.md)\n- [CorsListRootNodeChildrenOK](docs/CorsListRootNodeChildrenOK.md)\n- [CorsListScannedFilesOK](docs/CorsListScannedFilesOK.md)\n- [CorsMoveNodeOK](docs/CorsMoveNodeOK.md)\n- [CorsPermanentlyDeleteNodeOK](docs/CorsPermanentlyDeleteNodeOK.md)\n- [CorsRestoreNodeFromTrashbinOK](docs/CorsRestoreNodeFromTrashbinOK.md)\n- [CorsStartFileScanOK](docs/CorsStartFileScanOK.md)\n- [CorsUpdateProfileDataOK](docs/CorsUpdateProfileDataOK.md)\n- [CreateAccountInput](docs/CreateAccountInput.md)\n- [CreateAccountOK](docs/CreateAccountOK.md)\n- [CreateNodeInput](docs/CreateNodeInput.md)\n- [CreateNodeOK](docs/CreateNodeOK.md)\n- [DeleteAccountDto](docs/DeleteAccountDto.md)\n- [DeleteNodeDto](docs/DeleteNodeDto.md)\n- [EdekInfo](docs/EdekInfo.md)\n- [GetConfigOK](docs/GetConfigOK.md)\n- [GetDetailedNodeInfoOK](docs/GetDetailedNodeInfoOK.md)\n- [GetScannedFileInfoOK](docs/GetScannedFileInfoOK.md)\n- [InitNodesOK](docs/InitNodesOK.md)\n- [InvalidParameterError](docs/InvalidParameterError.md)\n- [InvalidParameterErrorDetailsInner](docs/InvalidParameterErrorDetailsInner.md)\n- [JsonWebKeyDto](docs/JsonWebKeyDto.md)\n- [JsonWebKeySetDto](docs/JsonWebKeySetDto.md)\n- [ListAccountsDto](docs/ListAccountsDto.md)\n- [ListNodeChildrenOK](docs/ListNodeChildrenOK.md)\n- [ListRootNodeChildrenOK](docs/ListRootNodeChildrenOK.md)\n- [ListScannedFilesOK](docs/ListScannedFilesOK.md)\n- [ListScannedFilesOKScannedFilesInner](docs/ListScannedFilesOKScannedFilesInner.md)\n- [MoveNodeDto](docs/MoveNodeDto.md)\n- [MoveNodeInput](docs/MoveNodeInput.md)\n- [NodeDto](docs/NodeDto.md)\n- [NodeStatus](docs/NodeStatus.md)\n- [NodeType](docs/NodeType.md)\n- [NotFoundError](docs/NotFoundError.md)\n- [QueryProfileDataOK](docs/QueryProfileDataOK.md)\n- [RestoreNodeFromTrashbin](docs/RestoreNodeFromTrashbin.md)\n- [StartFileScanInput](docs/StartFileScanInput.md)\n- [StartFileScanOK](docs/StartFileScanOK.md)\n- [UnexpectedError](docs/UnexpectedError.md)\n- [UpdateAccountDto](docs/UpdateAccountDto.md)\n- [UpdateAccountInput](docs/UpdateAccountInput.md)\n- [UpdateNodeInput](docs/UpdateNodeInput.md)\n- [UpdateProfileDataInput](docs/UpdateProfileDataInput.md)\n- [UpdateProfileDataOK](docs/UpdateProfileDataOK.md)\n\n<a id=\"documentation-for-authorization\"></a>\n\n## Documentation For Authorization\n\nAuthentication schemes defined for the API:\n<a id=\"AwsSigV4\"></a>\n\n### AwsSigV4\n\n- **Type**: API key\n- **API key parameter name**: Authorization\n- **Location**: HTTP header\n\n<a id=\"ApiKey\"></a>\n\n### ApiKey\n\n- **Type**: API key\n- **API key parameter name**: x-api-key\n- **Location**: HTTP header\n\n<a id=\"bearerAuth\"></a>\n\n### bearerAuth\n\n- **Type**: Bearer authentication (JWT)\n\n<a id=\"ConsumerTokenAuth\"></a>\n\n### ConsumerTokenAuth\n\n- **Type**: API key\n- **API key parameter name**: authorization\n- **Location**: HTTP header\n\n<a id=\"UserTokenAuth\"></a>\n\n### UserTokenAuth\n\n- **Type**: API key\n- **API key parameter name**: authorization\n- **Location**: HTTP header\n\n<a id=\"ProjectTokenAuth\"></a>\n\n### ProjectTokenAuth\n\n- **Type**: API key\n- **API key parameter name**: authorization\n- **Location**: HTTP header\n\n## Author\n\ninfo@affinidi.com\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "VaultFileSystem",
    "version": "1.63.0",
    "project_urls": {
        "Homepage": "https://github.com/affinidi/affinidi-tdk",
        "Repository": "https://github.com/affinidi/affinidi-tdk"
    },
    "split_keywords": [
        "openapi",
        " openapi-generator",
        " vaultfilesystem"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5ce5d51998a8150c4fc442319201fa759215c5b5ce3940ce33e25361120acea",
                "md5": "4914f2d39a8d7c96a6e2a258290ca9b0",
                "sha256": "35e3bce7d9a0379e4d530aefad2205b73fa539d326b23130b78cc2a90b7274ab"
            },
            "downloads": -1,
            "filename": "affinidi_tdk_vault_data_manager_client-1.63.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4914f2d39a8d7c96a6e2a258290ca9b0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 107839,
            "upload_time": "2025-07-08T11:32:30",
            "upload_time_iso_8601": "2025-07-08T11:32:30.719478Z",
            "url": "https://files.pythonhosted.org/packages/e5/ce/5d51998a8150c4fc442319201fa759215c5b5ce3940ce33e25361120acea/affinidi_tdk_vault_data_manager_client-1.63.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c4f86be8594c0359002a1b731e748aec81922f305a6154dda86454580debb13",
                "md5": "cf9d39de7862d8399487b9a9a7ab75e0",
                "sha256": "d91b3696d4eee97b48ca198ce6b78b536c675130050a4e11686a579dc0605ed8"
            },
            "downloads": -1,
            "filename": "affinidi_tdk_vault_data_manager_client-1.63.0.tar.gz",
            "has_sig": false,
            "md5_digest": "cf9d39de7862d8399487b9a9a7ab75e0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 42268,
            "upload_time": "2025-07-08T11:32:31",
            "upload_time_iso_8601": "2025-07-08T11:32:31.647800Z",
            "url": "https://files.pythonhosted.org/packages/2c/4f/86be8594c0359002a1b731e748aec81922f305a6154dda86454580debb13/affinidi_tdk_vault_data_manager_client-1.63.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-08 11:32:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "affinidi",
    "github_project": "affinidi-tdk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "affinidi_tdk_vault_data_manager_client"
}
        
Elapsed time: 0.46850s