Class: Azure::ARM::Graph::Models::Domain
- Inherits:
-
Object
- Object
- Azure::ARM::Graph::Models::Domain
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_graph/models/domain.rb
Overview
Active Directory Domain information.
Instance Attribute Summary collapse
-
#authentication_type ⇒ String
The type of the authentication into the domain.
-
#is_default ⇒ Boolean
If this is the default domain in the tenant.
-
#is_verified ⇒ Boolean
If this domain’s ownership is verified.
-
#name ⇒ String
The domain name.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Domain class as Ruby Hash.
Instance Attribute Details
#authentication_type ⇒ String
Returns the type of the authentication into the domain.
17 18 19 |
# File 'lib/generated/azure_mgmt_graph/models/domain.rb', line 17 def authentication_type @authentication_type end |
#is_default ⇒ Boolean
Returns if this is the default domain in the tenant.
20 21 22 |
# File 'lib/generated/azure_mgmt_graph/models/domain.rb', line 20 def is_default @is_default end |
#is_verified ⇒ Boolean
Returns if this domain’s ownership is verified.
23 24 25 |
# File 'lib/generated/azure_mgmt_graph/models/domain.rb', line 23 def is_verified @is_verified end |
#name ⇒ String
Returns the domain name.
26 27 28 |
# File 'lib/generated/azure_mgmt_graph/models/domain.rb', line 26 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for Domain class as Ruby Hash. This will be used for serialization/deserialization.
33 34 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 |
# File 'lib/generated/azure_mgmt_graph/models/domain.rb', line 33 def self.mapper() { required: false, serialized_name: 'Domain', type: { name: 'Composite', class_name: 'Domain', model_properties: { authentication_type: { required: false, read_only: true, serialized_name: 'authenticationType', type: { name: 'String' } }, is_default: { required: false, read_only: true, serialized_name: 'isDefault', type: { name: 'Boolean' } }, is_verified: { required: false, read_only: true, serialized_name: 'isVerified', type: { name: 'Boolean' } }, name: { required: true, serialized_name: 'name', type: { name: 'String' } } } } } end |