class Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::TiTaxiiCheckRequirements

Threat Intelligence TAXII data connector check requirements

Attributes

kind[RW]
tenant_id[RW]

@return [String] The tenant id to connect to, and get the data from.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/ti_taxii_check_requirements.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ThreatIntelligenceTaxii',
    type: {
      name: 'Composite',
      class_name: 'TiTaxiiCheckRequirements',
      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
new() click to toggle source
# File lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/ti_taxii_check_requirements.rb, line 16
def initialize
  @kind = "ThreatIntelligenceTaxii"
end