class Azure::Network::Mgmt::V2018_12_01::Models::LogSpecification

Description of logging specification.

Attributes

blob_duration[RW]

@return [String] Duration of the blob.

display_name[RW]

@return [String] The display name of the specification.

name[RW]

@return [String] The name of the specification.

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-12-01/generated/azure_mgmt_network/models/log_specification.rb, line 29
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'LogSpecification',
    type: {
      name: 'Composite',
      class_name: 'LogSpecification',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        display_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'displayName',
          type: {
            name: 'String'
          }
        },
        blob_duration: {
          client_side_validation: true,
          required: false,
          serialized_name: 'blobDuration',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end