update samples

This commit is contained in:
William Cheng
2023-11-19 17:36:25 +08:00
parent 97704841c5
commit 8e36014ae6
214 changed files with 608 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ This can only be done by the logged in user.
### Example
```python
import time
import os
@@ -55,6 +56,7 @@ async with petstore_api.ApiClient(configuration) as api_client:
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**user** | [**User**](User.md)| Created user object |
@@ -73,6 +75,7 @@ No authorization required
- **Accept**: Not defined
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**0** | successful operation | - |
@@ -88,6 +91,7 @@ Creates list of users with given input array
### Example
```python
import time
import os
@@ -120,6 +124,7 @@ async with petstore_api.ApiClient(configuration) as api_client:
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**user** | [**List[User]**](User.md)| List of user object |
@@ -138,6 +143,7 @@ No authorization required
- **Accept**: Not defined
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**0** | successful operation | - |
@@ -153,6 +159,7 @@ Creates list of users with given input array
### Example
```python
import time
import os
@@ -185,6 +192,7 @@ async with petstore_api.ApiClient(configuration) as api_client:
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**user** | [**List[User]**](User.md)| List of user object |
@@ -203,6 +211,7 @@ No authorization required
- **Accept**: Not defined
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**0** | successful operation | - |
@@ -218,6 +227,7 @@ This can only be done by the logged in user.
### Example
```python
import time
import os
@@ -249,6 +259,7 @@ async with petstore_api.ApiClient(configuration) as api_client:
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**username** | **str**| The name that needs to be deleted |
@@ -267,6 +278,7 @@ No authorization required
- **Accept**: Not defined
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**400** | Invalid username supplied | - |
@@ -283,6 +295,7 @@ Get user by user name
### Example
```python
import time
import os
@@ -317,6 +330,7 @@ async with petstore_api.ApiClient(configuration) as api_client:
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**username** | **str**| The name that needs to be fetched. Use user1 for testing. |
@@ -335,6 +349,7 @@ No authorization required
- **Accept**: application/xml, application/json
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | successful operation | - |
@@ -352,6 +367,7 @@ Logs user into the system
### Example
```python
import time
import os
@@ -386,6 +402,7 @@ async with petstore_api.ApiClient(configuration) as api_client:
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**username** | **str**| The user name for login |
@@ -405,6 +422,7 @@ No authorization required
- **Accept**: application/xml, application/json
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | successful operation | * X-Rate-Limit - calls per hour allowed by the user <br> * X-Expires-After - date in UTC when token expires <br> |
@@ -421,6 +439,7 @@ Logs out current logged in user session
### Example
```python
import time
import os
@@ -450,6 +469,7 @@ async with petstore_api.ApiClient(configuration) as api_client:
### Parameters
This endpoint does not need any parameter.
### Return type
@@ -466,6 +486,7 @@ No authorization required
- **Accept**: Not defined
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**0** | successful operation | - |
@@ -481,6 +502,7 @@ This can only be done by the logged in user.
### Example
```python
import time
import os
@@ -514,6 +536,7 @@ async with petstore_api.ApiClient(configuration) as api_client:
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**username** | **str**| name that need to be deleted |
@@ -533,6 +556,7 @@ No authorization required
- **Accept**: Not defined
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**400** | Invalid user supplied | - |