This is a test SDK for Assets APIs generated by APIMatic
Project description
Getting Started with AssetMasterServices-Assets
Introduction
The Assets API enables users to retrieve information related to assets. It enables users to query the search identifiers and query assets based on different criteria. The Asset APIs enable users to create new asset requests, edit or delete current asset requests, as well as check the status of their requests.
Install the Package
The package is compatible with Python versions 3.7+.
Install the package from PyPi using the following pip command:
pip install apimatic-fis-assets-sdk==0.0.1
You can also view the package at: https://pypi.python.org/pypi/apimatic-fis-assets-sdk/0.0.1
Initialize the API Client
Note: Documentation for the client can be found here.
The following parameters are configurable for the API Client:
| Parameter | Type | Description |
|---|---|---|
| environment | Environment |
The API environment. Default: Environment.PRODUCTION |
| http_client_instance | Union[Session, HttpClientProvider] |
The Http Client passed from the sdk user for making requests |
| override_http_client_configuration | bool |
The value which determines to override properties of the passed Http Client from the sdk user |
| http_call_back | HttpCallBack |
The callback value that is invoked before and after an HTTP call is made to an endpoint |
| timeout | float |
The value to use for connection timeout. Default: 30 |
| max_retries | int |
The number of times to retry an endpoint call if it fails. Default: 0 |
| backoff_factor | float |
A backoff factor to apply between attempts after the second try. Default: 2 |
| retry_statuses | Array of int |
The http statuses on which retry is to be done. Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524] |
| retry_methods | Array of string |
The http methods on which retry is to be done. Default: ["GET", "PUT"] |
| proxy_settings | ProxySettings |
Optional proxy configuration to route HTTP requests through a proxy server. |
| logging_configuration | LoggingConfiguration |
The SDK logging configuration for API calls |
| bearer_credentials | BearerCredentials |
The credential object for Custom Header Signature |
| default_credentials | DefaultCredentials |
The credential object for OAuth 2 Implicit Grant |
The API client can be initialized as follows:
Code-Based Client Initialization
import logging
from assetmasterservicesassets.assetmasterservicesassets_client import AssetmasterservicesassetsClient
from assetmasterservicesassets.configuration import Environment
from assetmasterservicesassets.http.auth.bearer import BearerCredentials
from assetmasterservicesassets.http.auth.default import DefaultCredentials
from assetmasterservicesassets.logging.configuration.api_logging_configuration import LoggingConfiguration
from assetmasterservicesassets.logging.configuration.api_logging_configuration import RequestLoggingConfiguration
from assetmasterservicesassets.logging.configuration.api_logging_configuration import ResponseLoggingConfiguration
client = AssetmasterservicesassetsClient(
bearer_credentials=BearerCredentials(
authorization='Authorization'
),
default_credentials=DefaultCredentials(
oauth_client_id='OAuthClientId',
oauth_redirect_uri='OAuthRedirectUri'
),
environment=Environment.PRODUCTION,
logging_configuration=LoggingConfiguration(
log_level=logging.INFO,
request_logging_config=RequestLoggingConfiguration(
log_body=True
),
response_logging_config=ResponseLoggingConfiguration(
log_headers=True
)
)
)
Environment-Based Client Initialization
from assetmasterservicesassets.assetmasterservicesassets_client import AssetmasterservicesassetsClient
# Specify the path to your .env file if it’s located outside the project’s root directory.
client = AssetmasterservicesassetsClient.from_environment(dotenv_path='/path/to/.env')
See the Environment-Based Client Initialization section for details.
Environments
The SDK can be configured to use a different environment for making API calls. Available environments are:
Fields
| Name | Description |
|---|---|
| PRODUCTION | Default |
| ENVIRONMENT2 | - |
Authorization
This API uses the following authentication schemes.
List of APIs
SDK Infrastructure
Configuration
- ProxySettings
- Environment-Based Client Initialization
- AbstractLogger
- LoggingConfiguration
- RequestLoggingConfiguration
- ResponseLoggingConfiguration
HTTP
Utilities
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file apimatic_fis_assets_sdk-0.0.1.tar.gz.
File metadata
- Download URL: apimatic_fis_assets_sdk-0.0.1.tar.gz
- Upload date:
- Size: 35.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a67604f0645dd528de522854ce43e6576f322a57f1ce42fec9298f2f70f140b
|
|
| MD5 |
5eb899a264e01e63c1da5a28ae216cf4
|
|
| BLAKE2b-256 |
f8dcc5f4875ff8404402041464b67d4c2c664718bd5558c48006415e3631b293
|
File details
Details for the file apimatic_fis_assets_sdk-0.0.1-py3-none-any.whl.
File metadata
- Download URL: apimatic_fis_assets_sdk-0.0.1-py3-none-any.whl
- Upload date:
- Size: 61.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f530f935e09f74cd401246e78dd9ba346a7959c54ab3e5c99ffd0c2d70e48c23
|
|
| MD5 |
3d91a252841533132523a76788b1e990
|
|
| BLAKE2b-256 |
a684458aef70075b4cb014c29eaadf304482ea372ebb6fd3172195f59ec6b5a3
|