class Azure::ContainerInstance::Mgmt::V2018_06_01::Models::LogAnalytics

Container group log analytics information.

Attributes

workspace_id[RW]

@return [String] The workspace id for log analytics

workspace_key[RW]

@return [String] The workspace key for log analytics

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-06-01/generated/azure_mgmt_container_instance/models/log_analytics.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'LogAnalytics',
    type: {
      name: 'Composite',
      class_name: 'LogAnalytics',
      model_properties: {
        workspace_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'workspaceId',
          type: {
            name: 'String'
          }
        },
        workspace_key: {
          client_side_validation: true,
          required: true,
          serialized_name: 'workspaceKey',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end