Class: Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::TIDataConnector
- Inherits:
-
DataConnector
- Object
- DataConnector
- Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::TIDataConnector
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/tidata_connector.rb
Overview
Data connector to pull threat intelligence data from TIP products.
Instance Attribute Summary collapse
-
#data_types ⇒ TIDataConnectorDataTypes
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 DataConnector
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for TIDataConnector class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ TIDataConnector
constructor
A new instance of TIDataConnector.
Constructor Details
#initialize ⇒ TIDataConnector
Returns a new instance of TIDataConnector.
16 17 18 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/tidata_connector.rb', line 16 def initialize @kind = "ThreatIntelligence" end |
Instance Attribute Details
#data_types ⇒ TIDataConnectorDataTypes
connector.
27 28 29 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/tidata_connector.rb', line 27 def data_types @data_types end |
#kind ⇒ Object
Returns the value of attribute kind.
20 21 22 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/tidata_connector.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/tidata_connector.rb', line 23 def tenant_id @tenant_id end |
Class Method Details
.mapper ⇒ Object
Mapper for TIDataConnector class as Ruby Hash. This will be used for serialization/deserialization.
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 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 |
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/tidata_connector.rb', line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ThreatIntelligence', type: { name: 'Composite', class_name: 'TIDataConnector', 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: 'TIDataConnectorDataTypes' } } } } } end |