Class: Anthropic::Models::Beta::BetaEnvironment
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Anthropic::Models::Beta::BetaEnvironment
- Defined in:
- lib/anthropic/models/beta/beta_environment.rb
Overview
Instance Attribute Summary collapse
-
#archived_at ⇒ String?
RFC 3339 timestamp when environment was archived, or null if not archived.
-
#config ⇒ Anthropic::Models::Beta::BetaCloudConfig
cloudenvironment configuration. -
#created_at ⇒ String
RFC 3339 timestamp when environment was created.
-
#description ⇒ String
User-provided description for the environment.
-
#id ⇒ String
Environment identifier (e.g., 'env_...').
-
#metadata ⇒ Hash{Symbol=>String}
User-provided metadata key-value pairs.
-
#name ⇒ String
Human-readable name for the environment.
-
#type ⇒ Symbol, :environment
The type of object (always 'environment').
-
#updated_at ⇒ String
RFC 3339 timestamp when environment was last updated.
Method Summary
Methods inherited from Internal::Type::BaseModel
#==, ==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, 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
This class inherits a constructor from Anthropic::Internal::Type::BaseModel
Instance Attribute Details
#archived_at ⇒ String?
RFC 3339 timestamp when environment was archived, or null if not archived
18 |
# File 'lib/anthropic/models/beta/beta_environment.rb', line 18 required :archived_at, String, nil?: true |
#config ⇒ Anthropic::Models::Beta::BetaCloudConfig
cloud environment configuration.
24 |
# File 'lib/anthropic/models/beta/beta_environment.rb', line 24 required :config, -> { Anthropic::Beta::BetaCloudConfig } |
#created_at ⇒ String
RFC 3339 timestamp when environment was created
30 |
# File 'lib/anthropic/models/beta/beta_environment.rb', line 30 required :created_at, String |
#description ⇒ String
User-provided description for the environment
36 |
# File 'lib/anthropic/models/beta/beta_environment.rb', line 36 required :description, String |
#id ⇒ String
Environment identifier (e.g., 'env_...')
12 |
# File 'lib/anthropic/models/beta/beta_environment.rb', line 12 required :id, String |
#metadata ⇒ Hash{Symbol=>String}
User-provided metadata key-value pairs
42 |
# File 'lib/anthropic/models/beta/beta_environment.rb', line 42 required :metadata, Anthropic::Internal::Type::HashOf[String] |
#name ⇒ String
Human-readable name for the environment
48 |
# File 'lib/anthropic/models/beta/beta_environment.rb', line 48 required :name, String |
#type ⇒ Symbol, :environment
The type of object (always 'environment')
54 |
# File 'lib/anthropic/models/beta/beta_environment.rb', line 54 required :type, const: :environment |
#updated_at ⇒ String
RFC 3339 timestamp when environment was last updated
60 |
# File 'lib/anthropic/models/beta/beta_environment.rb', line 60 required :updated_at, String |