Class: Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::AADCheckRequirements
- Inherits:
-
DataConnectorsCheckRequirements
- Object
- DataConnectorsCheckRequirements
- Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::AADCheckRequirements
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/aadcheck_requirements.rb
Overview
Represents AAD (Azure Active Directory) requirements check request.
Instance Attribute Summary collapse
-
#kind ⇒ Object
Returns the value of attribute kind.
-
#tenant_id ⇒ String
The tenant id to connect to, and get the data from.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AADCheckRequirements class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ AADCheckRequirements
constructor
A new instance of AADCheckRequirements.
Constructor Details
#initialize ⇒ AADCheckRequirements
Returns a new instance of AADCheckRequirements.
16 17 18 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/aadcheck_requirements.rb', line 16 def initialize @kind = "AzureActiveDirectory" end |
Instance Attribute Details
#kind ⇒ Object
Returns the value of attribute kind.
20 21 22 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/aadcheck_requirements.rb', line 20 def kind @kind end |
#tenant_id ⇒ String
Returns The tenant id to connect to, and get the data from.
23 24 25 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/aadcheck_requirements.rb', line 23 def tenant_id @tenant_id end |
Class Method Details
.mapper ⇒ Object
Mapper for AADCheckRequirements class as Ruby Hash. This will be used for serialization/deserialization.
30 31 32 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 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/aadcheck_requirements.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AzureActiveDirectory', type: { name: 'Composite', class_name: 'AADCheckRequirements', model_properties: { kind: { client_side_validation: true, required: true, serialized_name: 'kind', type: { name: 'String' } }, tenant_id: { client_side_validation: true, required: false, serialized_name: 'properties.tenantId', type: { name: 'String' } } } } } end |