Sha256: 397054d2e4ed12c6a9a63f836a94f94b95a9bb95e76af2788d9312bd3fd56cee

Contents?: true

Size: 1.25 KB

Versions: 7

Compression:

Stored size: 1.25 KB

Contents

# OryHydraClient::TrustOAuth2JwtGrantIssuer

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **allow_any_subject** | **Boolean** | The \"allow_any_subject\" indicates that the issuer is allowed to have any principal as the subject of the JWT. | [optional] |
| **expires_at** | **Time** | The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\". |  |
| **issuer** | **String** | The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT). |  |
| **jwk** | [**JsonWebKey**](JsonWebKey.md) |  |  |
| **scope** | **Array<String>** | The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749]) |  |
| **subject** | **String** | The \"subject\" identifies the principal that is the subject of the JWT. | [optional] |

## Example

```ruby
require 'ory-hydra-client'

instance = OryHydraClient::TrustOAuth2JwtGrantIssuer.new(
  allow_any_subject: null,
  expires_at: null,
  issuer: https://jwt-idp.example.com,
  jwk: null,
  scope: ["openid","offline"],
  subject: mike@example.com
)
```

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ory-hydra-client-2.2.1 docs/TrustOAuth2JwtGrantIssuer.md
ory-hydra-client-2.2.0 docs/TrustOAuth2JwtGrantIssuer.md
ory-hydra-client-2.2.0.rc3 docs/TrustOAuth2JwtGrantIssuer.md
ory-hydra-client-2.1.1 docs/TrustOAuth2JwtGrantIssuer.md
ory-hydra-client-2.1.0 docs/TrustOAuth2JwtGrantIssuer.md
ory-hydra-client-2.0.2 docs/TrustOAuth2JwtGrantIssuer.md
ory-hydra-client-2.0.1 docs/TrustOAuth2JwtGrantIssuer.md