class Azure::CognitiveServices::LuisAuthoring::V3_0_preview::Models::ApplicationInfoResponse

Response containing the Application Info.

Attributes

active_version[RW]

@return [String] The version ID currently marked as active.

created_date_time[RW]

@return [String] The version's creation timestamp.

culture[RW]

@return [String] The culture of the application. For example, “en-us”.

description[RW]

@return [String] The description of the application.

domain[RW]

@return [String] The domain for the new application. Optional. For example, Comics.

endpoint_hits_count[RW]

@return [Integer] Number of calls made to this endpoint.

endpoints[RW]

@return The Runtime endpoint URL for this model version.

id[RW]

@return The ID (GUID) of the application.

name[RW]

@return [String] The name of the application.

usage_scenario[RW]

@return [String] Defines the scenario for the new application. Optional. For example, IoT.

versions_count[RW]

@return [Integer] Amount of model versions within the application.

Private Class Methods

mapper() click to toggle source

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

# File lib/3.0-preview/generated/azure_cognitiveservices_luisauthoring/models/application_info_response.rb, line 55
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationInfoResponse',
    type: {
      name: 'Composite',
      class_name: 'ApplicationInfoResponse',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'description',
          type: {
            name: 'String'
          }
        },
        culture: {
          client_side_validation: true,
          required: false,
          serialized_name: 'culture',
          type: {
            name: 'String'
          }
        },
        usage_scenario: {
          client_side_validation: true,
          required: false,
          serialized_name: 'usageScenario',
          type: {
            name: 'String'
          }
        },
        domain: {
          client_side_validation: true,
          required: false,
          serialized_name: 'domain',
          type: {
            name: 'String'
          }
        },
        versions_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'versionsCount',
          type: {
            name: 'Number'
          }
        },
        created_date_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'createdDateTime',
          type: {
            name: 'String'
          }
        },
        endpoints: {
          client_side_validation: true,
          required: false,
          serialized_name: 'endpoints',
          type: {
            name: 'Object'
          }
        },
        endpoint_hits_count: {
          client_side_validation: true,
          required: false,
          serialized_name: 'endpointHitsCount',
          type: {
            name: 'Number'
          }
        },
        active_version: {
          client_side_validation: true,
          required: false,
          serialized_name: 'activeVersion',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end