Class: DockerEngineRuby::Models::FilesystemChange

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/docker_engine_ruby/models/filesystem_change.rb

Defined Under Namespace

Modules: Kind

Instance Attribute Summary collapse

Instance Method Summary collapse

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(kind:, path:) ⇒ Object

Some parameter documentations has been truncated, see DockerEngineRuby::Models::FilesystemChange for more details.

Change in the container’s filesystem.

Parameters:



# File 'lib/docker_engine_ruby/models/filesystem_change.rb', line 24


Instance Attribute Details

#kindFloat, DockerEngineRuby::Models::FilesystemChange::Kind

Kind of change

Can be one of:

  • 0: Modified (“C”)

  • 1: Added (“A”)

  • 2: Deleted (“D”)



16
# File 'lib/docker_engine_ruby/models/filesystem_change.rb', line 16

required :kind, enum: -> { DockerEngineRuby::FilesystemChange::Kind }, api_name: :Kind

#pathString

Path to file or directory that has changed.

Returns:

  • (String)


22
# File 'lib/docker_engine_ruby/models/filesystem_change.rb', line 22

required :path, String, api_name: :Path