Class: Azure::Storage::Mgmt::V2019_04_01::Models::ActiveDirectoryProperties

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2019-04-01/generated/azure_mgmt_storage/models/active_directory_properties.rb

Overview

Settings properties for Active Directory (AD).

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#azure_storage_sidString

Storage.

Returns:

  • (String)

    Specifies the security identifier (SID) for Azure



33
34
35
# File 'lib/2019-04-01/generated/azure_mgmt_storage/models/active_directory_properties.rb', line 33

def azure_storage_sid
  @azure_storage_sid
end

#domain_guidString

Returns Specifies the domain GUID.

Returns:

  • (String)

    Specifies the domain GUID.



26
27
28
# File 'lib/2019-04-01/generated/azure_mgmt_storage/models/active_directory_properties.rb', line 26

def domain_guid
  @domain_guid
end

#domain_nameString

authoritative for.

Returns:

  • (String)

    Specifies the primary domain that the AD DNS server is



17
18
19
# File 'lib/2019-04-01/generated/azure_mgmt_storage/models/active_directory_properties.rb', line 17

def domain_name
  @domain_name
end

#domain_sidString

Returns Specifies the security identifier (SID).

Returns:

  • (String)

    Specifies the security identifier (SID).



29
30
31
# File 'lib/2019-04-01/generated/azure_mgmt_storage/models/active_directory_properties.rb', line 29

def domain_sid
  @domain_sid
end

#forest_nameString

Returns Specifies the Active Directory forest to get.

Returns:

  • (String)

    Specifies the Active Directory forest to get.



23
24
25
# File 'lib/2019-04-01/generated/azure_mgmt_storage/models/active_directory_properties.rb', line 23

def forest_name
  @forest_name
end

#net_bios_domain_nameString

Returns Specifies the NetBIOS domain name.

Returns:

  • (String)

    Specifies the NetBIOS domain name.



20
21
22
# File 'lib/2019-04-01/generated/azure_mgmt_storage/models/active_directory_properties.rb', line 20

def net_bios_domain_name
  @net_bios_domain_name
end

Class Method Details

.mapperObject

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



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
98
99
100
# File 'lib/2019-04-01/generated/azure_mgmt_storage/models/active_directory_properties.rb', line 40

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ActiveDirectoryProperties',
    type: {
      name: 'Composite',
      class_name: 'ActiveDirectoryProperties',
      model_properties: {
        domain_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'domainName',
          type: {
            name: 'String'
          }
        },
        net_bios_domain_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'netBiosDomainName',
          type: {
            name: 'String'
          }
        },
        forest_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'forestName',
          type: {
            name: 'String'
          }
        },
        domain_guid: {
          client_side_validation: true,
          required: true,
          serialized_name: 'domainGuid',
          type: {
            name: 'String'
          }
        },
        domain_sid: {
          client_side_validation: true,
          required: true,
          serialized_name: 'domainSid',
          type: {
            name: 'String'
          }
        },
        azure_storage_sid: {
          client_side_validation: true,
          required: true,
          serialized_name: 'azureStorageSid',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end