You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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\" } ```
402
401
403
402
### Example
404
403
@@ -417,7 +416,7 @@ $apiInstance = new Ory\Client\Api\ApiKeysApi(
**httpsEndpoint** | **string** | The HTTPS endpoint URL to send events to. Required if type is https. | [optional]
8
8
**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]
9
10
**topicArn** | **string** | The AWS SNS topic ARN. Required if type is sns. | [optional]
10
11
**type** | **string** | The type of the event stream (AWS SNS or HTTPS webhook). |
Copy file name to clipboardExpand all lines: docs/Model/EventStream.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
**httpsEndpoint** | **string** | | [optional]
9
9
**id** | **string** | | [optional]
10
10
**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]
**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]
**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)
**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]
11
12
12
13
[[Back to Model list]](../../README.md#models)[[Back to API list]](../../README.md#endpoints)[[Back to README]](../../README.md)
0 commit comments