class Azure::Monitor::Mgmt::V2015_05_01::Models::ApplicationInsightsComponentAPIKeyListResult

Describes the list of API Keys of an Application Insights Component.

Attributes

value[RW]

@return [Array<ApplicationInsightsComponentAPIKey>] List of API Key definitions.

Public Class Methods

mapper() click to toggle source

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

# File lib/2015-05-01/generated/azure_mgmt_monitor/models/application_insights_component_apikey_list_result.rb, line 25
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationInsightsComponentAPIKeyListResult',
    type: {
      name: 'Composite',
      class_name: 'ApplicationInsightsComponentAPIKeyListResult',
      model_properties: {
        value: {
          client_side_validation: true,
          required: true,
          serialized_name: 'value',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ApplicationInsightsComponentAPIKeyElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ApplicationInsightsComponentAPIKey'
                }
            }
          }
        }
      }
    }
  }
end