class Azure::Monitor::Mgmt::V2015_05_01::Models::ApplicationInsightsComponentWebTestLocation

Properties that define a web test location available to an Application Insights Component.

Attributes

display_name[RW]

@return [String] The display name of the web test location.

tag[RW]

@return [String] Internally defined geographic location tag.

Public Class Methods

mapper() click to toggle source

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

# File lib/2015-05-01/generated/azure_mgmt_monitor/models/application_insights_component_web_test_location.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationInsightsComponentWebTestLocation',
    type: {
      name: 'Composite',
      class_name: 'ApplicationInsightsComponentWebTestLocation',
      model_properties: {
        display_name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'DisplayName',
          type: {
            name: 'String'
          }
        },
        tag: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'Tag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end