Skip to content

Commit 534e095

Browse files
committed
autogen: regenerate OpenAPI client for v1.22.50
Version: v1.22.50
1 parent c6b51ed commit 534e095

782 files changed

Lines changed: 2434 additions & 998 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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,8 @@ docs/Model/GenericOIDCProvider.md
121121
docs/Model/GenericUsage.md
122122
docs/Model/GetAttributesCount.md
123123
docs/Model/GetJWKSResponse.md
124+
docs/Model/GetJWKSResponseJwks.md
125+
docs/Model/GetJWKSResponseJwksKeysInner.md
124126
docs/Model/GetManagedIdentitySchemaLocation.md
125127
docs/Model/GetMetricsCount.md
126128
docs/Model/GetMetricsEventAttributes.md
@@ -508,6 +510,8 @@ lib/Model/GenericOIDCProvider.php
508510
lib/Model/GenericUsage.php
509511
lib/Model/GetAttributesCount.php
510512
lib/Model/GetJWKSResponse.php
513+
lib/Model/GetJWKSResponseJwks.php
514+
lib/Model/GetJWKSResponseJwksKeysInner.php
511515
lib/Model/GetManagedIdentitySchemaLocation.php
512516
lib/Model/GetMetricsCount.php
513517
lib/Model/GetMetricsEventAttributes.php
@@ -892,6 +896,8 @@ test/Model/GenericErrorTest.php
892896
test/Model/GenericOIDCProviderTest.php
893897
test/Model/GenericUsageTest.php
894898
test/Model/GetAttributesCountTest.php
899+
test/Model/GetJWKSResponseJwksKeysInnerTest.php
900+
test/Model/GetJWKSResponseJwksTest.php
895901
test/Model/GetJWKSResponseTest.php
896902
test/Model/GetManagedIdentitySchemaLocationTest.php
897903
test/Model/GetMetricsCountTest.php

docs/Api/ApiKeysApi.md

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ try {
153153
## `adminDeleteImportedApiKey()`
154154

155155
```php
156-
adminDeleteImportedApiKey($keyId): mixed
156+
adminDeleteImportedApiKey($keyId)
157157
```
158158

159159
Delete Imported API Key
@@ -180,8 +180,7 @@ $apiInstance = new Ory\Client\Api\ApiKeysApi(
180180
$keyId = 'keyId_example'; // string | SHA512/256 hash of the imported key (REQUIRED)
181181

182182
try {
183-
$result = $apiInstance->adminDeleteImportedApiKey($keyId);
184-
print_r($result);
183+
$apiInstance->adminDeleteImportedApiKey($keyId);
185184
} catch (Exception $e) {
186185
echo 'Exception when calling ApiKeysApi->adminDeleteImportedApiKey: ', $e->getMessage(), PHP_EOL;
187186
}
@@ -195,7 +194,7 @@ try {
195194

196195
### Return type
197196

198-
**mixed**
197+
void (empty response body)
199198

200199
### Authorization
201200

@@ -398,7 +397,7 @@ adminImportApiKey($importApiKeyRequest): \Ory\Client\Model\ImportedApiKey
398397

399398
Import API Key
400399

401-
Imports an external API key into the system. Allows importing keys from legacy systems or external providers. The raw key is hashed and stored securely (HMAC). Imported keys support token derivation (JWT/Macaroon) like issued keys. ```http POST /v2alpha1/admin/importedApiKeys { \"raw_key\": \"sk_live_abc123xyz\", \"name\": \"Imported Stripe Key\", \"actor_id\": \"user_123\" } ```
400+
Imports an external API key into the system. Allows importing keys from legacy systems or external providers. The raw key is hashed and stored securely (HMAC). Imported keys support token derivation (JWT/Macaroon) like issued keys. ```http POST /v2alpha1/admin/importedApiKeys { \"raw_key\": \"imported-key-EXAMPLE-not-a-real-secret\", \"name\": \"Example imported key\", \"actor_id\": \"user_123\" } ```
402401

403402
### Example
404403

@@ -417,7 +416,7 @@ $apiInstance = new Ory\Client\Api\ApiKeysApi(
417416
new GuzzleHttp\Client(),
418417
$config
419418
);
420-
$importApiKeyRequest = new \Ory\Client\Model\ImportApiKeyRequest(); // \Ory\Client\Model\ImportApiKeyRequest | Example: { \"raw_key\": \"sk_live_abc123xyz789\", \"name\": \"Stripe Production Key\", \"actor_id\": \"payment-processor\", \"scopes\": [\"read\", \"write\"], \"ttl\": \"8760h\", // 1 year (also accepts: 31536000s) \"metadata\": {\"source\": \"stripe\", \"environment\": \"production\"} }
419+
$importApiKeyRequest = new \Ory\Client\Model\ImportApiKeyRequest(); // \Ory\Client\Model\ImportApiKeyRequest | Example: { \"raw_key\": \"imported-key-EXAMPLE-not-a-real-secret\", \"name\": \"Example imported key\", \"actor_id\": \"payment-processor\", \"scopes\": [\"read\", \"write\"], \"ttl\": \"8760h\", // 1 year (also accepts: 31536000s) \"metadata\": {\"source\": \"example-provider\", \"environment\": \"staging\"} }
421420

422421
try {
423422
$result = $apiInstance->adminImportApiKey($importApiKeyRequest);
@@ -431,7 +430,7 @@ try {
431430

432431
| Name | Type | Description | Notes |
433432
| ------------- | ------------- | ------------- | ------------- |
434-
| **importApiKeyRequest** | [**\Ory\Client\Model\ImportApiKeyRequest**](../Model/ImportApiKeyRequest.md)| Example: { \"raw_key\": \"sk_live_abc123xyz789\", \"name\": \"Stripe Production Key\", \"actor_id\": \"payment-processor\", \"scopes\": [\"read\", \"write\"], \"ttl\": \"8760h\", // 1 year (also accepts: 31536000s) \"metadata\": {\"source\": \"stripe\", \"environment\": \"production\"} } | |
433+
| **importApiKeyRequest** | [**\Ory\Client\Model\ImportApiKeyRequest**](../Model/ImportApiKeyRequest.md)| Example: { \"raw_key\": \"imported-key-EXAMPLE-not-a-real-secret\", \"name\": \"Example imported key\", \"actor_id\": \"payment-processor\", \"scopes\": [\"read\", \"write\"], \"ttl\": \"8760h\", // 1 year (also accepts: 31536000s) \"metadata\": {\"source\": \"example-provider\", \"environment\": \"staging\"} } | |
435434

436435
### Return type
437436

@@ -641,7 +640,7 @@ try {
641640
## `adminRevokeImportedApiKey()`
642641

643642
```php
644-
adminRevokeImportedApiKey($keyId, $adminRevokeImportedApiKeyBody): mixed
643+
adminRevokeImportedApiKey($keyId, $adminRevokeImportedApiKeyBody)
645644
```
646645

647646
Revoke Imported API Key
@@ -669,8 +668,7 @@ $keyId = 'keyId_example'; // string | SHA-512/256 hash of the imported key (REQU
669668
$adminRevokeImportedApiKeyBody = new \Ory\Client\Model\AdminRevokeImportedApiKeyBody(); // \Ory\Client\Model\AdminRevokeImportedApiKeyBody
670669

671670
try {
672-
$result = $apiInstance->adminRevokeImportedApiKey($keyId, $adminRevokeImportedApiKeyBody);
673-
print_r($result);
671+
$apiInstance->adminRevokeImportedApiKey($keyId, $adminRevokeImportedApiKeyBody);
674672
} catch (Exception $e) {
675673
echo 'Exception when calling ApiKeysApi->adminRevokeImportedApiKey: ', $e->getMessage(), PHP_EOL;
676674
}
@@ -685,7 +683,7 @@ try {
685683

686684
### Return type
687685

688-
**mixed**
686+
void (empty response body)
689687

690688
### Authorization
691689

@@ -703,7 +701,7 @@ try {
703701
## `adminRevokeIssuedApiKey()`
704702

705703
```php
706-
adminRevokeIssuedApiKey($keyId, $adminRevokeIssuedApiKeyBody): mixed
704+
adminRevokeIssuedApiKey($keyId, $adminRevokeIssuedApiKeyBody)
707705
```
708706

709707
Revoke Issued API Key
@@ -731,8 +729,7 @@ $keyId = 'keyId_example'; // string | UUID of the issued key (REQUIRED)
731729
$adminRevokeIssuedApiKeyBody = new \Ory\Client\Model\AdminRevokeIssuedApiKeyBody(); // \Ory\Client\Model\AdminRevokeIssuedApiKeyBody
732730

733731
try {
734-
$result = $apiInstance->adminRevokeIssuedApiKey($keyId, $adminRevokeIssuedApiKeyBody);
735-
print_r($result);
732+
$apiInstance->adminRevokeIssuedApiKey($keyId, $adminRevokeIssuedApiKeyBody);
736733
} catch (Exception $e) {
737734
echo 'Exception when calling ApiKeysApi->adminRevokeIssuedApiKey: ', $e->getMessage(), PHP_EOL;
738735
}
@@ -747,7 +744,7 @@ try {
747744

748745
### Return type
749746

750-
**mixed**
747+
void (empty response body)
751748

752749
### Authorization
753750

docs/Model/CreateEventStreamBody.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**httpsEndpoint** | **string** | The HTTPS endpoint URL to send events to. Required if type is https. | [optional]
88
**roleArn** | **string** | The AWS IAM role ARN to assume when publishing to the SNS topic. Required if type is sns. | [optional]
9+
**status** | **string** | The status of the event stream. Defaults to active. A paused stream is created but does not forward any events until it is set to active. | [optional]
910
**topicArn** | **string** | The AWS SNS topic ARN. Required if type is sns. | [optional]
1011
**type** | **string** | The type of the event stream (AWS SNS or HTTPS webhook). |
1112

docs/Model/EventStream.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
**httpsEndpoint** | **string** | | [optional]
99
**id** | **string** | | [optional]
1010
**roleArn** | **string** | | [optional]
11+
**status** | **string** | The status of the event stream. A paused event stream does not forward any events until it is set back to active. | [optional]
1112
**topicArn** | **string** | | [optional]
1213
**type** | **string** | | [optional]
1314
**updatedAt** | **\DateTime** | | [optional]

docs/Model/GetJWKSResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**jwks** | **object** | jwks is a JSON Web Key Set (RFC 7517). Always contains a single top-level field \"keys\" whose value is an array of JWK objects. Each JWK has at minimum a \"kty\" (key type), \"kid\" (key ID), and key-type-specific material (e.g., \"x\" and \"crv\" for OKP/Ed25519, \"n\" and \"e\" for RSA). | [optional]
7+
**jwks** | [**\Ory\Client\Model\GetJWKSResponseJwks**](GetJWKSResponseJwks.md) | | [optional]
88

99
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)

docs/Model/GetJWKSResponseJwks.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# # GetJWKSResponseJwks
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**keys** | [**\Ory\Client\Model\GetJWKSResponseJwksKeysInner[]**](GetJWKSResponseJwksKeysInner.md) | Array of JWK objects. Each key has at minimum `kty` (key type) and `kid` (key ID) plus key-type-specific material (e.g. `x`/`crv` for OKP/Ed25519, `n`/`e` for RSA). |
8+
9+
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# # GetJWKSResponseJwksKeysInner
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**alg** | **string** | | [optional]
8+
**crv** | **string** | | [optional]
9+
**e** | **string** | | [optional]
10+
**kid** | **string** | |
11+
**kty** | **string** | |
12+
**n** | **string** | | [optional]
13+
**use** | **string** | | [optional]
14+
**x** | **string** | | [optional]
15+
**y** | **string** | | [optional]
16+
17+
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)

docs/Model/SetEventStreamBody.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**httpsEndpoint** | **string** | The HTTPS endpoint URL to send events to. Required if type is https. | [optional]
8-
**roleArn** | **string** | The AWS IAM role ARN to assume when publishing to the SNS topic. Required if type is sns. | [optional]
9-
**topicArn** | **string** | The AWS SNS topic ARN. Required if type is sns. | [optional]
10-
**type** | **string** | The type of the event stream (AWS SNS or HTTPS webhook). |
7+
**httpsEndpoint** | **string** | The HTTPS endpoint URL to send events to. When omitted, the current value is kept. | [optional]
8+
**roleArn** | **string** | The AWS IAM role ARN to assume when publishing to the SNS topic. When omitted, the current value is kept. | [optional]
9+
**status** | **string** | The desired status of the event stream. When omitted, the current status is kept. | [optional]
10+
**topicArn** | **string** | The AWS SNS topic ARN. When omitted, the current value is kept. | [optional]
11+
**type** | **string** | The type of the event stream (AWS SNS or HTTPS webhook). When omitted, the current type and its destination settings are kept. | [optional]
1112

1213
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)

0 commit comments

Comments
 (0)