Sha256: ae9ddb460dd6bbab2b445086bcf6b0c5407abc01825a963dc8eae3af5a5a2592

Contents?: true

Size: 1.4 KB

Versions: 45

Compression:

Stored size: 1.4 KB

Contents

# OryClient::ConsistencyRequestParameters

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **consistency** | **String** | Read Consistency Level (preview)  The read consistency level determines the consistency guarantee for reads:  strong (slow): The read is guaranteed to return the most recent data committed at the start of the read. eventual (very fast): The result will return data that is about 4.8 seconds old.  The default consistency guarantee can be changed in the Ory Network Console or using the Ory CLI with `ory patch project --replace '/previews/default_read_consistency_level=\"strong\"'`.  Setting the default consistency level to `eventual` may cause regressions in the future as we add consistency controls to more APIs. Currently, the following APIs will be affected by this setting:  `GET /admin/identities`  This feature is in preview and only available in Ory Network.  ConsistencyLevelUnset  ConsistencyLevelUnset is the unset / default consistency level. strong ConsistencyLevelStrong  ConsistencyLevelStrong is the strong consistency level. eventual ConsistencyLevelEventual  ConsistencyLevelEventual is the eventual consistency level using follower read timestamps. | [optional] |

## Example

```ruby
require 'ory-client'

instance = OryClient::ConsistencyRequestParameters.new(
  consistency: null
)
```

Version data entries

45 entries across 45 versions & 1 rubygems

Version Path
ory-client-1.15.12 docs/ConsistencyRequestParameters.md
ory-client-1.15.10 docs/ConsistencyRequestParameters.md
ory-client-1.15.7 docs/ConsistencyRequestParameters.md
ory-client-1.15.6 docs/ConsistencyRequestParameters.md
ory-client-1.15.5 docs/ConsistencyRequestParameters.md
ory-client-1.15.4 docs/ConsistencyRequestParameters.md
ory-client-1.15.3 docs/ConsistencyRequestParameters.md
ory-client-1.15.0 docs/ConsistencyRequestParameters.md
ory-client-1.14.5 docs/ConsistencyRequestParameters.md
ory-client-1.14.4 docs/ConsistencyRequestParameters.md
ory-client-1.14.3 docs/ConsistencyRequestParameters.md
ory-client-1.14.2 docs/ConsistencyRequestParameters.md
ory-client-1.14.1 docs/ConsistencyRequestParameters.md
ory-client-1.14.0 docs/ConsistencyRequestParameters.md
ory-client-1.13.10 docs/ConsistencyRequestParameters.md
ory-client-1.13.6 docs/ConsistencyRequestParameters.md
ory-client-1.13.4 docs/ConsistencyRequestParameters.md
ory-client-1.13.3 docs/ConsistencyRequestParameters.md
ory-client-1.13.2 docs/ConsistencyRequestParameters.md
ory-client-1.13.1 docs/ConsistencyRequestParameters.md