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
@return [String] Number of times the entry point has run.
@return [String] Number of times the entry point failed to run.
@return [String] Number of times the entry point continuously failed to run.
@return [String] Number of times the entry point continuously failed to exit gracefully.
@return [String] Number of times the entry point finished running.
@return [String] Number of times the entry point failed to exit gracefully.
@return [DateTime] The last time (in UTC) when Service Fabric attempted to run the entry point.
@return [String] The last exit code of the entry point.
@return [DateTime] The last time (in UTC) when the entry point finished running.
@return [DateTime] The last time (in UTC) when the entry point ran successfully.
@return [DateTime] The last time (in UTC) when the entry point finished running gracefully.
Public Class Methods
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