class Azure::ServiceFabric::V6_3_0_9::Models::CodePackageEntryPointStatistics

Statistics about setup or main entry point of a code package deployed on a Service Fabric node.

Attributes

activation_count[RW]

@return [String] Number of times the entry point has run.

activation_failure_count[RW]

@return [String] Number of times the entry point failed to run.

continuous_activation_failure_count[RW]

@return [String] Number of times the entry point continuously failed to run.

continuous_exit_failure_count[RW]

@return [String] Number of times the entry point continuously failed to exit gracefully.

exit_count[RW]

@return [String] Number of times the entry point finished running.

exit_failure_count[RW]

@return [String] Number of times the entry point failed to exit gracefully.

last_activation_time[RW]

@return [DateTime] The last time (in UTC) when Service Fabric attempted to run the entry point.

last_exit_code[RW]

@return [String] The last exit code of the entry point.

last_exit_time[RW]

@return [DateTime] The last time (in UTC) when the entry point finished running.

last_successful_activation_time[RW]

@return [DateTime] The last time (in UTC) when the entry point ran successfully.

last_successful_exit_time[RW]

@return [DateTime] The last time (in UTC) when the entry point finished running gracefully.

Public Class Methods

mapper() click to toggle source

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

# File lib/6.3.0.9/generated/azure_service_fabric/models/code_package_entry_point_statistics.rb, line 61
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'CodePackageEntryPointStatistics',
    type: {
      name: 'Composite',
      class_name: 'CodePackageEntryPointStatistics',
      model_properties: {
        last_exit_code: {
          client_side_validation: true,
          required: false,
          serialized_name: 'LastExitCode',
          type: {
            name: 'String'
          }
        },
        last_activation_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'LastActivationTime',
          type: {
            name: 'DateTime'
          }
        },
        last_exit_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'LastExitTime',
          type: {
            name: 'DateTime'
          }
        },
        last_successful_activation_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'LastSuccessfulActivationTime',
          type: {
            name: 'DateTime'
          }
        },
        last_successful_exit_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'LastSuccessfulExitTime',
          type: {
            name: 'DateTime'
          }
        },
        activation_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ActivationCount',
          type: {
            name: 'String'
          }
        },
        activation_failure_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ActivationFailureCount',
          type: {
            name: 'String'
          }
        },
        continuous_activation_failure_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ContinuousActivationFailureCount',
          type: {
            name: 'String'
          }
        },
        exit_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ExitCount',
          type: {
            name: 'String'
          }
        },
        exit_failure_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ExitFailureCount',
          type: {
            name: 'String'
          }
        },
        continuous_exit_failure_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ContinuousExitFailureCount',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end