Class: Azure::Web::Mgmt::V2016_08_01::Models::SlotDifference
- Inherits:
-
ProxyOnlyResource
- Object
- ProxyOnlyResource
- Azure::Web::Mgmt::V2016_08_01::Models::SlotDifference
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-08-01/generated/azure_mgmt_web/models/slot_difference.rb
Overview
A setting difference between two deployment slots of an app.
Instance Attribute Summary collapse
-
#description ⇒ String
Description of the setting difference.
-
#diff_rule ⇒ String
difference during a slot swap.
-
#setting_name ⇒ String
Name of the setting.
-
#setting_type ⇒ String
ConnectionString.
-
#slot_difference_type ⇒ String
Type of the difference: Information, Warning or Error.
-
#value_in_current_slot ⇒ String
Value of the setting in the current slot.
-
#value_in_target_slot ⇒ String
Value of the setting in the target slot.
Attributes inherited from ProxyOnlyResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SlotDifference class as Ruby Hash.
Instance Attribute Details
#description ⇒ String
Returns Description of the setting difference.
36 37 38 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/slot_difference.rb', line 36 def description @description end |
#diff_rule ⇒ String
difference during a slot swap.
24 25 26 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/slot_difference.rb', line 24 def diff_rule @diff_rule end |
#setting_name ⇒ String
Returns Name of the setting.
27 28 29 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/slot_difference.rb', line 27 def setting_name @setting_name end |
#setting_type ⇒ String
ConnectionString.
20 21 22 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/slot_difference.rb', line 20 def setting_type @setting_type end |
#slot_difference_type ⇒ String
Returns Type of the difference: Information, Warning or Error.
16 17 18 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/slot_difference.rb', line 16 def slot_difference_type @slot_difference_type end |
#value_in_current_slot ⇒ String
Returns Value of the setting in the current slot.
30 31 32 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/slot_difference.rb', line 30 def value_in_current_slot @value_in_current_slot end |
#value_in_target_slot ⇒ String
Returns Value of the setting in the target slot.
33 34 35 |
# File 'lib/2016-08-01/generated/azure_mgmt_web/models/slot_difference.rb', line 33 def value_in_target_slot @value_in_target_slot end |
Class Method Details
.mapper ⇒ Object
Mapper for SlotDifference class as Ruby Hash. This will be used for serialization/deserialization.
43 44 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/2016-08-01/generated/azure_mgmt_web/models/slot_difference.rb', line 43 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SlotDifference', type: { name: 'Composite', class_name: 'SlotDifference', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, kind: { client_side_validation: true, required: false, serialized_name: 'kind', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, slot_difference_type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.type', type: { name: 'String' } }, setting_type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.settingType', type: { name: 'String' } }, diff_rule: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.diffRule', type: { name: 'String' } }, setting_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.settingName', type: { name: 'String' } }, value_in_current_slot: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.valueInCurrentSlot', type: { name: 'String' } }, value_in_target_slot: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.valueInTargetSlot', type: { name: 'String' } }, description: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.description', type: { name: 'String' } } } } } end |