class Azure::Network::Mgmt::V2018_04_01::Models::TrafficAnalyticsConfigurationProperties
Parameters that define the configuration of traffic analytics.
Attributes
enabled[RW]
@return [Boolean] Flag to enable/disable traffic analytics.
workspace_id[RW]
@return [String] The resource guid of the attached workspace
workspace_region[RW]
@return [String] The location of the attached workspace
workspace_resource_id[RW]
@return [String] Resource Id of the attached workspace
Public Class Methods
mapper()
click to toggle source
Mapper for TrafficAnalyticsConfigurationProperties class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-04-01/generated/azure_mgmt_network/models/traffic_analytics_configuration_properties.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TrafficAnalyticsConfigurationProperties', type: { name: 'Composite', class_name: 'TrafficAnalyticsConfigurationProperties', model_properties: { enabled: { client_side_validation: true, required: true, serialized_name: 'enabled', type: { name: 'Boolean' } }, workspace_id: { client_side_validation: true, required: true, serialized_name: 'workspaceId', type: { name: 'String' } }, workspace_region: { client_side_validation: true, required: true, serialized_name: 'workspaceRegion', type: { name: 'String' } }, workspace_resource_id: { client_side_validation: true, required: true, serialized_name: 'workspaceResourceId', type: { name: 'String' } } } } } end