Class: Azure::SecurityInsights::Mgmt::V2020_01_01::Models::MDATPDataConnector
- Inherits:
-
DataConnector
- Object
- ResourceWithEtag
- DataConnector
- Azure::SecurityInsights::Mgmt::V2020_01_01::Models::MDATPDataConnector
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-01-01/generated/azure_mgmt_security_insights/models/mdatpdata_connector.rb
Overview
Represents MDATP (Microsoft Defender Advanced Threat Protection) data connector.
Instance Attribute Summary collapse
-
#data_types ⇒ AlertsDataTypeOfDataConnector
the connector.
-
#kind ⇒ Object
Returns the value of attribute kind.
-
#tenant_id ⇒ String
The tenant id to connect to, and get the data from.
Attributes inherited from ResourceWithEtag
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MDATPDataConnector class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ MDATPDataConnector
constructor
A new instance of MDATPDataConnector.
Constructor Details
#initialize ⇒ MDATPDataConnector
Returns a new instance of MDATPDataConnector.
17 18 19 |
# File 'lib/2020-01-01/generated/azure_mgmt_security_insights/models/mdatpdata_connector.rb', line 17 def initialize @kind = "MicrosoftDefenderAdvancedThreatProtection" end |
Instance Attribute Details
#data_types ⇒ AlertsDataTypeOfDataConnector
the connector.
28 29 30 |
# File 'lib/2020-01-01/generated/azure_mgmt_security_insights/models/mdatpdata_connector.rb', line 28 def data_types @data_types end |
#kind ⇒ Object
Returns the value of attribute kind.
21 22 23 |
# File 'lib/2020-01-01/generated/azure_mgmt_security_insights/models/mdatpdata_connector.rb', line 21 def kind @kind end |
#tenant_id ⇒ String
Returns The tenant id to connect to, and get the data from.
24 25 26 |
# File 'lib/2020-01-01/generated/azure_mgmt_security_insights/models/mdatpdata_connector.rb', line 24 def tenant_id @tenant_id end |
Class Method Details
.mapper ⇒ Object
Mapper for MDATPDataConnector class as Ruby Hash. This will be used for serialization/deserialization.
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 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 |
# File 'lib/2020-01-01/generated/azure_mgmt_security_insights/models/mdatpdata_connector.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MicrosoftDefenderAdvancedThreatProtection', type: { name: 'Composite', class_name: 'MDATPDataConnector', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, etag: { client_side_validation: true, required: false, serialized_name: 'etag', type: { name: 'String' } }, 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' } }, data_types: { client_side_validation: true, required: false, serialized_name: 'properties.dataTypes', type: { name: 'Composite', class_name: 'AlertsDataTypeOfDataConnector' } } } } } end |