Class: Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::ChangeNotReimportedDelta

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_delta.rb

Overview

The delta in a change that is not re-imported.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#anchorString

Returns The anchor.

Returns:

  • (String)

    The anchor.



16
17
18
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_delta.rb', line 16

def anchor
  @anchor
end

#attributesArray<AttributeDelta>

Returns The attributes.

Returns:



23
24
25
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_delta.rb', line 23

def attributes
  @attributes
end

#dn_attributesArray<AttributeDelta>

names.

Returns:



20
21
22
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_delta.rb', line 20

def dn_attributes
  @dn_attributes
end

#operation_typeDeltaOperationType

include: ‘Undefined’, ‘None’, ‘Add’, ‘Replace’, ‘Update’, ‘Delete’, ‘Obsolete’, ‘DeleteAdd’

Returns:



28
29
30
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_delta.rb', line 28

def operation_type
  @operation_type
end

Class Method Details

.mapperObject

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



35
36
37
38
39
40
41
42
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
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_delta.rb', line 35

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ChangeNotReimportedDelta',
    type: {
      name: 'Composite',
      class_name: 'ChangeNotReimportedDelta',
      model_properties: {
        anchor: {
          client_side_validation: true,
          required: false,
          serialized_name: 'anchor',
          type: {
            name: 'String'
          }
        },
        dn_attributes: {
          client_side_validation: true,
          required: false,
          serialized_name: 'dnAttributes',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'AttributeDeltaElementType',
                type: {
                  name: 'Composite',
                  class_name: 'AttributeDelta'
                }
            }
          }
        },
        attributes: {
          client_side_validation: true,
          required: false,
          serialized_name: 'attributes',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'AttributeDeltaElementType',
                type: {
                  name: 'Composite',
                  class_name: 'AttributeDelta'
                }
            }
          }
        },
        operation_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'operationType',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end