azure_sdk 0.22.1 → 0.22.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/azure_sdk/version.rb +1 -1
- data/lib/latest/latest_profile_client.rb +19 -1
- data/lib/latest/modules/luisauthoring_profile_module.rb +485 -0
- data/lib/latest/modules/luisruntime_profile_module.rb +83 -0
- data/lib/latest/modules/network_profile_module.rb +1113 -1105
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 51adb118677a12bfab40a79c96ffbb1fe9f8891f
|
4
|
+
data.tar.gz: 2cf78255c1bf49292eb268dce65d7c823b2bd07e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc6f79a005606ce57a94137d3a9b717b1a419d69a9dd4fc347ddd0c85647bc38483d58afc183822274fa21df16b21dab07577c518dc8edaf057ea34f158228ba
|
7
|
+
data.tar.gz: 2f3431e8eaea7dd0c8710fdf7a866139f87438b9d6353a48ae24770e09611e9db2a6ed852e0eb8282839ce022ae19f65f3ce95e0ee7d8dc418e39b77dc20d6b9
|
data/lib/azure_sdk/version.rb
CHANGED
@@ -82,6 +82,8 @@ require 'latest/modules/entitysearch_profile_module'
|
|
82
82
|
require 'latest/modules/face_profile_module'
|
83
83
|
require 'latest/modules/imagesearch_profile_module'
|
84
84
|
require 'latest/modules/localsearch_profile_module'
|
85
|
+
require 'latest/modules/luisruntime_profile_module'
|
86
|
+
require 'latest/modules/luisauthoring_profile_module'
|
85
87
|
require 'latest/modules/newssearch_profile_module'
|
86
88
|
require 'latest/modules/qnamaker_profile_module'
|
87
89
|
require 'latest/modules/spellcheck_profile_module'
|
@@ -97,7 +99,7 @@ module Azure::Profiles::Latest
|
|
97
99
|
class Client
|
98
100
|
include MsRestAzure::Common::Configurable
|
99
101
|
|
100
|
-
attr_reader :analysis_services, :api_management, :authorization, :automation, :batch, :billing, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :customer_insights, :data_lake_analytics, :data_lake_store, :data_migration, :dev_spaces, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :hdinsight, :graph_rbac, :iot_central, :iot_hub, :key_vault, :kusto, :labservices, :links, :locks, :logic, :machine_learning, :machine_learning_services, :managed_applications, :marketplace_ordering, :media_services, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :policy_insights, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :security, :service_bus, :service_fabric, :signalr, :sql, :sqlvirtualmachine, :stor_simple8000_series, :storage, :stream_analytics, :subscriptions, :traffic_manager, :web, :autosuggest, :customimagesearch, :computer_vision, :content_moderator, :custom_search, :customvisiontraining, :customvisionprediction, :entity_search, :face, :image_search, :local_search, :news_search, :qnamaker, :spell_check, :text_analytics, :video_search, :web_search, :visual_search
|
102
|
+
attr_reader :analysis_services, :api_management, :authorization, :automation, :batch, :billing, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :customer_insights, :data_lake_analytics, :data_lake_store, :data_migration, :dev_spaces, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :hdinsight, :graph_rbac, :iot_central, :iot_hub, :key_vault, :kusto, :labservices, :links, :locks, :logic, :machine_learning, :machine_learning_services, :managed_applications, :marketplace_ordering, :media_services, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :policy_insights, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :security, :service_bus, :service_fabric, :signalr, :sql, :sqlvirtualmachine, :stor_simple8000_series, :storage, :stream_analytics, :subscriptions, :traffic_manager, :web, :autosuggest, :customimagesearch, :computer_vision, :content_moderator, :custom_search, :customvisiontraining, :customvisionprediction, :entity_search, :face, :image_search, :local_search, :luis_runtime, :luis_authoring, :news_search, :qnamaker, :spell_check, :text_analytics, :video_search, :web_search, :visual_search
|
101
103
|
|
102
104
|
#
|
103
105
|
# Initializes a new instance of the Client class.
|
@@ -208,6 +210,8 @@ module Azure::Profiles::Latest
|
|
208
210
|
@face = FaceAdapter.new(self, base_url, sdk_options)
|
209
211
|
@image_search = ImageSearchAdapter.new(self, base_url, sdk_options)
|
210
212
|
@local_search = LocalSearchAdapter.new(self, base_url, sdk_options)
|
213
|
+
@luis_runtime = LuisRuntimeAdapter.new(self, base_url, sdk_options)
|
214
|
+
@luis_authoring = LuisAuthoringAdapter.new(self, base_url, sdk_options)
|
211
215
|
@news_search = NewsSearchAdapter.new(self, base_url, sdk_options)
|
212
216
|
@qnamaker = QnamakerAdapter.new(self, base_url, sdk_options)
|
213
217
|
@spell_check = SpellCheckAdapter.new(self, base_url, sdk_options)
|
@@ -840,6 +844,20 @@ module Azure::Profiles::Latest
|
|
840
844
|
end
|
841
845
|
end
|
842
846
|
|
847
|
+
class LuisRuntimeAdapter < Azure::Profiles::Latest::LuisRuntime::LuisRuntimeDataClass
|
848
|
+
|
849
|
+
def initialize(context, base_url, options)
|
850
|
+
super(context)
|
851
|
+
end
|
852
|
+
end
|
853
|
+
|
854
|
+
class LuisAuthoringAdapter < Azure::Profiles::Latest::LuisAuthoring::LuisAuthoringDataClass
|
855
|
+
|
856
|
+
def initialize(context, base_url, options)
|
857
|
+
super(context)
|
858
|
+
end
|
859
|
+
end
|
860
|
+
|
843
861
|
class NewsSearchAdapter < Azure::Profiles::Latest::NewsSearch::NewsSearchDataClass
|
844
862
|
|
845
863
|
def initialize(context, base_url, options)
|
@@ -0,0 +1,485 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for license information.
|
4
|
+
|
5
|
+
require 'azure_cognitiveservices_luisauthoring'
|
6
|
+
|
7
|
+
module Azure::Profiles::Latest
|
8
|
+
module LuisAuthoring
|
9
|
+
Features = Azure::CognitiveServices::LuisAuthoring::V2_0::Features
|
10
|
+
Examples = Azure::CognitiveServices::LuisAuthoring::V2_0::Examples
|
11
|
+
Model = Azure::CognitiveServices::LuisAuthoring::V2_0::Model
|
12
|
+
Apps = Azure::CognitiveServices::LuisAuthoring::V2_0::Apps
|
13
|
+
Versions = Azure::CognitiveServices::LuisAuthoring::V2_0::Versions
|
14
|
+
Train = Azure::CognitiveServices::LuisAuthoring::V2_0::Train
|
15
|
+
Permissions = Azure::CognitiveServices::LuisAuthoring::V2_0::Permissions
|
16
|
+
Pattern = Azure::CognitiveServices::LuisAuthoring::V2_0::Pattern
|
17
|
+
Settings = Azure::CognitiveServices::LuisAuthoring::V2_0::Settings
|
18
|
+
AzureAccounts = Azure::CognitiveServices::LuisAuthoring::V2_0::AzureAccounts
|
19
|
+
|
20
|
+
module Models
|
21
|
+
ChildEntity = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ChildEntity
|
22
|
+
ExplicitListItem = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ExplicitListItem
|
23
|
+
ApplicationCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationCreateObject
|
24
|
+
ModelInfoResponse = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ModelInfoResponse
|
25
|
+
PrebuiltDomainCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltDomainCreateObject
|
26
|
+
HierarchicalEntityModel = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::HierarchicalEntityModel
|
27
|
+
HierarchicalEntityExtractor = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::HierarchicalEntityExtractor
|
28
|
+
JSONEntity = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::JSONEntity
|
29
|
+
CompositeEntityExtractor = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::CompositeEntityExtractor
|
30
|
+
PublishSettingUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PublishSettingUpdateObject
|
31
|
+
ClosedListEntityExtractor = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ClosedListEntityExtractor
|
32
|
+
PhraselistCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PhraselistCreateObject
|
33
|
+
PrebuiltEntityExtractor = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltEntityExtractor
|
34
|
+
LabelTextObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::LabelTextObject
|
35
|
+
ApplicationUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationUpdateObject
|
36
|
+
CompositeChildModelCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::CompositeChildModelCreateObject
|
37
|
+
PatternUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternUpdateObject
|
38
|
+
CustomPrebuiltModel = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::CustomPrebuiltModel
|
39
|
+
WordListObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::WordListObject
|
40
|
+
HierarchicalChildModelCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::HierarchicalChildModelCreateObject
|
41
|
+
JSONModelFeature = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::JSONModelFeature
|
42
|
+
EntityExtractor = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityExtractor
|
43
|
+
PatternCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternCreateObject
|
44
|
+
HierarchicalChildModelUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::HierarchicalChildModelUpdateObject
|
45
|
+
JSONUtterance = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::JSONUtterance
|
46
|
+
AzureAccountInfoObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::AzureAccountInfoObject
|
47
|
+
ClosedListModelUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ClosedListModelUpdateObject
|
48
|
+
FeaturesResponseObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::FeaturesResponseObject
|
49
|
+
VersionInfo = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::VersionInfo
|
50
|
+
FeatureInfoObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::FeatureInfoObject
|
51
|
+
PhraselistUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PhraselistUpdateObject
|
52
|
+
LabelExampleResponse = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::LabelExampleResponse
|
53
|
+
HierarchicalModel = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::HierarchicalModel
|
54
|
+
OperationStatus = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::OperationStatus
|
55
|
+
PatternAny = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternAny
|
56
|
+
BatchLabelExample = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::BatchLabelExample
|
57
|
+
PrebuiltEntity = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltEntity
|
58
|
+
ApplicationInfoResponse = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationInfoResponse
|
59
|
+
LuisApp = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::LuisApp
|
60
|
+
AppVersionSettingObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::AppVersionSettingObject
|
61
|
+
IntentPrediction = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::IntentPrediction
|
62
|
+
EndpointInfo = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EndpointInfo
|
63
|
+
LabeledUtterance = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::LabeledUtterance
|
64
|
+
AvailableCulture = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::AvailableCulture
|
65
|
+
EntitiesSuggestionExample = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntitiesSuggestionExample
|
66
|
+
ApplicationSettings = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationSettings
|
67
|
+
ModelInfo = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ModelInfo
|
68
|
+
PublishSettings = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PublishSettings
|
69
|
+
EntityLabelObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityLabelObject
|
70
|
+
AvailablePrebuiltEntityModel = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::AvailablePrebuiltEntityModel
|
71
|
+
PrebuiltDomainModelCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltDomainModelCreateObject
|
72
|
+
EnqueueTrainingResponse = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EnqueueTrainingResponse
|
73
|
+
ApplicationSettingUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationSettingUpdateObject
|
74
|
+
ModelTrainingDetails = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ModelTrainingDetails
|
75
|
+
SubClosedList = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::SubClosedList
|
76
|
+
ModelTrainingInfo = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ModelTrainingInfo
|
77
|
+
ClosedList = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ClosedList
|
78
|
+
UserAccessList = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::UserAccessList
|
79
|
+
ModelCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ModelCreateObject
|
80
|
+
UserCollaborator = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::UserCollaborator
|
81
|
+
ModelUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ModelUpdateObject
|
82
|
+
CollaboratorsArray = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::CollaboratorsArray
|
83
|
+
TaskUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::TaskUpdateObject
|
84
|
+
ErrorResponse = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ErrorResponse
|
85
|
+
ApplicationPublishObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationPublishObject
|
86
|
+
OperationError = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::OperationError
|
87
|
+
PatternRule = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternRule
|
88
|
+
PrebuiltDomainItem = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltDomainItem
|
89
|
+
EntityPrediction = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityPrediction
|
90
|
+
PrebuiltDomain = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltDomain
|
91
|
+
PersonalAssistantsResponse = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PersonalAssistantsResponse
|
92
|
+
EntityRoleCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityRoleCreateObject
|
93
|
+
PrebuiltDomainCreateBaseObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltDomainCreateBaseObject
|
94
|
+
RegexModelCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::RegexModelCreateObject
|
95
|
+
ExampleLabelObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ExampleLabelObject
|
96
|
+
PatternAnyModelCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternAnyModelCreateObject
|
97
|
+
ClosedListModelPatchObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ClosedListModelPatchObject
|
98
|
+
ExplicitListItemCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ExplicitListItemCreateObject
|
99
|
+
ClosedListModelCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ClosedListModelCreateObject
|
100
|
+
RegexModelUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::RegexModelUpdateObject
|
101
|
+
RegexEntity = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::RegexEntity
|
102
|
+
PatternAnyModelUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternAnyModelUpdateObject
|
103
|
+
IntentsSuggestionExample = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::IntentsSuggestionExample
|
104
|
+
EntityRoleUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityRoleUpdateObject
|
105
|
+
CompositeEntityModel = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::CompositeEntityModel
|
106
|
+
ExplicitListItemUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ExplicitListItemUpdateObject
|
107
|
+
WordListBaseUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::WordListBaseUpdateObject
|
108
|
+
PatternRuleCreateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternRuleCreateObject
|
109
|
+
EntityLabel = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityLabel
|
110
|
+
PatternRuleUpdateObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternRuleUpdateObject
|
111
|
+
JSONRegexFeature = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::JSONRegexFeature
|
112
|
+
RegexEntityExtractor = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::RegexEntityExtractor
|
113
|
+
EntityRole = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityRole
|
114
|
+
PatternAnyEntityExtractor = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternAnyEntityExtractor
|
115
|
+
PrebuiltDomainObject = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltDomainObject
|
116
|
+
PatternRuleInfo = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternRuleInfo
|
117
|
+
SubClosedListResponse = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::SubClosedListResponse
|
118
|
+
EntityModelInfo = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityModelInfo
|
119
|
+
HierarchicalChildEntity = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::HierarchicalChildEntity
|
120
|
+
IntentClassifier = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::IntentClassifier
|
121
|
+
PhraseListFeatureInfo = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PhraseListFeatureInfo
|
122
|
+
PatternFeatureInfo = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternFeatureInfo
|
123
|
+
ProductionOrStagingEndpointInfo = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ProductionOrStagingEndpointInfo
|
124
|
+
TrainingStatus = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::TrainingStatus
|
125
|
+
OperationStatusType = Azure::CognitiveServices::LuisAuthoring::V2_0::Models::OperationStatusType
|
126
|
+
end
|
127
|
+
|
128
|
+
class LuisAuthoringDataClass
|
129
|
+
attr_reader :features, :examples, :model, :apps, :versions, :train, :permissions, :pattern, :settings, :azure_accounts, :configurable, :base_url, :options, :model_classes
|
130
|
+
|
131
|
+
def initialize(configurable, base_url=nil, options=nil)
|
132
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
133
|
+
|
134
|
+
@client_0 = Azure::CognitiveServices::LuisAuthoring::V2_0::LuisAuthoringClient.new(configurable.credentials, options)
|
135
|
+
if(@client_0.respond_to?(:subscription_id))
|
136
|
+
@client_0.subscription_id = configurable.subscription_id
|
137
|
+
end
|
138
|
+
add_telemetry(@client_0)
|
139
|
+
@features = @client_0.features
|
140
|
+
@examples = @client_0.examples
|
141
|
+
@model = @client_0.model
|
142
|
+
@apps = @client_0.apps
|
143
|
+
@versions = @client_0.versions
|
144
|
+
@train = @client_0.train
|
145
|
+
@permissions = @client_0.permissions
|
146
|
+
@pattern = @client_0.pattern
|
147
|
+
@settings = @client_0.settings
|
148
|
+
@azure_accounts = @client_0.azure_accounts
|
149
|
+
|
150
|
+
@model_classes = ModelClasses.new
|
151
|
+
end
|
152
|
+
|
153
|
+
def add_telemetry(client)
|
154
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/LuisAuthoring"
|
155
|
+
client.add_user_agent_information(profile_information)
|
156
|
+
end
|
157
|
+
|
158
|
+
def method_missing(method, *args)
|
159
|
+
if @client_0.respond_to?method
|
160
|
+
@client_0.send(method, *args)
|
161
|
+
else
|
162
|
+
super
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
class ModelClasses
|
167
|
+
def child_entity
|
168
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ChildEntity
|
169
|
+
end
|
170
|
+
def explicit_list_item
|
171
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ExplicitListItem
|
172
|
+
end
|
173
|
+
def application_create_object
|
174
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationCreateObject
|
175
|
+
end
|
176
|
+
def model_info_response
|
177
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ModelInfoResponse
|
178
|
+
end
|
179
|
+
def prebuilt_domain_create_object
|
180
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltDomainCreateObject
|
181
|
+
end
|
182
|
+
def hierarchical_entity_model
|
183
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::HierarchicalEntityModel
|
184
|
+
end
|
185
|
+
def hierarchical_entity_extractor
|
186
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::HierarchicalEntityExtractor
|
187
|
+
end
|
188
|
+
def jsonentity
|
189
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::JSONEntity
|
190
|
+
end
|
191
|
+
def composite_entity_extractor
|
192
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::CompositeEntityExtractor
|
193
|
+
end
|
194
|
+
def publish_setting_update_object
|
195
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PublishSettingUpdateObject
|
196
|
+
end
|
197
|
+
def closed_list_entity_extractor
|
198
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ClosedListEntityExtractor
|
199
|
+
end
|
200
|
+
def phraselist_create_object
|
201
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PhraselistCreateObject
|
202
|
+
end
|
203
|
+
def prebuilt_entity_extractor
|
204
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltEntityExtractor
|
205
|
+
end
|
206
|
+
def label_text_object
|
207
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::LabelTextObject
|
208
|
+
end
|
209
|
+
def application_update_object
|
210
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationUpdateObject
|
211
|
+
end
|
212
|
+
def composite_child_model_create_object
|
213
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::CompositeChildModelCreateObject
|
214
|
+
end
|
215
|
+
def pattern_update_object
|
216
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternUpdateObject
|
217
|
+
end
|
218
|
+
def custom_prebuilt_model
|
219
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::CustomPrebuiltModel
|
220
|
+
end
|
221
|
+
def word_list_object
|
222
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::WordListObject
|
223
|
+
end
|
224
|
+
def hierarchical_child_model_create_object
|
225
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::HierarchicalChildModelCreateObject
|
226
|
+
end
|
227
|
+
def jsonmodel_feature
|
228
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::JSONModelFeature
|
229
|
+
end
|
230
|
+
def entity_extractor
|
231
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityExtractor
|
232
|
+
end
|
233
|
+
def pattern_create_object
|
234
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternCreateObject
|
235
|
+
end
|
236
|
+
def hierarchical_child_model_update_object
|
237
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::HierarchicalChildModelUpdateObject
|
238
|
+
end
|
239
|
+
def jsonutterance
|
240
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::JSONUtterance
|
241
|
+
end
|
242
|
+
def azure_account_info_object
|
243
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::AzureAccountInfoObject
|
244
|
+
end
|
245
|
+
def closed_list_model_update_object
|
246
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ClosedListModelUpdateObject
|
247
|
+
end
|
248
|
+
def features_response_object
|
249
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::FeaturesResponseObject
|
250
|
+
end
|
251
|
+
def version_info
|
252
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::VersionInfo
|
253
|
+
end
|
254
|
+
def feature_info_object
|
255
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::FeatureInfoObject
|
256
|
+
end
|
257
|
+
def phraselist_update_object
|
258
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PhraselistUpdateObject
|
259
|
+
end
|
260
|
+
def label_example_response
|
261
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::LabelExampleResponse
|
262
|
+
end
|
263
|
+
def hierarchical_model
|
264
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::HierarchicalModel
|
265
|
+
end
|
266
|
+
def operation_status
|
267
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::OperationStatus
|
268
|
+
end
|
269
|
+
def pattern_any
|
270
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternAny
|
271
|
+
end
|
272
|
+
def batch_label_example
|
273
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::BatchLabelExample
|
274
|
+
end
|
275
|
+
def prebuilt_entity
|
276
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltEntity
|
277
|
+
end
|
278
|
+
def application_info_response
|
279
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationInfoResponse
|
280
|
+
end
|
281
|
+
def luis_app
|
282
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::LuisApp
|
283
|
+
end
|
284
|
+
def app_version_setting_object
|
285
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::AppVersionSettingObject
|
286
|
+
end
|
287
|
+
def intent_prediction
|
288
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::IntentPrediction
|
289
|
+
end
|
290
|
+
def endpoint_info
|
291
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EndpointInfo
|
292
|
+
end
|
293
|
+
def labeled_utterance
|
294
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::LabeledUtterance
|
295
|
+
end
|
296
|
+
def available_culture
|
297
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::AvailableCulture
|
298
|
+
end
|
299
|
+
def entities_suggestion_example
|
300
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntitiesSuggestionExample
|
301
|
+
end
|
302
|
+
def application_settings
|
303
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationSettings
|
304
|
+
end
|
305
|
+
def model_info
|
306
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ModelInfo
|
307
|
+
end
|
308
|
+
def publish_settings
|
309
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PublishSettings
|
310
|
+
end
|
311
|
+
def entity_label_object
|
312
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityLabelObject
|
313
|
+
end
|
314
|
+
def available_prebuilt_entity_model
|
315
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::AvailablePrebuiltEntityModel
|
316
|
+
end
|
317
|
+
def prebuilt_domain_model_create_object
|
318
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltDomainModelCreateObject
|
319
|
+
end
|
320
|
+
def enqueue_training_response
|
321
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EnqueueTrainingResponse
|
322
|
+
end
|
323
|
+
def application_setting_update_object
|
324
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationSettingUpdateObject
|
325
|
+
end
|
326
|
+
def model_training_details
|
327
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ModelTrainingDetails
|
328
|
+
end
|
329
|
+
def sub_closed_list
|
330
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::SubClosedList
|
331
|
+
end
|
332
|
+
def model_training_info
|
333
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ModelTrainingInfo
|
334
|
+
end
|
335
|
+
def closed_list
|
336
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ClosedList
|
337
|
+
end
|
338
|
+
def user_access_list
|
339
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::UserAccessList
|
340
|
+
end
|
341
|
+
def model_create_object
|
342
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ModelCreateObject
|
343
|
+
end
|
344
|
+
def user_collaborator
|
345
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::UserCollaborator
|
346
|
+
end
|
347
|
+
def model_update_object
|
348
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ModelUpdateObject
|
349
|
+
end
|
350
|
+
def collaborators_array
|
351
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::CollaboratorsArray
|
352
|
+
end
|
353
|
+
def task_update_object
|
354
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::TaskUpdateObject
|
355
|
+
end
|
356
|
+
def error_response
|
357
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ErrorResponse
|
358
|
+
end
|
359
|
+
def application_publish_object
|
360
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ApplicationPublishObject
|
361
|
+
end
|
362
|
+
def operation_error
|
363
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::OperationError
|
364
|
+
end
|
365
|
+
def pattern_rule
|
366
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternRule
|
367
|
+
end
|
368
|
+
def prebuilt_domain_item
|
369
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltDomainItem
|
370
|
+
end
|
371
|
+
def entity_prediction
|
372
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityPrediction
|
373
|
+
end
|
374
|
+
def prebuilt_domain
|
375
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltDomain
|
376
|
+
end
|
377
|
+
def personal_assistants_response
|
378
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PersonalAssistantsResponse
|
379
|
+
end
|
380
|
+
def entity_role_create_object
|
381
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityRoleCreateObject
|
382
|
+
end
|
383
|
+
def prebuilt_domain_create_base_object
|
384
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltDomainCreateBaseObject
|
385
|
+
end
|
386
|
+
def regex_model_create_object
|
387
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::RegexModelCreateObject
|
388
|
+
end
|
389
|
+
def example_label_object
|
390
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ExampleLabelObject
|
391
|
+
end
|
392
|
+
def pattern_any_model_create_object
|
393
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternAnyModelCreateObject
|
394
|
+
end
|
395
|
+
def closed_list_model_patch_object
|
396
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ClosedListModelPatchObject
|
397
|
+
end
|
398
|
+
def explicit_list_item_create_object
|
399
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ExplicitListItemCreateObject
|
400
|
+
end
|
401
|
+
def closed_list_model_create_object
|
402
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ClosedListModelCreateObject
|
403
|
+
end
|
404
|
+
def regex_model_update_object
|
405
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::RegexModelUpdateObject
|
406
|
+
end
|
407
|
+
def regex_entity
|
408
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::RegexEntity
|
409
|
+
end
|
410
|
+
def pattern_any_model_update_object
|
411
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternAnyModelUpdateObject
|
412
|
+
end
|
413
|
+
def intents_suggestion_example
|
414
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::IntentsSuggestionExample
|
415
|
+
end
|
416
|
+
def entity_role_update_object
|
417
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityRoleUpdateObject
|
418
|
+
end
|
419
|
+
def composite_entity_model
|
420
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::CompositeEntityModel
|
421
|
+
end
|
422
|
+
def explicit_list_item_update_object
|
423
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ExplicitListItemUpdateObject
|
424
|
+
end
|
425
|
+
def word_list_base_update_object
|
426
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::WordListBaseUpdateObject
|
427
|
+
end
|
428
|
+
def pattern_rule_create_object
|
429
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternRuleCreateObject
|
430
|
+
end
|
431
|
+
def entity_label
|
432
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityLabel
|
433
|
+
end
|
434
|
+
def pattern_rule_update_object
|
435
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternRuleUpdateObject
|
436
|
+
end
|
437
|
+
def jsonregex_feature
|
438
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::JSONRegexFeature
|
439
|
+
end
|
440
|
+
def regex_entity_extractor
|
441
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::RegexEntityExtractor
|
442
|
+
end
|
443
|
+
def entity_role
|
444
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityRole
|
445
|
+
end
|
446
|
+
def pattern_any_entity_extractor
|
447
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternAnyEntityExtractor
|
448
|
+
end
|
449
|
+
def prebuilt_domain_object
|
450
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PrebuiltDomainObject
|
451
|
+
end
|
452
|
+
def pattern_rule_info
|
453
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternRuleInfo
|
454
|
+
end
|
455
|
+
def sub_closed_list_response
|
456
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::SubClosedListResponse
|
457
|
+
end
|
458
|
+
def entity_model_info
|
459
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::EntityModelInfo
|
460
|
+
end
|
461
|
+
def hierarchical_child_entity
|
462
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::HierarchicalChildEntity
|
463
|
+
end
|
464
|
+
def intent_classifier
|
465
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::IntentClassifier
|
466
|
+
end
|
467
|
+
def phrase_list_feature_info
|
468
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PhraseListFeatureInfo
|
469
|
+
end
|
470
|
+
def pattern_feature_info
|
471
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::PatternFeatureInfo
|
472
|
+
end
|
473
|
+
def production_or_staging_endpoint_info
|
474
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::ProductionOrStagingEndpointInfo
|
475
|
+
end
|
476
|
+
def training_status
|
477
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::TrainingStatus
|
478
|
+
end
|
479
|
+
def operation_status_type
|
480
|
+
Azure::CognitiveServices::LuisAuthoring::V2_0::Models::OperationStatusType
|
481
|
+
end
|
482
|
+
end
|
483
|
+
end
|
484
|
+
end
|
485
|
+
end
|