Class: Anthropic::Models::Beta::BetaPackages
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Anthropic::Models::Beta::BetaPackages
- Defined in:
- lib/anthropic/models/beta/beta_packages.rb
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#apt ⇒ Array<String>
Ubuntu/Debian packages to install.
-
#cargo ⇒ Array<String>
Rust packages to install.
-
#gem_ ⇒ Array<String>
Ruby packages to install.
-
#go ⇒ Array<String>
Go packages to install.
-
#npm ⇒ Array<String>
Node.js packages to install.
-
#pip ⇒ Array<String>
Python packages to install.
-
#type ⇒ Symbol, ...
Package configuration type.
Instance Method Summary collapse
-
#initialize(apt:, cargo:, gem_:, go:, npm:, pip:, type: nil) ⇒ void
constructor
Packages (and their versions) available in this environment.
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(apt:, cargo:, gem_:, go:, npm:, pip:, type: nil) ⇒ void
Packages (and their versions) available in this environment.
|
|
# File 'lib/anthropic/models/beta/beta_packages.rb', line 49
|
Instance Attribute Details
#apt ⇒ Array<String>
Ubuntu/Debian packages to install
11 |
# File 'lib/anthropic/models/beta/beta_packages.rb', line 11 required :apt, Anthropic::Internal::Type::ArrayOf[String] |
#cargo ⇒ Array<String>
Rust packages to install
17 |
# File 'lib/anthropic/models/beta/beta_packages.rb', line 17 required :cargo, Anthropic::Internal::Type::ArrayOf[String] |
#gem_ ⇒ Array<String>
Ruby packages to install
23 |
# File 'lib/anthropic/models/beta/beta_packages.rb', line 23 required :gem_, Anthropic::Internal::Type::ArrayOf[String], api_name: :gem |
#go ⇒ Array<String>
Go packages to install
29 |
# File 'lib/anthropic/models/beta/beta_packages.rb', line 29 required :go, Anthropic::Internal::Type::ArrayOf[String] |
#npm ⇒ Array<String>
Node.js packages to install
35 |
# File 'lib/anthropic/models/beta/beta_packages.rb', line 35 required :npm, Anthropic::Internal::Type::ArrayOf[String] |