CRUD
No overview available.
Attributes
| Attribute | Type | Description |
|---|---|---|
| Create | [API](api.md?sid=flytestdlib_metrics_api) | This attribute represents the API for creating resources. |
| Read | [API](api.md?sid=flytestdlib_metrics_api) | This attribute represents the API for reading resources. |
| Update | [API](api.md?sid=flytestdlib_metrics_api) | This attribute represents the API for updating resources. |
| Delete | [API](api.md?sid=flytestdlib_metrics_api) | This attribute represents the API for deleting resources. |
| Undelete | [API](api.md?sid=flytestdlib_metrics_api) | This attribute represents the API for undeleting resources. |
| List | [API](api.md?sid=flytestdlib_metrics_api) | This attribute represents the API for listing resources. |
| Count | [API](api.md?sid=flytestdlib_metrics_api) | This attribute represents the API for counting resources. |
Methods
Create()
def Create() - > [API](api.md?sid=flytestdlib_metrics_api)
Manages the creation of resources. Callers use this to add new data entries to the system.
Returns
| Type | Description |
|---|---|
[API](api.md?sid=flytestdlib_metrics_api) | An API object configured for create operations. |
Read()
def Read() - > [API](api.md?sid=flytestdlib_metrics_api)
Manages the retrieval of resources. Callers use this to fetch existing data entries from the system.
Returns
| Type | Description |
|---|---|
[API](api.md?sid=flytestdlib_metrics_api) | An API object configured for read operations. |
Update()
def Update() - > [API](api.md?sid=flytestdlib_metrics_api)
Manages the modification of existing resources. Callers use this to change properties of existing data entries.
Returns
| Type | Description |
|---|---|
[API](api.md?sid=flytestdlib_metrics_api) | An API object configured for update operations. |
Delete()
def Delete() - > [API](api.md?sid=flytestdlib_metrics_api)
Manages the removal of resources. Callers use this to permanently delete data entries from the system.
Returns
| Type | Description |
|---|---|
[API](api.md?sid=flytestdlib_metrics_api) | An API object configured for delete operations. |
Undelete()
def Undelete() - > [API](api.md?sid=flytestdlib_metrics_api)
Manages the restoration of previously deleted resources. Callers use this to recover data entries that were soft-deleted.
Returns
| Type | Description |
|---|---|
[API](api.md?sid=flytestdlib_metrics_api) | An API object configured for undelete operations. |
List()
def List() - > [API](api.md?sid=flytestdlib_metrics_api)
Manages the listing of multiple resources. Callers use this to retrieve collections of data entries, often with filtering or pagination.
Returns
| Type | Description |
|---|---|
[API](api.md?sid=flytestdlib_metrics_api) | An API object configured for list operations. |
Count()
def Count() - > [API](api.md?sid=flytestdlib_metrics_api)
Manages the counting of resources. Callers use this to determine the total number of data entries matching specific criteria without retrieving the actual data.
Returns
| Type | Description |
|---|---|
[API](api.md?sid=flytestdlib_metrics_api) | An API object configured for count operations. |