Class: Anthropic::Models::Beta::Organization::Federation::IssuerUpdateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Anthropic::Models::Beta::Organization::Federation::IssuerUpdateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/anthropic/models/beta/organization/federation/issuer_update_params.rb,
sig/anthropic/models/beta/organization/federation/issuer_update_params.rbs
Overview
Defined Under Namespace
Modules: JWKS
Constant Summary
Constants included from Internal::Type::RequestParameters
Internal::Type::RequestParameters::Anthropic
Instance Attribute Summary collapse
-
#betas ⇒ Array<String, Symbol, Anthropic::Models::AnthropicBeta>?
Optional header to specify the beta version(s) you want to use.
-
#check_jti ⇒ Boolean?
Whether the jwt-bearer exchange enforces JTI single-use (replay protection) for tokens from this issuer.
-
#federation_issuer_id ⇒ String
ID of the federation issuer to update.
-
#issuer_url ⇒ String?
Replaces the
issclaim value to match against. -
#jwks ⇒ Anthropic::Models::Beta::Organization::Federation::BetaJWKSDiscovery, ...
Replaces the entire JWKS configuration.
-
#jwks_polling_disabled ⇒ Boolean?
Only
falseis accepted, to re-enable polling after the system pauses it. -
#max_jwt_lifetime_seconds ⇒ Integer?
Maximum allowed iat→exp spread for assertions from this issuer (1-176400 seconds, i.e. up to 49h).
-
#name ⇒ String?
Replaces the slug identifier (lowercase, digits, hyphens).
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
-
#initialize(federation_issuer_id:, check_jti: nil, issuer_url: nil, jwks: nil, jwks_polling_disabled: nil, max_jwt_lifetime_seconds: nil, name: nil, betas: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see IssuerUpdateParams for more details.
- #to_hash ⇒ {
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(federation_issuer_id:, check_jti: nil, issuer_url: nil, jwks: nil, jwks_polling_disabled: nil, max_jwt_lifetime_seconds: nil, name: nil, betas: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Anthropic::Models::Beta::Organization::Federation::IssuerUpdateParams for more details.
|
|
# File 'lib/anthropic/models/beta/organization/federation/issuer_update_params.rb', line 73
|
Instance Attribute Details
#betas ⇒ Array<String, Symbol, Anthropic::Models::AnthropicBeta>?
Optional header to specify the beta version(s) you want to use.
71 |
# File 'lib/anthropic/models/beta/organization/federation/issuer_update_params.rb', line 71 optional :betas, -> { Anthropic::Internal::Type::ArrayOf[union: Anthropic::AnthropicBeta] } |
#check_jti ⇒ Boolean?
Whether the jwt-bearer exchange enforces JTI single-use (replay protection) for
tokens from this issuer. Applies only to assertions carrying a jti claim;
tokens without one are accepted without single-use enforcement.
25 |
# File 'lib/anthropic/models/beta/organization/federation/issuer_update_params.rb', line 25 optional :check_jti, Anthropic::Internal::Type::Boolean, nil?: true |
#federation_issuer_id ⇒ String
ID of the federation issuer to update.
17 |
# File 'lib/anthropic/models/beta/organization/federation/issuer_update_params.rb', line 17 required :federation_issuer_id, String |
#issuer_url ⇒ String?
Replaces the iss claim value to match against. For discovery-mode issuers
without a discovery_base, this is also the URL Anthropic fetches the OIDC
discovery document and signing keys from, so changing it repoints the JWKS
source. Changing the issuer URL to a well-known shared platform is rejected
while any live rule under this issuer would not constrain tenant identity.
35 |
# File 'lib/anthropic/models/beta/organization/federation/issuer_update_params.rb', line 35 optional :issuer_url, String, nil?: true |
#jwks ⇒ Anthropic::Models::Beta::Organization::Federation::BetaJWKSDiscovery, ...
Replaces the entire JWKS configuration.
41 42 43 |
# File 'lib/anthropic/models/beta/organization/federation/issuer_update_params.rb', line 41 optional :jwks, union: -> { Anthropic::Beta::Organization::Federation::IssuerUpdateParams::JWKS }, nil?: true |
#jwks_polling_disabled ⇒ Boolean?
Only false is accepted, to re-enable polling after the system pauses it.
Polling is paused automatically; sending true is rejected.
50 |
# File 'lib/anthropic/models/beta/organization/federation/issuer_update_params.rb', line 50 optional :jwks_polling_disabled, Anthropic::Internal::Type::Boolean, nil?: true |
#max_jwt_lifetime_seconds ⇒ Integer?
Maximum allowed iat→exp spread for assertions from this issuer (1-176400
seconds, i.e. up to 49h). Assertions must carry both iat and exp; a missing
iat is rejected.
58 |
# File 'lib/anthropic/models/beta/organization/federation/issuer_update_params.rb', line 58 optional :max_jwt_lifetime_seconds, Integer, nil?: true |
#name ⇒ String?
Replaces the slug identifier (lowercase, digits, hyphens). Unique within the organization; a duplicate name returns 409.
65 |
# File 'lib/anthropic/models/beta/organization/federation/issuer_update_params.rb', line 65 optional :name, String, nil?: true |
Instance Method Details
#to_hash ⇒ {
55 |
# File 'sig/anthropic/models/beta/organization/federation/issuer_update_params.rbs', line 55
def to_hash: -> {
|