class Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ScriptActionExecutionSummary

The execution summary of a script action.

Attributes

instance_count[RW]

@return [Integer] The instance count for a given script action execution status.

status[RW]

@return [String] The status of script action execution.

Private Class Methods

mapper() click to toggle source

Mapper for ScriptActionExecutionSummary class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/script_action_execution_summary.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ScriptActionExecutionSummary',
    type: {
      name: 'Composite',
      class_name: 'ScriptActionExecutionSummary',
      model_properties: {
        status: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'status',
          type: {
            name: 'String'
          }
        },
        instance_count: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'instanceCount',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end