Skip to content

Commit

Permalink
Generated using the command "openapi-generator generate -i sparkfly-c…
Browse files Browse the repository at this point in the history
…lient/openapi-generator-config/sparkfly_openapi.yaml -g python -o sparkfly-client --git-user-id=expressintegrations --git-repo-id=sparkfly-client -c sparkfly-client/openapi-generator-config/config.yaml"
  • Loading branch information
j-madrone committed Sep 25, 2023
1 parent a8c4244 commit 232a33e
Show file tree
Hide file tree
Showing 304 changed files with 6,166 additions and 5,929 deletions.
6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/sparkfly-client.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

360 changes: 180 additions & 180 deletions README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions docs/AccountApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ All URIs are relative to *https://api-staging.sparkfly.com*

Method | HTTP request | Description
------------- | ------------- | -------------
[**v10_account_callbacks_disable_put**](AccountApi.md#v10_account_callbacks_disable_put) | **PUT** /v1.0/account/callbacks/disable | Disable Callbacks
[**v10_account_callbacks_enable_put**](AccountApi.md#v10_account_callbacks_enable_put) | **PUT** /v1.0/account/callbacks/enable | Enable Callbacks
[**v10_account_get**](AccountApi.md#v10_account_get) | **GET** /v1.0/account | View Account
[**v10_account_put**](AccountApi.md#v10_account_put) | **PUT** /v1.0/account | Update Account
[**disable_callbacks**](AccountApi.md#disable_callbacks) | **PUT** /v1.0/account/callbacks/disable | Disable Callbacks
[**enable_callbacks**](AccountApi.md#enable_callbacks) | **PUT** /v1.0/account/callbacks/enable | Enable Callbacks
[**get_account**](AccountApi.md#get_account) | **GET** /v1.0/account | View Account
[**update_account**](AccountApi.md#update_account) | **PUT** /v1.0/account | Update Account


# **v10_account_callbacks_disable_put**
> v10_account_callbacks_disable_put()
# **disable_callbacks**
> disable_callbacks()
Disable Callbacks

Expand Down Expand Up @@ -49,9 +49,9 @@ with sparkfly_client.ApiClient(configuration) as api_client:

try:
# Disable Callbacks
api_instance.v10_account_callbacks_disable_put()
api_instance.disable_callbacks()
except Exception as e:
print("Exception when calling AccountApi->v10_account_callbacks_disable_put: %s\n" % e)
print("Exception when calling AccountApi->disable_callbacks: %s\n" % e)
```


Expand Down Expand Up @@ -80,8 +80,8 @@ void (empty response body)

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **v10_account_callbacks_enable_put**
> v10_account_callbacks_enable_put()
# **enable_callbacks**
> enable_callbacks()
Enable Callbacks

Expand Down Expand Up @@ -119,9 +119,9 @@ with sparkfly_client.ApiClient(configuration) as api_client:

try:
# Enable Callbacks
api_instance.v10_account_callbacks_enable_put()
api_instance.enable_callbacks()
except Exception as e:
print("Exception when calling AccountApi->v10_account_callbacks_enable_put: %s\n" % e)
print("Exception when calling AccountApi->enable_callbacks: %s\n" % e)
```


Expand Down Expand Up @@ -150,8 +150,8 @@ void (empty response body)

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **v10_account_get**
> AccountResponse v10_account_get()
# **get_account**
> AccountResponse get_account()
View Account

Expand Down Expand Up @@ -190,11 +190,11 @@ with sparkfly_client.ApiClient(configuration) as api_client:

try:
# View Account
api_response = api_instance.v10_account_get()
print("The response of AccountApi->v10_account_get:\n")
api_response = api_instance.get_account()
print("The response of AccountApi->get_account:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling AccountApi->v10_account_get: %s\n" % e)
print("Exception when calling AccountApi->get_account: %s\n" % e)
```


Expand Down Expand Up @@ -223,8 +223,8 @@ This endpoint does not need any parameter.

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **v10_account_put**
> AccountResponse v10_account_put(account_input_request=account_input_request)
# **update_account**
> AccountResponse update_account(account_input_request=account_input_request)
Update Account

Expand Down Expand Up @@ -265,11 +265,11 @@ with sparkfly_client.ApiClient(configuration) as api_client:

try:
# Update Account
api_response = api_instance.v10_account_put(account_input_request=account_input_request)
print("The response of AccountApi->v10_account_put:\n")
api_response = api_instance.update_account(account_input_request=account_input_request)
print("The response of AccountApi->update_account:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling AccountApi->v10_account_put: %s\n" % e)
print("Exception when calling AccountApi->update_account: %s\n" % e)
```


Expand Down
10 changes: 5 additions & 5 deletions docs/AuthApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ All URIs are relative to *https://api-staging.sparkfly.com*

Method | HTTP request | Description
------------- | ------------- | -------------
[**auth_get**](AuthApi.md#auth_get) | **GET** /auth | authenticate and receive auth token
[**authenticate**](AuthApi.md#authenticate) | **GET** /auth | authenticate and receive auth token


# **auth_get**
> auth_get(x_auth_identity, x_auth_key)
# **authenticate**
> authenticate(x_auth_identity, x_auth_key)
authenticate and receive auth token

Expand Down Expand Up @@ -37,9 +37,9 @@ with sparkfly_client.ApiClient(configuration) as api_client:

try:
# authenticate and receive auth token
api_instance.auth_get(x_auth_identity, x_auth_key)
api_instance.authenticate(x_auth_identity, x_auth_key)
except Exception as e:
print("Exception when calling AuthApi->auth_get: %s\n" % e)
print("Exception when calling AuthApi->authenticate: %s\n" % e)
```


Expand Down
Loading

0 comments on commit 232a33e

Please sign in to comment.