Skip to content

Commit 2526506

Browse files
committed
autogen: regenerate OpenAPI client for v1.20.7
Version: v1.20.7
1 parent 8935577 commit 2526506

620 files changed

Lines changed: 1779 additions & 903 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.openapi-generator/FILES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ docs/NormalizedProjectRevisionCourierChannel.md
150150
docs/NormalizedProjectRevisionHook.md
151151
docs/NormalizedProjectRevisionIdentitySchema.md
152152
docs/NormalizedProjectRevisionSAMLProvider.md
153+
docs/NormalizedProjectRevisionScimClient.md
153154
docs/NormalizedProjectRevisionThirdPartyProvider.md
154155
docs/NormalizedProjectRevisionTokenizerTemplate.md
155156
docs/OAuth2Api.md
@@ -483,6 +484,7 @@ src/main/java/sh/ory/model/NormalizedProjectRevisionCourierChannel.java
483484
src/main/java/sh/ory/model/NormalizedProjectRevisionHook.java
484485
src/main/java/sh/ory/model/NormalizedProjectRevisionIdentitySchema.java
485486
src/main/java/sh/ory/model/NormalizedProjectRevisionSAMLProvider.java
487+
src/main/java/sh/ory/model/NormalizedProjectRevisionScimClient.java
486488
src/main/java/sh/ory/model/NormalizedProjectRevisionThirdPartyProvider.java
487489
src/main/java/sh/ory/model/NormalizedProjectRevisionTokenizerTemplate.java
488490
src/main/java/sh/ory/model/OAuth2Client.java
@@ -776,6 +778,7 @@ src/test/java/sh/ory/model/NormalizedProjectRevisionCourierChannelTest.java
776778
src/test/java/sh/ory/model/NormalizedProjectRevisionHookTest.java
777779
src/test/java/sh/ory/model/NormalizedProjectRevisionIdentitySchemaTest.java
778780
src/test/java/sh/ory/model/NormalizedProjectRevisionSAMLProviderTest.java
781+
src/test/java/sh/ory/model/NormalizedProjectRevisionScimClientTest.java
779782
src/test/java/sh/ory/model/NormalizedProjectRevisionTest.java
780783
src/test/java/sh/ory/model/NormalizedProjectRevisionThirdPartyProviderTest.java
781784
src/test/java/sh/ory/model/NormalizedProjectRevisionTokenizerTemplateTest.java

api/openapi.yaml

Lines changed: 71 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ info:
3939
url: https://www.apache.org/licenses/LICENSE-2.0.html
4040
termsOfService: /tos
4141
title: Ory APIs
42-
version: v1.20.6
42+
version: v1.20.7
4343
servers:
4444
- url: "https://{project_slug}.projects.oryapis.com/"
4545
variables:
@@ -10301,6 +10301,10 @@ components:
1030110301
items:
1030210302
$ref: '#/components/schemas/normalizedProjectRevisionHook'
1030310303
type: array
10304+
scim_clients:
10305+
items:
10306+
$ref: '#/components/schemas/normalizedProjectRevisionScimClient'
10307+
type: array
1030410308
serve_admin_cors_allowed_origins:
1030510309
items:
1030610310
type: string
@@ -16020,6 +16024,10 @@ components:
1602016024
items:
1602116025
$ref: '#/components/schemas/normalizedProjectRevisionHook'
1602216026
type: array
16027+
scim_clients:
16028+
items:
16029+
$ref: '#/components/schemas/normalizedProjectRevisionScimClient'
16030+
type: array
1602316031
serve_admin_cors_allowed_origins:
1602416032
items:
1602516033
type: string
@@ -16242,6 +16250,61 @@ components:
1624216250
readOnly: true
1624316251
type: string
1624416252
type: object
16253+
normalizedProjectRevisionScimClient:
16254+
description: |-
16255+
SCIMClient represents a SCIM client configuration to be used by an external
16256+
identity provider.
16257+
properties:
16258+
authorization_header_secret:
16259+
description: The secret that the client uses in the authorization header
16260+
to authenticate itself.
16261+
type: string
16262+
client_id:
16263+
description: The unique ID of the SCIM server.
16264+
type: string
16265+
created_at:
16266+
description: The SCIM client's creation time
16267+
format: date-time
16268+
readOnly: true
16269+
type: string
16270+
label:
16271+
description: The SCIM server's label
16272+
type: string
16273+
mapper_url:
16274+
description: |-
16275+
Mapper specifies the JSONNet code snippet which uses the SCIM provider's data
16276+
to hydrate the identity's data.
16277+
type: string
16278+
organization_id:
16279+
description: OrganizationID is the organization ID for this SCIM server.
16280+
format: uuid
16281+
type: string
16282+
state:
16283+
description: |-
16284+
State indicates the state of the SCIM server
16285+
16286+
Only servers with state `enabled` will be available for SCIM provisioning.
16287+
enabled ThirdPartyProviderStateEnabled
16288+
disabled ThirdPartyProviderStateDisabled
16289+
enum:
16290+
- enabled
16291+
- disabled
16292+
type: string
16293+
x-go-enum-desc: |-
16294+
enabled ThirdPartyProviderStateEnabled
16295+
disabled ThirdPartyProviderStateDisabled
16296+
updated_at:
16297+
description: Last time the SCIM client was updated
16298+
format: date-time
16299+
readOnly: true
16300+
type: string
16301+
required:
16302+
- authorization_header_secret
16303+
- client_id
16304+
- label
16305+
- mapper_url
16306+
- organization_id
16307+
type: object
1624516308
normalizedProjectRevisionThirdPartyProvider:
1624616309
properties:
1624716310
additional_id_token_audiences:
@@ -18960,6 +19023,10 @@ components:
1896019023
items:
1896119024
$ref: '#/components/schemas/normalizedProjectRevisionSAMLProvider'
1896219025
type: array
19026+
projectRevisionScimClients:
19027+
items:
19028+
$ref: '#/components/schemas/normalizedProjectRevisionScimClient'
19029+
type: array
1896319030
projectRevisionThirdPartyLoginProviders:
1896419031
items:
1896519032
$ref: '#/components/schemas/normalizedProjectRevisionThirdPartyProvider'
@@ -19049,6 +19116,7 @@ components:
1904919116
saml_sp SAMLSP
1905019117
saml_idp SAMLIDP
1905119118
auto_link_policy AutoLinkPolicy
19119+
scim_clients SCIMClients
1905219120
data_location_regional DataLocationRegional Required Features
1905319121
rate_limit_tier RateLimitTier
1905419122
session_rate_limit_tier RateLimitTierSessions
@@ -19085,6 +19153,7 @@ components:
1908519153
- saml_sp
1908619154
- saml_idp
1908719155
- auto_link_policy
19156+
- scim_clients
1908819157
- data_location_regional
1908919158
- rate_limit_tier
1909019159
- session_rate_limit_tier
@@ -19122,6 +19191,7 @@ components:
1912219191
saml_sp SAMLSP
1912319192
saml_idp SAMLIDP
1912419193
auto_link_policy AutoLinkPolicy
19194+
scim_clients SCIMClients
1912519195
data_location_regional DataLocationRegional Required Features
1912619196
rate_limit_tier RateLimitTier
1912719197
session_rate_limit_tier RateLimitTierSessions

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'sh.ory'
7-
version = 'v1.20.6'
7+
version = 'v1.20.7'
88

99
buildscript {
1010
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "sh.ory",
44
name := "client",
5-
version := "v1.20.6",
5+
version := "v1.20.7",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/CreateProjectNormalizedPayload.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ Create project (normalized) request payload
223223
|**name** | **String** | The project's name. | |
224224
|**projectId** | **String** | The Revision's Project ID | [optional] |
225225
|**projectRevisionHooks** | [**List<NormalizedProjectRevisionHook>**](NormalizedProjectRevisionHook.md) | | [optional] |
226+
|**scimClients** | [**List<NormalizedProjectRevisionScimClient>**](NormalizedProjectRevisionScimClient.md) | | [optional] |
226227
|**serveAdminCorsAllowedOrigins** | **List<String>** | | [optional] |
227228
|**serveAdminCorsEnabled** | **Boolean** | Enable CORS headers on all admin APIs This governs the \"serve.admin.cors.enabled\" setting. | [optional] |
228229
|**servePublicCorsAllowedOrigins** | **List<String>** | | [optional] |

docs/NormalizedProjectRevision.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@
220220
|**name** | **String** | The project's name. | |
221221
|**projectId** | **String** | The Revision's Project ID | [optional] |
222222
|**projectRevisionHooks** | [**List<NormalizedProjectRevisionHook>**](NormalizedProjectRevisionHook.md) | | [optional] |
223+
|**scimClients** | [**List<NormalizedProjectRevisionScimClient>**](NormalizedProjectRevisionScimClient.md) | | [optional] |
223224
|**serveAdminCorsAllowedOrigins** | **List<String>** | | [optional] |
224225
|**serveAdminCorsEnabled** | **Boolean** | Enable CORS headers on all admin APIs This governs the \"serve.admin.cors.enabled\" setting. | [optional] |
225226
|**servePublicCorsAllowedOrigins** | **List<String>** | | [optional] |
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
2+
3+
# NormalizedProjectRevisionScimClient
4+
5+
SCIMClient represents a SCIM client configuration to be used by an external identity provider.
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
|------------ | ------------- | ------------- | -------------|
11+
|**authorizationHeaderSecret** | **String** | The secret that the client uses in the authorization header to authenticate itself. | |
12+
|**clientId** | **String** | The unique ID of the SCIM server. | |
13+
|**createdAt** | **OffsetDateTime** | The SCIM client's creation time | [optional] [readonly] |
14+
|**label** | **String** | The SCIM server's label | |
15+
|**mapperUrl** | **String** | Mapper specifies the JSONNet code snippet which uses the SCIM provider's data to hydrate the identity's data. | |
16+
|**organizationId** | **String** | OrganizationID is the organization ID for this SCIM server. | |
17+
|**state** | [**StateEnum**](#StateEnum) | State indicates the state of the SCIM server Only servers with state `enabled` will be available for SCIM provisioning. enabled ThirdPartyProviderStateEnabled disabled ThirdPartyProviderStateDisabled | [optional] |
18+
|**updatedAt** | **OffsetDateTime** | Last time the SCIM client was updated | [optional] [readonly] |
19+
20+
21+
22+
## Enum: StateEnum
23+
24+
| Name | Value |
25+
|---- | -----|
26+
| ENABLED | "enabled" |
27+
| DISABLED | "disabled" |
28+
29+
30+

docs/QuotaUsage.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
|------------ | ------------- | ------------- | -------------|
1010
|**additionalPrice** | **String** | The additional price per unit in cents. | |
1111
|**canUseMore** | **Boolean** | | |
12-
|**feature** | [**FeatureEnum**](#FeatureEnum) | 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 data_location_us DataLocationUS data_location_asiane DataLocationAsiaNorthEast m2m_token_issuance M2MTokenIssuance permission_checks PermissionChecks captcha Captcha saml_sp SAMLSP saml_idp SAMLIDP auto_link_policy AutoLinkPolicy 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 create_recovery_admin_rate_limit_tier RateLimitTierCreateAdminRecovery | |
12+
|**feature** | [**FeatureEnum**](#FeatureEnum) | 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 data_location_us DataLocationUS data_location_asiane DataLocationAsiaNorthEast m2m_token_issuance M2MTokenIssuance permission_checks PermissionChecks captcha Captcha saml_sp SAMLSP saml_idp SAMLIDP auto_link_policy AutoLinkPolicy scim_clients SCIMClients 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 create_recovery_admin_rate_limit_tier RateLimitTierCreateAdminRecovery | |
1313
|**featureAvailable** | **Boolean** | | |
1414
|**included** | **Long** | | |
1515
|**isUnlimited** | **Boolean** | | |
@@ -49,6 +49,7 @@
4949
| SAML_SP | "saml_sp" |
5050
| SAML_IDP | "saml_idp" |
5151
| AUTO_LINK_POLICY | "auto_link_policy" |
52+
| SCIM_CLIENTS | "scim_clients" |
5253
| DATA_LOCATION_REGIONAL | "data_location_regional" |
5354
| RATE_LIMIT_TIER | "rate_limit_tier" |
5455
| SESSION_RATE_LIMIT_TIER | "session_rate_limit_tier" |

src/main/java/sh/ory/ApiCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Ory APIs
33
* # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
44
*
5-
* The version of the OpenAPI document: v1.20.6
5+
* The version of the OpenAPI document: v1.20.7
66
* Contact: support@ory.sh
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

src/main/java/sh/ory/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Ory APIs
33
* # Introduction 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. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
44
*
5-
* The version of the OpenAPI document: v1.20.6
5+
* The version of the OpenAPI document: v1.20.7
66
* Contact: support@ory.sh
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -231,7 +231,7 @@ private void init() {
231231
json = new JSON();
232232

233233
// Set default User-Agent.
234-
setUserAgent("OpenAPI-Generator/v1.20.6/java");
234+
setUserAgent("OpenAPI-Generator/v1.20.7/java");
235235

236236
authentications = new HashMap<String, Authentication>();
237237
}

0 commit comments

Comments
 (0)