|
39 | 39 | url: https://www.apache.org/licenses/LICENSE-2.0.html |
40 | 40 | termsOfService: /tos |
41 | 41 | title: Ory APIs |
42 | | - version: v1.20.6 |
| 42 | + version: v1.20.7 |
43 | 43 | servers: |
44 | 44 | - url: "https://{project_slug}.projects.oryapis.com/" |
45 | 45 | variables: |
@@ -10301,6 +10301,10 @@ components: |
10301 | 10301 | items: |
10302 | 10302 | $ref: '#/components/schemas/normalizedProjectRevisionHook' |
10303 | 10303 | type: array |
| 10304 | + scim_clients: |
| 10305 | + items: |
| 10306 | + $ref: '#/components/schemas/normalizedProjectRevisionScimClient' |
| 10307 | + type: array |
10304 | 10308 | serve_admin_cors_allowed_origins: |
10305 | 10309 | items: |
10306 | 10310 | type: string |
@@ -16020,6 +16024,10 @@ components: |
16020 | 16024 | items: |
16021 | 16025 | $ref: '#/components/schemas/normalizedProjectRevisionHook' |
16022 | 16026 | type: array |
| 16027 | + scim_clients: |
| 16028 | + items: |
| 16029 | + $ref: '#/components/schemas/normalizedProjectRevisionScimClient' |
| 16030 | + type: array |
16023 | 16031 | serve_admin_cors_allowed_origins: |
16024 | 16032 | items: |
16025 | 16033 | type: string |
@@ -16242,6 +16250,61 @@ components: |
16242 | 16250 | readOnly: true |
16243 | 16251 | type: string |
16244 | 16252 | 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 |
16245 | 16308 | normalizedProjectRevisionThirdPartyProvider: |
16246 | 16309 | properties: |
16247 | 16310 | additional_id_token_audiences: |
@@ -18960,6 +19023,10 @@ components: |
18960 | 19023 | items: |
18961 | 19024 | $ref: '#/components/schemas/normalizedProjectRevisionSAMLProvider' |
18962 | 19025 | type: array |
| 19026 | + projectRevisionScimClients: |
| 19027 | + items: |
| 19028 | + $ref: '#/components/schemas/normalizedProjectRevisionScimClient' |
| 19029 | + type: array |
18963 | 19030 | projectRevisionThirdPartyLoginProviders: |
18964 | 19031 | items: |
18965 | 19032 | $ref: '#/components/schemas/normalizedProjectRevisionThirdPartyProvider' |
@@ -19049,6 +19116,7 @@ components: |
19049 | 19116 | saml_sp SAMLSP |
19050 | 19117 | saml_idp SAMLIDP |
19051 | 19118 | auto_link_policy AutoLinkPolicy |
| 19119 | + scim_clients SCIMClients |
19052 | 19120 | data_location_regional DataLocationRegional Required Features |
19053 | 19121 | rate_limit_tier RateLimitTier |
19054 | 19122 | session_rate_limit_tier RateLimitTierSessions |
@@ -19085,6 +19153,7 @@ components: |
19085 | 19153 | - saml_sp |
19086 | 19154 | - saml_idp |
19087 | 19155 | - auto_link_policy |
| 19156 | + - scim_clients |
19088 | 19157 | - data_location_regional |
19089 | 19158 | - rate_limit_tier |
19090 | 19159 | - session_rate_limit_tier |
@@ -19122,6 +19191,7 @@ components: |
19122 | 19191 | saml_sp SAMLSP |
19123 | 19192 | saml_idp SAMLIDP |
19124 | 19193 | auto_link_policy AutoLinkPolicy |
| 19194 | + scim_clients SCIMClients |
19125 | 19195 | data_location_regional DataLocationRegional Required Features |
19126 | 19196 | rate_limit_tier RateLimitTier |
19127 | 19197 | session_rate_limit_tier RateLimitTierSessions |
|
0 commit comments