Class: Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::ChangeNotReimportedEntry
- Inherits:
-
Object
- Object
- Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::ChangeNotReimportedEntry
- Includes:
- MsRestAzure
- Defined in:
- lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_entry.rb
Overview
The object entry in a change that is not re-imported.
Instance Attribute Summary collapse
-
#anchor ⇒ String
The anchor.
-
#attributes ⇒ Array<AttributeDelta>
The attributes.
-
#dn ⇒ String
The distinguished name.
-
#dn_attributes ⇒ Array<AttributeDelta>
names.
-
#object_classes ⇒ Array<String>
The list of object classes.
-
#parent_anchor ⇒ String
The parent anchor.
-
#primary_object_class ⇒ String
The primary object class.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ChangeNotReimportedEntry class as Ruby Hash.
Instance Attribute Details
#anchor ⇒ String
Returns The anchor.
16 17 18 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_entry.rb', line 16 def anchor @anchor end |
#attributes ⇒ Array<AttributeDelta>
Returns The attributes.
32 33 34 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_entry.rb', line 32 def attributes @attributes end |
#dn ⇒ String
Returns The distinguished name.
35 36 37 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_entry.rb', line 35 def dn @dn end |
#dn_attributes ⇒ Array<AttributeDelta>
names.
29 30 31 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_entry.rb', line 29 def dn_attributes @dn_attributes end |
#object_classes ⇒ Array<String>
Returns The list of object classes.
25 26 27 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_entry.rb', line 25 def object_classes @object_classes end |
#parent_anchor ⇒ String
Returns The parent anchor.
19 20 21 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_entry.rb', line 19 def parent_anchor @parent_anchor end |
#primary_object_class ⇒ String
Returns The primary object class.
22 23 24 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_entry.rb', line 22 def primary_object_class @primary_object_class end |
Class Method Details
.mapper ⇒ Object
Mapper for ChangeNotReimportedEntry class as Ruby Hash. This will be used for serialization/deserialization.
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 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 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/change_not_reimported_entry.rb', line 42 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ChangeNotReimportedEntry', type: { name: 'Composite', class_name: 'ChangeNotReimportedEntry', model_properties: { anchor: { client_side_validation: true, required: false, serialized_name: 'anchor', type: { name: 'String' } }, parent_anchor: { client_side_validation: true, required: false, serialized_name: 'parentAnchor', type: { name: 'String' } }, primary_object_class: { client_side_validation: true, required: false, serialized_name: 'primaryObjectClass', type: { name: 'String' } }, object_classes: { client_side_validation: true, required: false, serialized_name: 'objectClasses', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', 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' } } } }, dn: { client_side_validation: true, required: false, serialized_name: 'dn', type: { name: 'String' } } } } } end |