Skip to content

Commit

Permalink
autogen: regenerate OpenAPI client for v1.11.11
Browse files Browse the repository at this point in the history
Version: v1.11.11
  • Loading branch information
aeneasr committed Jun 21, 2024
1 parent 0a57659 commit b2a3ee1
Show file tree
Hide file tree
Showing 564 changed files with 715 additions and 578 deletions.
1 change: 1 addition & 0 deletions docs/CreateProjectBody.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Create Project Request Body
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**environment** | **str** | The environment of the project. prod Production stage Staging dev Development |
**home_region** | **str** | Home Region The home region of the project. This is the region where the project will be created. eu-central EUCentral us-east USEast us-west USWest global Global | [optional]
**name** | **str** | The name of the project to be created |
**workspace_id** | **str** | The workspace to create the project in. | [optional]

Expand Down
1 change: 1 addition & 0 deletions docs/CreateProjectNormalizedPayload.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Name | Type | Description | Notes
**disable_account_experience_welcome_screen** | **bool** | Whether to disable the account experience welcome screen, which is hosted under `/ui/welcome`. | [optional]
**enable_ax_v2** | **bool** | Whether the new account experience is enabled and reachable. | [optional]
**environment** | **str** | prod Production stage Staging dev Development |
**home_region** | **str** | eu-central EUCentral us-east USEast us-west USWest global Global | [optional]
**hydra_oauth2_allowed_top_level_claims** | **List[str]** | | [optional]
**hydra_oauth2_client_credentials_default_grant_allowed_scope** | **bool** | Automatically grant authorized OAuth2 Scope in OAuth2 Client Credentials Flow. Each OAuth2 Client is allowed to request a predefined OAuth2 Scope (for example `read write`). If this option is enabled, the full scope is automatically granted when performing the OAuth2 Client Credentials flow. If disabled, the OAuth2 Client has to request the scope in the OAuth2 request by providing the `scope` query parameter. Setting this option to true is common if you need compatibility with MITREid. This governs the \"oauth2.client_credentials.default_grant_allowed_scope\" setting. | [optional]
**hydra_oauth2_exclude_not_before_claim** | **bool** | Set to true if you want to exclude claim `nbf (not before)` part of access token. This governs the \"oauth2.exclude_not_before_claim\" setting. | [optional]
Expand Down
4 changes: 3 additions & 1 deletion docs/ListOrganizationsResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ B2B SSO Organization List

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**organizations** | [**List[Organization]**](Organization.md) | |
**has_next_page** | **bool** | |
**next_page_token** | **str** | |
**organizations** | [**List[Organization]**](Organization.md) | The list of organizations |

## Example

Expand Down
1 change: 1 addition & 0 deletions docs/NormalizedProject.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Name | Type | Description | Notes
**created_at** | **datetime** | The Project's Creation Date | [readonly]
**current_revision** | [**NormalizedProjectRevision**](NormalizedProjectRevision.md) | |
**environment** | **str** | The environment of the project. prod Production stage Staging dev Development |
**home_region** | **str** | The project's data home region. eu-central EUCentral us-east USEast us-west USWest global Global | [readonly]
**hosts** | **List[str]** | |
**id** | **str** | The project's ID. | [readonly]
**slug** | **str** | The project's slug | [readonly]
Expand Down
1 change: 1 addition & 0 deletions docs/Project.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Name | Type | Description | Notes
**cors_admin** | [**ProjectCors**](ProjectCors.md) | | [optional]
**cors_public** | [**ProjectCors**](ProjectCors.md) | | [optional]
**environment** | **str** | The environment of the project. prod Production stage Staging dev Development |
**home_region** | **str** | The project home region. This is used to set where the project data is stored and where the project's endpoints are located. eu-central EUCentral us-east USEast us-west USWest global Global |
**id** | **str** | The project's ID. | [readonly]
**name** | **str** | The name of the project. |
**revision_id** | **str** | The configuration revision ID. | [readonly]
Expand Down
10 changes: 8 additions & 2 deletions docs/ProjectApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ Name | Type | Description | Notes
[[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)

# **list_organizations**
> ListOrganizationsResponse list_organizations(project_id)
> ListOrganizationsResponse list_organizations(project_id, page_size=page_size, page_token=page_token, domain=domain)


Expand Down Expand Up @@ -721,9 +721,12 @@ with ory_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = ory_client.ProjectApi(api_client)
project_id = 'project_id_example' # str | Project ID The project's ID.
page_size = 250 # int | Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). (optional) (default to 250)
page_token = 'page_token_example' # str | Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). (optional)
domain = 'domain_example' # str | Domain If set, only organizations with that domain will be returned. (optional)

try:
api_response = api_instance.list_organizations(project_id)
api_response = api_instance.list_organizations(project_id, page_size=page_size, page_token=page_token, domain=domain)
print("The response of ProjectApi->list_organizations:\n")
pprint(api_response)
except Exception as e:
Expand All @@ -738,6 +741,9 @@ with ory_client.ApiClient(configuration) as api_client:
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**project_id** | **str**| Project ID The project's ID. |
**page_size** | **int**| Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). | [optional] [default to 250]
**page_token** | **str**| Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). | [optional]
**domain** | **str**| Domain If set, only organizations with that domain will be returned. | [optional]

### Return type

Expand Down
1 change: 1 addition & 0 deletions docs/ProjectMetadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**created_at** | **datetime** | The Project's Creation Date |
**environment** | **str** | The environment of the project. prod Production stage Staging dev Development |
**home_region** | **str** | The project's data home region eu-central EUCentral us-east USEast us-west USWest global Global |
**hosts** | **List[str]** | |
**id** | **str** | The project's ID. | [readonly]
**name** | **str** | The project's name if set |
Expand Down
2 changes: 1 addition & 1 deletion docs/QuotaUsage.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**additional_price** | **str** | The additional price per unit in cents. |
**can_use_more** | **bool** | |
**feature** | **str** | region_eu RegionEU region_us RegionUS region_apac RegionAPAC region_global RegionGlobal production_projects ProductionProjects staging_projects StagingProjects development_projects DevelopmentProjects daily_active_users DailyActiveUsers custom_domains CustomDomains event_streams EventStreams event_stream_events EventStreamEvents sla SLA collaborator_seats CollaboratorSeats edge_cache EdgeCache branding_themes BrandingThemes zendesk_support ZendeskSupport project_metrics ProjectMetrics project_metrics_time_window ProjectMetricsTimeWindow project_metrics_events_history ProjectMetricsEventsHistory organizations Organizations rop_grant ResourceOwnerPasswordGrant concierge_onboarding ConciergeOnboarding credit Credit m2m_token_issuance M2MTokenIssuance permission_checks PermissionChecks rate_limit_tier RateLimitTier session_rate_limit_tier RateLimitTierSessions identities_list_rate_limit_tier RateLimitTierIdentitiesList permission_checks_rate_limit_tier RateLimitTierPermissionChecks oauth2_introspect_rate_limit_tier RateLimitTierOAuth2Introspect |
**feature** | **str** | production_projects ProductionProjects staging_projects StagingProjects development_projects DevelopmentProjects daily_active_users DailyActiveUsers custom_domains CustomDomains event_streams EventStreams event_stream_events EventStreamEvents sla SLA collaborator_seats CollaboratorSeats edge_cache EdgeCache branding_themes BrandingThemes zendesk_support ZendeskSupport project_metrics ProjectMetrics project_metrics_time_window ProjectMetricsTimeWindow project_metrics_events_history ProjectMetricsEventsHistory organizations Organizations rop_grant ResourceOwnerPasswordGrant concierge_onboarding ConciergeOnboarding credit Credit data_location_global DataLocationGlobal m2m_token_issuance M2MTokenIssuance permission_checks PermissionChecks data_location_regional DataLocationRegional Required Features rate_limit_tier RateLimitTier session_rate_limit_tier RateLimitTierSessions identities_list_rate_limit_tier RateLimitTierIdentitiesList permission_checks_rate_limit_tier RateLimitTierPermissionChecks oauth2_introspect_rate_limit_tier RateLimitTierOAuth2Introspect |
**feature_available** | **bool** | |
**included** | **int** | |
**used** | **int** | |
Expand Down
4 changes: 2 additions & 2 deletions ory_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
The version of the OpenAPI document: v1.11.10
The version of the OpenAPI document: v1.11.11
Contact: support@ory.sh
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501


__version__ = "v1.11.10"
__version__ = "v1.11.11"

# import apis into sdk package
from ory_client.api.courier_api import CourierApi
Expand Down
2 changes: 1 addition & 1 deletion ory_client/api/courier_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
The version of the OpenAPI document: v1.11.10
The version of the OpenAPI document: v1.11.11
Contact: support@ory.sh
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion ory_client/api/events_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
The version of the OpenAPI document: v1.11.10
The version of the OpenAPI document: v1.11.11
Contact: support@ory.sh
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion ory_client/api/frontend_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.

The version of the OpenAPI document: v1.11.10
The version of the OpenAPI document: v1.11.11
Contact: support@ory.sh
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion ory_client/api/identity_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
The version of the OpenAPI document: v1.11.10
The version of the OpenAPI document: v1.11.11
Contact: support@ory.sh
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion ory_client/api/jwk_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
The version of the OpenAPI document: v1.11.10
The version of the OpenAPI document: v1.11.11
Contact: support@ory.sh
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion ory_client/api/metadata_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
The version of the OpenAPI document: v1.11.10
The version of the OpenAPI document: v1.11.11
Contact: support@ory.sh
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion ory_client/api/o_auth2_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
The version of the OpenAPI document: v1.11.10
The version of the OpenAPI document: v1.11.11
Contact: support@ory.sh
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion ory_client/api/oidc_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
The version of the OpenAPI document: v1.11.10
The version of the OpenAPI document: v1.11.11
Contact: support@ory.sh
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion ory_client/api/permission_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
The version of the OpenAPI document: v1.11.10
The version of the OpenAPI document: v1.11.11
Contact: support@ory.sh
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
Loading

0 comments on commit b2a3ee1

Please sign in to comment.