Class: Azure::Hdinsight::Mgmt::V2015_03_01_preview::Models::SecurityProfile
- Inherits:
-
Object
- Object
- Azure::Hdinsight::Mgmt::V2015_03_01_preview::Models::SecurityProfile
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/security_profile.rb
Overview
The security profile which contains Ssh public key for the HDInsight cluster.
Instance Attribute Summary collapse
-
#aadds_resource_id ⇒ String
Domain Service.
-
#cluster_users_group_dns ⇒ Array<String>
user groups.
-
#directory_type ⇒ DirectoryType
‘ActiveDirectory’.
-
#domain ⇒ String
The organization’s active directory domain.
-
#domain_user_password ⇒ String
The domain admin password.
-
#domain_username ⇒ String
privileges on the cluster.
-
#ldaps_urls ⇒ Array<String>
Active Directory.
-
#msi_resource_id ⇒ String
and create cluster-related artifacts in the user’s AADDS.
-
#organizational_unit_dn ⇒ String
place the cluster and service accounts.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SecurityProfile class as Ruby Hash.
Instance Attribute Details
#aadds_resource_id ⇒ String
Domain Service.
44 45 46 |
# File 'lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/security_profile.rb', line 44 def aadds_resource_id @aadds_resource_id end |
#cluster_users_group_dns ⇒ Array<String>
user groups
40 41 42 |
# File 'lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/security_profile.rb', line 40 def cluster_users_group_dns @cluster_users_group_dns end |
#directory_type ⇒ DirectoryType
‘ActiveDirectory’
18 19 20 |
# File 'lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/security_profile.rb', line 18 def directory_type @directory_type end |
#domain ⇒ String
Returns The organization’s active directory domain.
21 22 23 |
# File 'lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/security_profile.rb', line 21 def domain @domain end |
#domain_user_password ⇒ String
Returns The domain admin password.
36 37 38 |
# File 'lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/security_profile.rb', line 36 def domain_user_password @domain_user_password end |
#domain_username ⇒ String
privileges on the cluster.
33 34 35 |
# File 'lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/security_profile.rb', line 33 def domain_username @domain_username end |
#ldaps_urls ⇒ Array<String>
Active Directory.
29 30 31 |
# File 'lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/security_profile.rb', line 29 def ldaps_urls @ldaps_urls end |
#msi_resource_id ⇒ String
and create cluster-related artifacts in the user’s AADDS.
48 49 50 |
# File 'lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/security_profile.rb', line 48 def msi_resource_id @msi_resource_id end |
#organizational_unit_dn ⇒ String
place the cluster and service accounts.
25 26 27 |
# File 'lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/security_profile.rb', line 25 def organizational_unit_dn @organizational_unit_dn end |
Class Method Details
.mapper ⇒ Object
Mapper for SecurityProfile class as Ruby Hash. This will be used for serialization/deserialization.
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 154 155 156 |
# File 'lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/models/security_profile.rb', line 55 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SecurityProfile', type: { name: 'Composite', class_name: 'SecurityProfile', model_properties: { directory_type: { client_side_validation: true, required: false, serialized_name: 'directoryType', type: { name: 'Enum', module: 'DirectoryType' } }, domain: { client_side_validation: true, required: false, serialized_name: 'domain', type: { name: 'String' } }, organizational_unit_dn: { client_side_validation: true, required: false, serialized_name: 'organizationalUnitDN', type: { name: 'String' } }, ldaps_urls: { client_side_validation: true, required: false, serialized_name: 'ldapsUrls', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, domain_username: { client_side_validation: true, required: false, serialized_name: 'domainUsername', type: { name: 'String' } }, domain_user_password: { client_side_validation: true, required: false, serialized_name: 'domainUserPassword', type: { name: 'String' } }, cluster_users_group_dns: { client_side_validation: true, required: false, serialized_name: 'clusterUsersGroupDNs', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, aadds_resource_id: { client_side_validation: true, required: false, serialized_name: 'aaddsResourceId', type: { name: 'String' } }, msi_resource_id: { client_side_validation: true, required: false, serialized_name: 'msiResourceId', type: { name: 'String' } } } } } end |