# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ServiceFabric::V7_0_0_42 module Models # # Exec command to run inside the container. # class ProbeExec include MsRestAzure # @return [String] Comma separated command to run inside the container # for example "sh, -c, echo hello world". attr_accessor :command # # Mapper for ProbeExec class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ProbeExec', type: { name: 'Composite', class_name: 'ProbeExec', model_properties: { command: { client_side_validation: true, required: true, serialized_name: 'command', type: { name: 'String' } } } } } end end end end