azure_mgmt_stream_analytics 0.15.2 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/2016-03-01/generated/azure_mgmt_stream_analytics.rb +15 -15
- data/lib/2016-03-01/generated/azure_mgmt_stream_analytics/functions.rb +55 -55
- data/lib/2016-03-01/generated/azure_mgmt_stream_analytics/inputs.rb +49 -48
- data/lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/function_retrieve_default_definition_parameters.rb +1 -1
- data/lib/2016-03-01/generated/azure_mgmt_stream_analytics/operations.rb +15 -13
- data/lib/2016-03-01/generated/azure_mgmt_stream_analytics/outputs.rb +49 -48
- data/lib/2016-03-01/generated/azure_mgmt_stream_analytics/stream_analytics_management_client.rb +4 -1
- data/lib/2016-03-01/generated/azure_mgmt_stream_analytics/streaming_jobs.rb +82 -78
- data/lib/2016-03-01/generated/azure_mgmt_stream_analytics/subscriptions.rb +6 -5
- data/lib/2016-03-01/generated/azure_mgmt_stream_analytics/transformations.rb +18 -19
- data/lib/profiles/latest/modules/streamanalytics_profile_module.rb +265 -246
- data/lib/profiles/latest/streamanalytics_latest_profile_client.rb +28 -9
- data/lib/profiles/latest/streamanalytics_module_definition.rb +0 -1
- data/lib/version.rb +1 -1
- metadata +3 -3
@@ -33,8 +33,8 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
33
33
|
#
|
34
34
|
# @return [SubscriptionQuotasListResult] operation results.
|
35
35
|
#
|
36
|
-
def list_quotas(location, custom_headers
|
37
|
-
response = list_quotas_async(location, custom_headers).value!
|
36
|
+
def list_quotas(location, custom_headers:nil)
|
37
|
+
response = list_quotas_async(location, custom_headers:custom_headers).value!
|
38
38
|
response.body unless response.nil?
|
39
39
|
end
|
40
40
|
|
@@ -50,8 +50,8 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
50
50
|
#
|
51
51
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
52
52
|
#
|
53
|
-
def list_quotas_with_http_info(location, custom_headers
|
54
|
-
list_quotas_async(location, custom_headers).value!
|
53
|
+
def list_quotas_with_http_info(location, custom_headers:nil)
|
54
|
+
list_quotas_async(location, custom_headers:custom_headers).value!
|
55
55
|
end
|
56
56
|
|
57
57
|
#
|
@@ -66,13 +66,14 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
66
66
|
#
|
67
67
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
68
68
|
#
|
69
|
-
def list_quotas_async(location, custom_headers
|
69
|
+
def list_quotas_async(location, custom_headers:nil)
|
70
70
|
fail ArgumentError, 'location is nil' if location.nil?
|
71
71
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
72
72
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
73
73
|
|
74
74
|
|
75
75
|
request_headers = {}
|
76
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
76
77
|
|
77
78
|
# Set Headers
|
78
79
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
@@ -44,8 +44,8 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
44
44
|
#
|
45
45
|
# @return [Transformation] operation results.
|
46
46
|
#
|
47
|
-
def create_or_replace(transformation, resource_group_name, job_name, transformation_name, if_match
|
48
|
-
response = create_or_replace_async(transformation, resource_group_name, job_name, transformation_name, if_match, if_none_match, custom_headers).value!
|
47
|
+
def create_or_replace(transformation, resource_group_name, job_name, transformation_name, if_match:nil, if_none_match:nil, custom_headers:nil)
|
48
|
+
response = create_or_replace_async(transformation, resource_group_name, job_name, transformation_name, if_match:if_match, if_none_match:if_none_match, custom_headers:custom_headers).value!
|
49
49
|
response.body unless response.nil?
|
50
50
|
end
|
51
51
|
|
@@ -72,8 +72,8 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
72
72
|
#
|
73
73
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
74
74
|
#
|
75
|
-
def create_or_replace_with_http_info(transformation, resource_group_name, job_name, transformation_name, if_match
|
76
|
-
create_or_replace_async(transformation, resource_group_name, job_name, transformation_name, if_match, if_none_match, custom_headers).value!
|
75
|
+
def create_or_replace_with_http_info(transformation, resource_group_name, job_name, transformation_name, if_match:nil, if_none_match:nil, custom_headers:nil)
|
76
|
+
create_or_replace_async(transformation, resource_group_name, job_name, transformation_name, if_match:if_match, if_none_match:if_none_match, custom_headers:custom_headers).value!
|
77
77
|
end
|
78
78
|
|
79
79
|
#
|
@@ -99,7 +99,7 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
99
99
|
#
|
100
100
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
101
101
|
#
|
102
|
-
def create_or_replace_async(transformation, resource_group_name, job_name, transformation_name, if_match
|
102
|
+
def create_or_replace_async(transformation, resource_group_name, job_name, transformation_name, if_match:nil, if_none_match:nil, custom_headers:nil)
|
103
103
|
fail ArgumentError, 'transformation is nil' if transformation.nil?
|
104
104
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
105
105
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
@@ -109,6 +109,7 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
109
109
|
|
110
110
|
|
111
111
|
request_headers = {}
|
112
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
112
113
|
|
113
114
|
# Set Headers
|
114
115
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
@@ -116,8 +117,6 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
116
117
|
request_headers['If-None-Match'] = if_none_match unless if_none_match.nil?
|
117
118
|
request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
|
118
119
|
|
119
|
-
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
120
|
-
|
121
120
|
# Serialize Request
|
122
121
|
request_mapper = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Transformation.mapper()
|
123
122
|
request_content = @client.serialize(request_mapper, transformation)
|
@@ -199,8 +198,8 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
199
198
|
#
|
200
199
|
# @return [Transformation] operation results.
|
201
200
|
#
|
202
|
-
def update(transformation, resource_group_name, job_name, transformation_name, if_match
|
203
|
-
response = update_async(transformation, resource_group_name, job_name, transformation_name, if_match, custom_headers).value!
|
201
|
+
def update(transformation, resource_group_name, job_name, transformation_name, if_match:nil, custom_headers:nil)
|
202
|
+
response = update_async(transformation, resource_group_name, job_name, transformation_name, if_match:if_match, custom_headers:custom_headers).value!
|
204
203
|
response.body unless response.nil?
|
205
204
|
end
|
206
205
|
|
@@ -229,8 +228,8 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
229
228
|
#
|
230
229
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
231
230
|
#
|
232
|
-
def update_with_http_info(transformation, resource_group_name, job_name, transformation_name, if_match
|
233
|
-
update_async(transformation, resource_group_name, job_name, transformation_name, if_match, custom_headers).value!
|
231
|
+
def update_with_http_info(transformation, resource_group_name, job_name, transformation_name, if_match:nil, custom_headers:nil)
|
232
|
+
update_async(transformation, resource_group_name, job_name, transformation_name, if_match:if_match, custom_headers:custom_headers).value!
|
234
233
|
end
|
235
234
|
|
236
235
|
#
|
@@ -258,7 +257,7 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
258
257
|
#
|
259
258
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
260
259
|
#
|
261
|
-
def update_async(transformation, resource_group_name, job_name, transformation_name, if_match
|
260
|
+
def update_async(transformation, resource_group_name, job_name, transformation_name, if_match:nil, custom_headers:nil)
|
262
261
|
fail ArgumentError, 'transformation is nil' if transformation.nil?
|
263
262
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
264
263
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
@@ -268,14 +267,13 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
268
267
|
|
269
268
|
|
270
269
|
request_headers = {}
|
270
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
271
271
|
|
272
272
|
# Set Headers
|
273
273
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
274
274
|
request_headers['If-Match'] = if_match unless if_match.nil?
|
275
275
|
request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
|
276
276
|
|
277
|
-
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
278
|
-
|
279
277
|
# Serialize Request
|
280
278
|
request_mapper = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Transformation.mapper()
|
281
279
|
request_content = @client.serialize(request_mapper, transformation)
|
@@ -335,8 +333,8 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
335
333
|
#
|
336
334
|
# @return [Transformation] operation results.
|
337
335
|
#
|
338
|
-
def get(resource_group_name, job_name, transformation_name, custom_headers
|
339
|
-
response = get_async(resource_group_name, job_name, transformation_name, custom_headers).value!
|
336
|
+
def get(resource_group_name, job_name, transformation_name, custom_headers:nil)
|
337
|
+
response = get_async(resource_group_name, job_name, transformation_name, custom_headers:custom_headers).value!
|
340
338
|
response.body unless response.nil?
|
341
339
|
end
|
342
340
|
|
@@ -353,8 +351,8 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
353
351
|
#
|
354
352
|
# @return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
355
353
|
#
|
356
|
-
def get_with_http_info(resource_group_name, job_name, transformation_name, custom_headers
|
357
|
-
get_async(resource_group_name, job_name, transformation_name, custom_headers).value!
|
354
|
+
def get_with_http_info(resource_group_name, job_name, transformation_name, custom_headers:nil)
|
355
|
+
get_async(resource_group_name, job_name, transformation_name, custom_headers:custom_headers).value!
|
358
356
|
end
|
359
357
|
|
360
358
|
#
|
@@ -370,7 +368,7 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
370
368
|
#
|
371
369
|
# @return [Concurrent::Promise] Promise object which holds the HTTP response.
|
372
370
|
#
|
373
|
-
def get_async(resource_group_name, job_name, transformation_name, custom_headers
|
371
|
+
def get_async(resource_group_name, job_name, transformation_name, custom_headers:nil)
|
374
372
|
fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
|
375
373
|
fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
|
376
374
|
fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
|
@@ -379,6 +377,7 @@ module Azure::StreamAnalytics::Mgmt::V2016_03_01
|
|
379
377
|
|
380
378
|
|
381
379
|
request_headers = {}
|
380
|
+
request_headers['Content-Type'] = 'application/json; charset=utf-8'
|
382
381
|
|
383
382
|
# Set Headers
|
384
383
|
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
|
@@ -4,7 +4,8 @@
|
|
4
4
|
|
5
5
|
require 'azure_mgmt_stream_analytics'
|
6
6
|
|
7
|
-
module Azure::StreamAnalytics::Profiles::Latest
|
7
|
+
module Azure::StreamAnalytics::Profiles::Latest
|
8
|
+
module Mgmt
|
8
9
|
Operations = Azure::StreamAnalytics::Mgmt::V2016_03_01::Operations
|
9
10
|
StreamingJobs = Azure::StreamAnalytics::Mgmt::V2016_03_01::StreamingJobs
|
10
11
|
Inputs = Azure::StreamAnalytics::Mgmt::V2016_03_01::Inputs
|
@@ -18,7 +19,7 @@ module Azure::StreamAnalytics::Profiles::Latest::Mgmt
|
|
18
19
|
OperationDisplay = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OperationDisplay
|
19
20
|
AzureMachineLearningWebServiceInputs = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceInputs
|
20
21
|
OperationListResult = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OperationListResult
|
21
|
-
|
22
|
+
ReferenceInputDataSource = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ReferenceInputDataSource
|
22
23
|
Serialization = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Serialization
|
23
24
|
FunctionBinding = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionBinding
|
24
25
|
Diagnostics = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Diagnostics
|
@@ -28,26 +29,26 @@ module Azure::StreamAnalytics::Profiles::Latest::Mgmt
|
|
28
29
|
OutputDataSource = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputDataSource
|
29
30
|
InputProperties = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::InputProperties
|
30
31
|
FunctionProperties = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionProperties
|
31
|
-
|
32
|
-
|
32
|
+
ServiceBusDataSourceProperties = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ServiceBusDataSourceProperties
|
33
|
+
OutputListResult = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputListResult
|
33
34
|
FunctionInput = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionInput
|
34
35
|
StartStreamingJobParameters = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StartStreamingJobParameters
|
35
36
|
BlobDataSourceProperties = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::BlobDataSourceProperties
|
36
|
-
OutputListResult = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputListResult
|
37
|
-
ReferenceInputDataSource = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ReferenceInputDataSource
|
38
|
-
Operation = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Operation
|
39
|
-
AzureSqlDatabaseDataSourceProperties = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureSqlDatabaseDataSourceProperties
|
40
|
-
ErrorResponse = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ErrorResponse
|
41
37
|
FunctionRetrieveDefaultDefinitionParameters = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionRetrieveDefaultDefinitionParameters
|
42
|
-
StreamingJobListResult = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StreamingJobListResult
|
43
38
|
SubResource = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::SubResource
|
44
|
-
|
39
|
+
Operation = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Operation
|
40
|
+
StorageAccount = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StorageAccount
|
41
|
+
AzureSqlDatabaseDataSourceProperties = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureSqlDatabaseDataSourceProperties
|
45
42
|
StreamInputDataSource = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StreamInputDataSource
|
46
|
-
|
43
|
+
StreamingJobListResult = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StreamingJobListResult
|
47
44
|
InputListResult = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::InputListResult
|
45
|
+
AzureMachineLearningWebServiceOutputColumn = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceOutputColumn
|
46
|
+
OAuthBasedDataSourceProperties = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OAuthBasedDataSourceProperties
|
47
|
+
ResourceTestStatus = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ResourceTestStatus
|
48
|
+
ErrorResponse = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ErrorResponse
|
48
49
|
SubscriptionQuotasListResult = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::SubscriptionQuotasListResult
|
49
50
|
Resource = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Resource
|
50
|
-
|
51
|
+
FunctionListResult = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionListResult
|
51
52
|
Input = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Input
|
52
53
|
Transformation = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Transformation
|
53
54
|
Output = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Output
|
@@ -56,8 +57,6 @@ module Azure::StreamAnalytics::Profiles::Latest::Mgmt
|
|
56
57
|
JavaScriptFunctionBinding = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::JavaScriptFunctionBinding
|
57
58
|
AzureMachineLearningWebServiceFunctionBinding = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceFunctionBinding
|
58
59
|
ScalarFunctionProperties = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ScalarFunctionProperties
|
59
|
-
JavaScriptFunctionRetrieveDefaultDefinitionParameters = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::JavaScriptFunctionRetrieveDefaultDefinitionParameters
|
60
|
-
AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters
|
61
60
|
AvroSerialization = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AvroSerialization
|
62
61
|
JsonSerialization = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::JsonSerialization
|
63
62
|
CsvSerialization = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::CsvSerialization
|
@@ -77,21 +76,23 @@ module Azure::StreamAnalytics::Profiles::Latest::Mgmt
|
|
77
76
|
EventHubStreamInputDataSource = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::EventHubStreamInputDataSource
|
78
77
|
BlobStreamInputDataSource = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::BlobStreamInputDataSource
|
79
78
|
StreamInputProperties = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StreamInputProperties
|
79
|
+
AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters
|
80
|
+
JavaScriptFunctionRetrieveDefaultDefinitionParameters = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::JavaScriptFunctionRetrieveDefaultDefinitionParameters
|
80
81
|
SubscriptionQuota = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::SubscriptionQuota
|
81
82
|
SkuName = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::SkuName
|
82
83
|
OutputStartMode = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputStartMode
|
83
84
|
EventsOutOfOrderPolicy = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::EventsOutOfOrderPolicy
|
84
85
|
OutputErrorPolicy = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputErrorPolicy
|
85
86
|
CompatibilityLevel = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::CompatibilityLevel
|
86
|
-
UdfType = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::UdfType
|
87
87
|
JsonOutputSerializationFormat = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::JsonOutputSerializationFormat
|
88
88
|
Encoding = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Encoding
|
89
|
+
UdfType = Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::UdfType
|
89
90
|
end
|
90
91
|
|
91
92
|
#
|
92
|
-
#
|
93
|
+
# StreamAnalyticsManagementClass
|
93
94
|
#
|
94
|
-
class
|
95
|
+
class StreamAnalyticsManagementClass
|
95
96
|
attr_reader :operations, :streaming_jobs, :inputs, :outputs, :transformations, :functions, :subscriptions, :configurable, :base_url, :options, :model_classes
|
96
97
|
|
97
98
|
def initialize(options = {})
|
@@ -103,240 +104,258 @@ module Azure::StreamAnalytics::Profiles::Latest::Mgmt
|
|
103
104
|
|
104
105
|
reset!(options)
|
105
106
|
|
106
|
-
@configurable
|
107
|
+
@configurable = self
|
108
|
+
@base_url = options[:base_url].nil? ? nil:options[:base_url]
|
109
|
+
@options = options[:options].nil? ? nil:options[:options]
|
107
110
|
|
108
|
-
client_0 = Azure::StreamAnalytics::Mgmt::V2016_03_01::StreamAnalyticsManagementClient.new(configurable.credentials, base_url, options)
|
109
|
-
if(client_0.respond_to?(:subscription_id))
|
110
|
-
client_0.subscription_id = configurable.subscription_id
|
111
|
-
end
|
112
|
-
@
|
113
|
-
@
|
114
|
-
@
|
115
|
-
@
|
116
|
-
@
|
117
|
-
@
|
118
|
-
@
|
111
|
+
@client_0 = Azure::StreamAnalytics::Mgmt::V2016_03_01::StreamAnalyticsManagementClient.new(configurable.credentials, base_url, options)
|
112
|
+
if(@client_0.respond_to?(:subscription_id))
|
113
|
+
@client_0.subscription_id = configurable.subscription_id
|
114
|
+
end
|
115
|
+
add_telemetry(@client_0)
|
116
|
+
@operations = @client_0.operations
|
117
|
+
@streaming_jobs = @client_0.streaming_jobs
|
118
|
+
@inputs = @client_0.inputs
|
119
|
+
@outputs = @client_0.outputs
|
120
|
+
@transformations = @client_0.transformations
|
121
|
+
@functions = @client_0.functions
|
122
|
+
@subscriptions = @client_0.subscriptions
|
119
123
|
|
120
124
|
@model_classes = ModelClasses.new
|
121
125
|
end
|
122
126
|
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
def operation_list_result
|
134
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OperationListResult
|
135
|
-
end
|
136
|
-
def storage_account
|
137
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StorageAccount
|
138
|
-
end
|
139
|
-
def serialization
|
140
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Serialization
|
141
|
-
end
|
142
|
-
def function_binding
|
143
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionBinding
|
144
|
-
end
|
145
|
-
def diagnostics
|
146
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Diagnostics
|
147
|
-
end
|
148
|
-
def function_output
|
149
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionOutput
|
150
|
-
end
|
151
|
-
def sku
|
152
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Sku
|
153
|
-
end
|
154
|
-
def diagnostic_condition
|
155
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::DiagnosticCondition
|
156
|
-
end
|
157
|
-
def output_data_source
|
158
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputDataSource
|
159
|
-
end
|
160
|
-
def input_properties
|
161
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::InputProperties
|
162
|
-
end
|
163
|
-
def function_properties
|
164
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionProperties
|
165
|
-
end
|
166
|
-
def function_list_result
|
167
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionListResult
|
168
|
-
end
|
169
|
-
def resource_test_status
|
170
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ResourceTestStatus
|
171
|
-
end
|
172
|
-
def function_input
|
173
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionInput
|
174
|
-
end
|
175
|
-
def start_streaming_job_parameters
|
176
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StartStreamingJobParameters
|
177
|
-
end
|
178
|
-
def blob_data_source_properties
|
179
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::BlobDataSourceProperties
|
180
|
-
end
|
181
|
-
def output_list_result
|
182
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputListResult
|
183
|
-
end
|
184
|
-
def reference_input_data_source
|
185
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ReferenceInputDataSource
|
186
|
-
end
|
187
|
-
def operation
|
188
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Operation
|
189
|
-
end
|
190
|
-
def azure_sql_database_data_source_properties
|
191
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureSqlDatabaseDataSourceProperties
|
192
|
-
end
|
193
|
-
def error_response
|
194
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ErrorResponse
|
195
|
-
end
|
196
|
-
def function_retrieve_default_definition_parameters
|
197
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionRetrieveDefaultDefinitionParameters
|
198
|
-
end
|
199
|
-
def streaming_job_list_result
|
200
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StreamingJobListResult
|
201
|
-
end
|
202
|
-
def sub_resource
|
203
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::SubResource
|
204
|
-
end
|
205
|
-
def azure_machine_learning_web_service_output_column
|
206
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceOutputColumn
|
207
|
-
end
|
208
|
-
def stream_input_data_source
|
209
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StreamInputDataSource
|
210
|
-
end
|
211
|
-
def service_bus_data_source_properties
|
212
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ServiceBusDataSourceProperties
|
213
|
-
end
|
214
|
-
def input_list_result
|
215
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::InputListResult
|
216
|
-
end
|
217
|
-
def subscription_quotas_list_result
|
218
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::SubscriptionQuotasListResult
|
219
|
-
end
|
220
|
-
def resource
|
221
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Resource
|
222
|
-
end
|
223
|
-
def oauth_based_data_source_properties
|
224
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OAuthBasedDataSourceProperties
|
225
|
-
end
|
226
|
-
def input
|
227
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Input
|
228
|
-
end
|
229
|
-
def transformation
|
230
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Transformation
|
231
|
-
end
|
232
|
-
def output
|
233
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Output
|
234
|
-
end
|
235
|
-
def function
|
236
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Function
|
237
|
-
end
|
238
|
-
def streaming_job
|
239
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StreamingJob
|
240
|
-
end
|
241
|
-
def java_script_function_binding
|
242
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::JavaScriptFunctionBinding
|
243
|
-
end
|
244
|
-
def azure_machine_learning_web_service_function_binding
|
245
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceFunctionBinding
|
246
|
-
end
|
247
|
-
def scalar_function_properties
|
248
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ScalarFunctionProperties
|
249
|
-
end
|
250
|
-
def java_script_function_retrieve_default_definition_parameters
|
251
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::JavaScriptFunctionRetrieveDefaultDefinitionParameters
|
252
|
-
end
|
253
|
-
def azure_machine_learning_web_service_function_retrieve_default_definition_parameters
|
254
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters
|
255
|
-
end
|
256
|
-
def avro_serialization
|
257
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AvroSerialization
|
258
|
-
end
|
259
|
-
def json_serialization
|
260
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::JsonSerialization
|
261
|
-
end
|
262
|
-
def csv_serialization
|
263
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::CsvSerialization
|
264
|
-
end
|
265
|
-
def azure_data_lake_store_output_data_source
|
266
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureDataLakeStoreOutputDataSource
|
267
|
-
end
|
268
|
-
def power_bioutput_data_source
|
269
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::PowerBIOutputDataSource
|
270
|
-
end
|
271
|
-
def event_hub_data_source_properties
|
272
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::EventHubDataSourceProperties
|
273
|
-
end
|
274
|
-
def service_bus_topic_output_data_source
|
275
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ServiceBusTopicOutputDataSource
|
276
|
-
end
|
277
|
-
def service_bus_queue_output_data_source
|
278
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ServiceBusQueueOutputDataSource
|
279
|
-
end
|
280
|
-
def document_db_output_data_source
|
281
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::DocumentDbOutputDataSource
|
282
|
-
end
|
283
|
-
def azure_sql_database_output_data_source
|
284
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureSqlDatabaseOutputDataSource
|
285
|
-
end
|
286
|
-
def event_hub_output_data_source
|
287
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::EventHubOutputDataSource
|
288
|
-
end
|
289
|
-
def azure_table_output_data_source
|
290
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureTableOutputDataSource
|
291
|
-
end
|
292
|
-
def blob_output_data_source
|
293
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::BlobOutputDataSource
|
294
|
-
end
|
295
|
-
def blob_reference_input_data_source
|
296
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::BlobReferenceInputDataSource
|
297
|
-
end
|
298
|
-
def reference_input_properties
|
299
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ReferenceInputProperties
|
300
|
-
end
|
301
|
-
def io_thub_stream_input_data_source
|
302
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::IoTHubStreamInputDataSource
|
303
|
-
end
|
304
|
-
def event_hub_stream_input_data_source
|
305
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::EventHubStreamInputDataSource
|
306
|
-
end
|
307
|
-
def blob_stream_input_data_source
|
308
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::BlobStreamInputDataSource
|
309
|
-
end
|
310
|
-
def stream_input_properties
|
311
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StreamInputProperties
|
312
|
-
end
|
313
|
-
def subscription_quota
|
314
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::SubscriptionQuota
|
315
|
-
end
|
316
|
-
def sku_name
|
317
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::SkuName
|
318
|
-
end
|
319
|
-
def output_start_mode
|
320
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputStartMode
|
321
|
-
end
|
322
|
-
def events_out_of_order_policy
|
323
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::EventsOutOfOrderPolicy
|
324
|
-
end
|
325
|
-
def output_error_policy
|
326
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputErrorPolicy
|
327
|
-
end
|
328
|
-
def compatibility_level
|
329
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::CompatibilityLevel
|
330
|
-
end
|
331
|
-
def udf_type
|
332
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::UdfType
|
333
|
-
end
|
334
|
-
def json_output_serialization_format
|
335
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::JsonOutputSerializationFormat
|
336
|
-
end
|
337
|
-
def encoding
|
338
|
-
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Encoding
|
127
|
+
def add_telemetry(client)
|
128
|
+
profile_information = 'Profiles/Latest/StreamAnalytics/Mgmt'
|
129
|
+
client.add_user_agent_information(profile_information)
|
130
|
+
end
|
131
|
+
|
132
|
+
def method_missing(method, *args)
|
133
|
+
if @client_0.respond_to?method
|
134
|
+
@client_0.send(method, *args)
|
135
|
+
else
|
136
|
+
super
|
339
137
|
end
|
340
138
|
end
|
139
|
+
|
140
|
+
end
|
141
|
+
|
142
|
+
class ModelClasses
|
143
|
+
def azure_machine_learning_web_service_input_column
|
144
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceInputColumn
|
145
|
+
end
|
146
|
+
def operation_display
|
147
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OperationDisplay
|
148
|
+
end
|
149
|
+
def azure_machine_learning_web_service_inputs
|
150
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceInputs
|
151
|
+
end
|
152
|
+
def operation_list_result
|
153
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OperationListResult
|
154
|
+
end
|
155
|
+
def reference_input_data_source
|
156
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ReferenceInputDataSource
|
157
|
+
end
|
158
|
+
def serialization
|
159
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Serialization
|
160
|
+
end
|
161
|
+
def function_binding
|
162
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionBinding
|
163
|
+
end
|
164
|
+
def diagnostics
|
165
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Diagnostics
|
166
|
+
end
|
167
|
+
def function_output
|
168
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionOutput
|
169
|
+
end
|
170
|
+
def sku
|
171
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Sku
|
172
|
+
end
|
173
|
+
def diagnostic_condition
|
174
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::DiagnosticCondition
|
175
|
+
end
|
176
|
+
def output_data_source
|
177
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputDataSource
|
178
|
+
end
|
179
|
+
def input_properties
|
180
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::InputProperties
|
181
|
+
end
|
182
|
+
def function_properties
|
183
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionProperties
|
184
|
+
end
|
185
|
+
def service_bus_data_source_properties
|
186
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ServiceBusDataSourceProperties
|
187
|
+
end
|
188
|
+
def output_list_result
|
189
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputListResult
|
190
|
+
end
|
191
|
+
def function_input
|
192
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionInput
|
193
|
+
end
|
194
|
+
def start_streaming_job_parameters
|
195
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StartStreamingJobParameters
|
196
|
+
end
|
197
|
+
def blob_data_source_properties
|
198
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::BlobDataSourceProperties
|
199
|
+
end
|
200
|
+
def function_retrieve_default_definition_parameters
|
201
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionRetrieveDefaultDefinitionParameters
|
202
|
+
end
|
203
|
+
def sub_resource
|
204
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::SubResource
|
205
|
+
end
|
206
|
+
def operation
|
207
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Operation
|
208
|
+
end
|
209
|
+
def storage_account
|
210
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StorageAccount
|
211
|
+
end
|
212
|
+
def azure_sql_database_data_source_properties
|
213
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureSqlDatabaseDataSourceProperties
|
214
|
+
end
|
215
|
+
def stream_input_data_source
|
216
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StreamInputDataSource
|
217
|
+
end
|
218
|
+
def streaming_job_list_result
|
219
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StreamingJobListResult
|
220
|
+
end
|
221
|
+
def input_list_result
|
222
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::InputListResult
|
223
|
+
end
|
224
|
+
def azure_machine_learning_web_service_output_column
|
225
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceOutputColumn
|
226
|
+
end
|
227
|
+
def oauth_based_data_source_properties
|
228
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OAuthBasedDataSourceProperties
|
229
|
+
end
|
230
|
+
def resource_test_status
|
231
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ResourceTestStatus
|
232
|
+
end
|
233
|
+
def error_response
|
234
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ErrorResponse
|
235
|
+
end
|
236
|
+
def subscription_quotas_list_result
|
237
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::SubscriptionQuotasListResult
|
238
|
+
end
|
239
|
+
def resource
|
240
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Resource
|
241
|
+
end
|
242
|
+
def function_list_result
|
243
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::FunctionListResult
|
244
|
+
end
|
245
|
+
def input
|
246
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Input
|
247
|
+
end
|
248
|
+
def transformation
|
249
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Transformation
|
250
|
+
end
|
251
|
+
def output
|
252
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Output
|
253
|
+
end
|
254
|
+
def function
|
255
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Function
|
256
|
+
end
|
257
|
+
def streaming_job
|
258
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StreamingJob
|
259
|
+
end
|
260
|
+
def java_script_function_binding
|
261
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::JavaScriptFunctionBinding
|
262
|
+
end
|
263
|
+
def azure_machine_learning_web_service_function_binding
|
264
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceFunctionBinding
|
265
|
+
end
|
266
|
+
def scalar_function_properties
|
267
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ScalarFunctionProperties
|
268
|
+
end
|
269
|
+
def avro_serialization
|
270
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AvroSerialization
|
271
|
+
end
|
272
|
+
def json_serialization
|
273
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::JsonSerialization
|
274
|
+
end
|
275
|
+
def csv_serialization
|
276
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::CsvSerialization
|
277
|
+
end
|
278
|
+
def azure_data_lake_store_output_data_source
|
279
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureDataLakeStoreOutputDataSource
|
280
|
+
end
|
281
|
+
def power_bioutput_data_source
|
282
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::PowerBIOutputDataSource
|
283
|
+
end
|
284
|
+
def event_hub_data_source_properties
|
285
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::EventHubDataSourceProperties
|
286
|
+
end
|
287
|
+
def service_bus_topic_output_data_source
|
288
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ServiceBusTopicOutputDataSource
|
289
|
+
end
|
290
|
+
def service_bus_queue_output_data_source
|
291
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ServiceBusQueueOutputDataSource
|
292
|
+
end
|
293
|
+
def document_db_output_data_source
|
294
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::DocumentDbOutputDataSource
|
295
|
+
end
|
296
|
+
def azure_sql_database_output_data_source
|
297
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureSqlDatabaseOutputDataSource
|
298
|
+
end
|
299
|
+
def event_hub_output_data_source
|
300
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::EventHubOutputDataSource
|
301
|
+
end
|
302
|
+
def azure_table_output_data_source
|
303
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureTableOutputDataSource
|
304
|
+
end
|
305
|
+
def blob_output_data_source
|
306
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::BlobOutputDataSource
|
307
|
+
end
|
308
|
+
def blob_reference_input_data_source
|
309
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::BlobReferenceInputDataSource
|
310
|
+
end
|
311
|
+
def reference_input_properties
|
312
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ReferenceInputProperties
|
313
|
+
end
|
314
|
+
def io_thub_stream_input_data_source
|
315
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::IoTHubStreamInputDataSource
|
316
|
+
end
|
317
|
+
def event_hub_stream_input_data_source
|
318
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::EventHubStreamInputDataSource
|
319
|
+
end
|
320
|
+
def blob_stream_input_data_source
|
321
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::BlobStreamInputDataSource
|
322
|
+
end
|
323
|
+
def stream_input_properties
|
324
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::StreamInputProperties
|
325
|
+
end
|
326
|
+
def azure_machine_learning_web_service_function_retrieve_default_definition_parameters
|
327
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::AzureMachineLearningWebServiceFunctionRetrieveDefaultDefinitionParameters
|
328
|
+
end
|
329
|
+
def java_script_function_retrieve_default_definition_parameters
|
330
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::JavaScriptFunctionRetrieveDefaultDefinitionParameters
|
331
|
+
end
|
332
|
+
def subscription_quota
|
333
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::SubscriptionQuota
|
334
|
+
end
|
335
|
+
def sku_name
|
336
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::SkuName
|
337
|
+
end
|
338
|
+
def output_start_mode
|
339
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputStartMode
|
340
|
+
end
|
341
|
+
def events_out_of_order_policy
|
342
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::EventsOutOfOrderPolicy
|
343
|
+
end
|
344
|
+
def output_error_policy
|
345
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OutputErrorPolicy
|
346
|
+
end
|
347
|
+
def compatibility_level
|
348
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::CompatibilityLevel
|
349
|
+
end
|
350
|
+
def json_output_serialization_format
|
351
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::JsonOutputSerializationFormat
|
352
|
+
end
|
353
|
+
def encoding
|
354
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::Encoding
|
355
|
+
end
|
356
|
+
def udf_type
|
357
|
+
Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::UdfType
|
358
|
+
end
|
341
359
|
end
|
360
|
+
end
|
342
361
|
end
|