Class: Azure::ServiceFabric::V6_5_0_36::Models::ApplicationUpgradeStartedEvent

Inherits:
ApplicationEvent show all
Includes:
MsRestAzure
Defined in:
lib/6.5.0.36/generated/azure_service_fabric/models/application_upgrade_started_event.rb

Overview

Application Upgrade Started event.

Instance Attribute Summary collapse

Attributes inherited from ApplicationEvent

#application_id

Attributes inherited from FabricEvent

#category, #event_instance_id, #has_correlated_events, #time_stamp

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeApplicationUpgradeStartedEvent

Returns a new instance of ApplicationUpgradeStartedEvent.



16
17
18
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/application_upgrade_started_event.rb', line 16

def initialize
  @Kind = "ApplicationUpgradeStarted"
end

Instance Attribute Details

#application_type_nameString

Returns Application type name.

Returns:

  • (String)

    Application type name.



23
24
25
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/application_upgrade_started_event.rb', line 23

def application_type_name
  @application_type_name
end

#application_type_versionString

Returns Target Application type version.

Returns:

  • (String)

    Target Application type version.



29
30
31
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/application_upgrade_started_event.rb', line 29

def application_type_version
  @application_type_version
end

#current_application_type_versionString

Returns Current Application type version.

Returns:

  • (String)

    Current Application type version.



26
27
28
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/application_upgrade_started_event.rb', line 26

def current_application_type_version
  @current_application_type_version
end

#failure_actionString

Returns Action if failed.

Returns:

  • (String)

    Action if failed.



38
39
40
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/application_upgrade_started_event.rb', line 38

def failure_action
  @failure_action
end

#KindObject

Returns the value of attribute Kind.



20
21
22
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/application_upgrade_started_event.rb', line 20

def Kind
  @Kind
end

#rolling_upgrade_modeString

Returns Mode of upgrade.

Returns:

  • (String)

    Mode of upgrade.



35
36
37
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/application_upgrade_started_event.rb', line 35

def rolling_upgrade_mode
  @rolling_upgrade_mode
end

#upgrade_typeString

Returns Type of upgrade.

Returns:

  • (String)

    Type of upgrade.



32
33
34
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/application_upgrade_started_event.rb', line 32

def upgrade_type
  @upgrade_type
end

Class Method Details

.mapperObject

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



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/application_upgrade_started_event.rb', line 45

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationUpgradeStarted',
    type: {
      name: 'Composite',
      class_name: 'ApplicationUpgradeStartedEvent',
      model_properties: {
        event_instance_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'EventInstanceId',
          type: {
            name: 'String'
          }
        },
        category: {
          client_side_validation: true,
          required: false,
          serialized_name: 'Category',
          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: true,
          serialized_name: 'ApplicationId',
          type: {
            name: 'String'
          }
        },
        application_type_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'ApplicationTypeName',
          type: {
            name: 'String'
          }
        },
        current_application_type_version: {
          client_side_validation: true,
          required: true,
          serialized_name: 'CurrentApplicationTypeVersion',
          type: {
            name: 'String'
          }
        },
        application_type_version: {
          client_side_validation: true,
          required: true,
          serialized_name: 'ApplicationTypeVersion',
          type: {
            name: 'String'
          }
        },
        upgrade_type: {
          client_side_validation: true,
          required: true,
          serialized_name: 'UpgradeType',
          type: {
            name: 'String'
          }
        },
        rolling_upgrade_mode: {
          client_side_validation: true,
          required: true,
          serialized_name: 'RollingUpgradeMode',
          type: {
            name: 'String'
          }
        },
        failure_action: {
          client_side_validation: true,
          required: true,
          serialized_name: 'FailureAction',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end