Sha256: 810cc67f1dafa639b29cb3cec3bb471679c799dd5cbd582db83dc512fdfcd141

Contents?: true

Size: 1.23 KB

Versions: 117

Compression:

Stored size: 1.23 KB

Contents

# OryClient::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-client'

instance = OryClient::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

117 entries across 117 versions & 1 rubygems

Version Path
ory-client-1.2.4 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.2.3 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.2.2 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.2.1 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.2.0 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.51 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.50 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.49 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.48 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.47 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.46 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.45 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.44 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.41 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.40 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.39.alpha0 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.39 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.38 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.37 docs/TrustOAuth2JwtGrantIssuer.md
ory-client-1.1.36 docs/TrustOAuth2JwtGrantIssuer.md