Skip to content

Commit

Permalink
updated build (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jmfwolf committed May 11, 2023
1 parent 649a028 commit 6aa063e
Show file tree
Hide file tree
Showing 229 changed files with 3,585 additions and 2,709 deletions.
10 changes: 4 additions & 6 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.github/workflows/python.yml
.github/workflows/python.yml
.gitignore
.gitlab-ci.yml
.openapi-generator-ignore
Expand Down Expand Up @@ -49,7 +50,6 @@ docs/CreateDeviceVerification201Response.md
docs/CreateDeviceVerificationRequest.md
docs/CreateFactorRegistration201Response.md
docs/CreateFactorRegistrationRequest.md
docs/CreatePrivilege200Response.md
docs/CreateRole201ResponseInner.md
docs/Device.md
docs/EmailConfig.md
Expand Down Expand Up @@ -116,7 +116,7 @@ docs/ListMappingConditionsOperators200ResponseInner.md
docs/ListMappingContionValues200ResponseInner.md
docs/ListMappingsActions200ResponseInner.md
docs/ListMessageTemplates200ResponseInner.md
docs/ListPrivelegeRoles200Response.md
docs/ListPrivilegeRoles200Response.md
docs/Locale.md
docs/LockAccountUserRequest.md
docs/Mapping.md
Expand Down Expand Up @@ -251,7 +251,6 @@ onelogin/models/create_device_verification201_response.py
onelogin/models/create_device_verification_request.py
onelogin/models/create_factor_registration201_response.py
onelogin/models/create_factor_registration_request.py
onelogin/models/create_privilege200_response.py
onelogin/models/create_role201_response_inner.py
onelogin/models/device.py
onelogin/models/email_config.py
Expand Down Expand Up @@ -315,7 +314,7 @@ onelogin/models/list_mapping_conditions_operators200_response_inner.py
onelogin/models/list_mapping_contion_values200_response_inner.py
onelogin/models/list_mappings_actions200_response_inner.py
onelogin/models/list_message_templates200_response_inner.py
onelogin/models/list_privelege_roles200_response.py
onelogin/models/list_privilege_roles200_response.py
onelogin/models/locale.py
onelogin/models/lock_account_user_request.py
onelogin/models/mapping.py
Expand Down Expand Up @@ -425,7 +424,6 @@ test/test_create_device_verification201_response.py
test/test_create_device_verification_request.py
test/test_create_factor_registration201_response.py
test/test_create_factor_registration_request.py
test/test_create_privilege200_response.py
test/test_create_role201_response_inner.py
test/test_device.py
test/test_email_config.py
Expand Down Expand Up @@ -492,7 +490,7 @@ test/test_list_mapping_conditions_operators200_response_inner.py
test/test_list_mapping_contion_values200_response_inner.py
test/test_list_mappings_actions200_response_inner.py
test/test_list_message_templates200_response_inner.py
test/test_list_privelege_roles200_response.py
test/test_list_privilege_roles200_response.py
test/test_locale.py
test/test_lock_account_user_request.py
test/test_mapping.py
Expand Down
502 changes: 335 additions & 167 deletions README.md

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions docs/APIAuthClaimsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ Create Authorization Claim

* OAuth Authentication (OAuth2):
```python
from __future__ import print_function
import time
import os
import onelogin
from onelogin.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://your-api-subdomain.onelogin.com
# See configuration.py for a list of all supported configuration parameters.
configuration = onelogin.Configuration(
Expand Down Expand Up @@ -57,6 +57,7 @@ with onelogin.ApiClient(configuration) as api_client:
print("Exception when calling APIAuthClaimsApi->create_auth_claim: %s\n" % e)
```


### Parameters

Name | Type | Description | Notes
Expand Down Expand Up @@ -99,12 +100,12 @@ Delete Authorization Claim

* OAuth Authentication (OAuth2):
```python
from __future__ import print_function
import time
import os
import onelogin
from onelogin.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://your-api-subdomain.onelogin.com
# See configuration.py for a list of all supported configuration parameters.
configuration = onelogin.Configuration(
Expand Down Expand Up @@ -133,6 +134,7 @@ with onelogin.ApiClient(configuration) as api_client:
print("Exception when calling APIAuthClaimsApi->delete_auth_claim: %s\n" % e)
```


### Parameters

Name | Type | Description | Notes
Expand Down Expand Up @@ -174,12 +176,12 @@ Get Authorization claims

* OAuth Authentication (OAuth2):
```python
from __future__ import print_function
import time
import os
import onelogin
from onelogin.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://your-api-subdomain.onelogin.com
# See configuration.py for a list of all supported configuration parameters.
configuration = onelogin.Configuration(
Expand Down Expand Up @@ -209,6 +211,7 @@ with onelogin.ApiClient(configuration) as api_client:
print("Exception when calling APIAuthClaimsApi->get_authclaims: %s\n" % e)
```


### Parameters

Name | Type | Description | Notes
Expand Down Expand Up @@ -249,12 +252,12 @@ Update Authorization Server Claim

* OAuth Authentication (OAuth2):
```python
from __future__ import print_function
import time
import os
import onelogin
from onelogin.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://your-api-subdomain.onelogin.com
# See configuration.py for a list of all supported configuration parameters.
configuration = onelogin.Configuration(
Expand Down Expand Up @@ -286,6 +289,7 @@ with onelogin.ApiClient(configuration) as api_client:
print("Exception when calling APIAuthClaimsApi->update_claim: %s\n" % e)
```


### Parameters

Name | Type | Description | Notes
Expand Down
12 changes: 8 additions & 4 deletions docs/APIAuthClientAppsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ Add Client App

* OAuth Authentication (OAuth2):
```python
from __future__ import print_function
import time
import os
import onelogin
from onelogin.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://your-api-subdomain.onelogin.com
# See configuration.py for a list of all supported configuration parameters.
configuration = onelogin.Configuration(
Expand Down Expand Up @@ -57,6 +57,7 @@ with onelogin.ApiClient(configuration) as api_client:
print("Exception when calling APIAuthClientAppsApi->add_client_app: %s\n" % e)
```


### Parameters

Name | Type | Description | Notes
Expand Down Expand Up @@ -99,12 +100,12 @@ Delete Client App

* OAuth Authentication (OAuth2):
```python
from __future__ import print_function
import time
import os
import onelogin
from onelogin.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://your-api-subdomain.onelogin.com
# See configuration.py for a list of all supported configuration parameters.
configuration = onelogin.Configuration(
Expand Down Expand Up @@ -135,6 +136,7 @@ with onelogin.ApiClient(configuration) as api_client:
print("Exception when calling APIAuthClientAppsApi->delete_client_app: %s\n" % e)
```


### Parameters

Name | Type | Description | Notes
Expand Down Expand Up @@ -177,12 +179,12 @@ List Client Apps

* OAuth Authentication (OAuth2):
```python
from __future__ import print_function
import time
import os
import onelogin
from onelogin.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://your-api-subdomain.onelogin.com
# See configuration.py for a list of all supported configuration parameters.
configuration = onelogin.Configuration(
Expand Down Expand Up @@ -212,6 +214,7 @@ with onelogin.ApiClient(configuration) as api_client:
print("Exception when calling APIAuthClientAppsApi->list_client_apps: %s\n" % e)
```


### Parameters

Name | Type | Description | Notes
Expand Down Expand Up @@ -252,12 +255,12 @@ Update Client App

* OAuth Authentication (OAuth2):
```python
from __future__ import print_function
import time
import os
import onelogin
from onelogin.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://your-api-subdomain.onelogin.com
# See configuration.py for a list of all supported configuration parameters.
configuration = onelogin.Configuration(
Expand Down Expand Up @@ -289,6 +292,7 @@ with onelogin.ApiClient(configuration) as api_client:
print("Exception when calling APIAuthClientAppsApi->update_client_app: %s\n" % e)
```


### Parameters

Name | Type | Description | Notes
Expand Down
12 changes: 8 additions & 4 deletions docs/APIAuthScopesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ Create API Auth Server Scope

* OAuth Authentication (OAuth2):
```python
from __future__ import print_function
import time
import os
import onelogin
from onelogin.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://your-api-subdomain.onelogin.com
# See configuration.py for a list of all supported configuration parameters.
configuration = onelogin.Configuration(
Expand Down Expand Up @@ -57,6 +57,7 @@ with onelogin.ApiClient(configuration) as api_client:
print("Exception when calling APIAuthScopesApi->create_scope: %s\n" % e)
```


### Parameters

Name | Type | Description | Notes
Expand Down Expand Up @@ -99,12 +100,12 @@ Delete Scope

* OAuth Authentication (OAuth2):
```python
from __future__ import print_function
import time
import os
import onelogin
from onelogin.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://your-api-subdomain.onelogin.com
# See configuration.py for a list of all supported configuration parameters.
configuration = onelogin.Configuration(
Expand Down Expand Up @@ -133,6 +134,7 @@ with onelogin.ApiClient(configuration) as api_client:
print("Exception when calling APIAuthScopesApi->delete_scope: %s\n" % e)
```


### Parameters

Name | Type | Description | Notes
Expand Down Expand Up @@ -174,12 +176,12 @@ List Authorization Scopes

* OAuth Authentication (OAuth2):
```python
from __future__ import print_function
import time
import os
import onelogin
from onelogin.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://your-api-subdomain.onelogin.com
# See configuration.py for a list of all supported configuration parameters.
configuration = onelogin.Configuration(
Expand Down Expand Up @@ -209,6 +211,7 @@ with onelogin.ApiClient(configuration) as api_client:
print("Exception when calling APIAuthScopesApi->get_scopes: %s\n" % e)
```


### Parameters

Name | Type | Description | Notes
Expand Down Expand Up @@ -248,12 +251,12 @@ Update Scope

* OAuth Authentication (OAuth2):
```python
from __future__ import print_function
import time
import os
import onelogin
from onelogin.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://your-api-subdomain.onelogin.com
# See configuration.py for a list of all supported configuration parameters.
configuration = onelogin.Configuration(
Expand Down Expand Up @@ -285,6 +288,7 @@ with onelogin.ApiClient(configuration) as api_client:
print("Exception when calling APIAuthScopesApi->update_scope: %s\n" % e)
```


### Parameters

Name | Type | Description | Notes
Expand Down

0 comments on commit 6aa063e

Please sign in to comment.