# 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::V6_2_0_9 module Models # # Application Upgrade Complete event. # class ApplicationUpgradeCompleteEvent < ApplicationEvent include MsRestAzure def initialize @Kind = "ApplicationUpgradeComplete" end attr_accessor :Kind # @return [String] Application type name. attr_accessor :application_type_name # @return [String] Application type version. attr_accessor :application_type_version # @return [Float] Overall upgrade time in milli-seconds. attr_accessor :overall_upgrade_elapsed_time_in_ms # # Mapper for ApplicationUpgradeCompleteEvent class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationUpgradeComplete', type: { name: 'Composite', class_name: 'ApplicationUpgradeCompleteEvent', model_properties: { event_instance_id: { client_side_validation: true, required: true, serialized_name: 'EventInstanceId', type: { name: 'String' } }, time_stamp: { client_side_validation: true, required: true, serialized_name: 'TimeStamp', type: { name: 'DateTime' } }, has_correlated_events: { client_side_validation: true, required: false, serialized_name: 'HasCorrelatedEvents', type: { name: 'Boolean' } }, Kind: { client_side_validation: true, required: true, serialized_name: 'Kind', type: { name: 'String' } }, application_id: { client_side_validation: true, required: false, serialized_name: 'ApplicationId', type: { name: 'String' } }, application_type_name: { client_side_validation: true, required: false, serialized_name: 'ApplicationTypeName', type: { name: 'String' } }, application_type_version: { client_side_validation: true, required: false, serialized_name: 'ApplicationTypeVersion', type: { name: 'String' } }, overall_upgrade_elapsed_time_in_ms: { client_side_validation: true, required: false, serialized_name: 'OverallUpgradeElapsedTimeInMs', type: { name: 'Double' } } } } } end end end end