azure_sdk 0.19.3 → 0.19.4
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/azure_sdk/version.rb +1 -1
- data/lib/latest/latest_profile_client.rb +19 -1
- data/lib/latest/modules/containerregistry_profile_module.rb +288 -44
- data/lib/latest/modules/customvisionprediction_profile_module.rb +61 -0
- data/lib/latest/modules/customvisiontraining_profile_module.rb +229 -0
- data/lib/latest/modules/logic_profile_module.rb +465 -445
- metadata +9 -7
@@ -0,0 +1,61 @@
|
|
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_customvisionprediction'
|
6
|
+
|
7
|
+
module Azure::Profiles::Latest
|
8
|
+
module Customvisionprediction
|
9
|
+
|
10
|
+
module Models
|
11
|
+
Prediction = Azure::CognitiveServices::Customvisionprediction::V2_0::Models::Prediction
|
12
|
+
ImageUrl = Azure::CognitiveServices::Customvisionprediction::V2_0::Models::ImageUrl
|
13
|
+
ImagePrediction = Azure::CognitiveServices::Customvisionprediction::V2_0::Models::ImagePrediction
|
14
|
+
BoundingBox = Azure::CognitiveServices::Customvisionprediction::V2_0::Models::BoundingBox
|
15
|
+
end
|
16
|
+
|
17
|
+
class CustomvisionpredictionDataClass
|
18
|
+
attr_reader :configurable, :base_url, :options, :model_classes
|
19
|
+
|
20
|
+
def initialize(configurable, base_url=nil, options=nil)
|
21
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
22
|
+
|
23
|
+
@client_0 = Azure::CognitiveServices::Customvisionprediction::V2_0::CustomvisionpredictionClient.new(configurable.credentials, options)
|
24
|
+
if(@client_0.respond_to?(:subscription_id))
|
25
|
+
@client_0.subscription_id = configurable.subscription_id
|
26
|
+
end
|
27
|
+
add_telemetry(@client_0)
|
28
|
+
|
29
|
+
@model_classes = ModelClasses.new
|
30
|
+
end
|
31
|
+
|
32
|
+
def add_telemetry(client)
|
33
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/Customvisionprediction"
|
34
|
+
client.add_user_agent_information(profile_information)
|
35
|
+
end
|
36
|
+
|
37
|
+
def method_missing(method, *args)
|
38
|
+
if @client_0.respond_to?method
|
39
|
+
@client_0.send(method, *args)
|
40
|
+
else
|
41
|
+
super
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
class ModelClasses
|
46
|
+
def prediction
|
47
|
+
Azure::CognitiveServices::Customvisionprediction::V2_0::Models::Prediction
|
48
|
+
end
|
49
|
+
def image_url
|
50
|
+
Azure::CognitiveServices::Customvisionprediction::V2_0::Models::ImageUrl
|
51
|
+
end
|
52
|
+
def image_prediction
|
53
|
+
Azure::CognitiveServices::Customvisionprediction::V2_0::Models::ImagePrediction
|
54
|
+
end
|
55
|
+
def bounding_box
|
56
|
+
Azure::CognitiveServices::Customvisionprediction::V2_0::Models::BoundingBox
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
@@ -0,0 +1,229 @@
|
|
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_customvisiontraining'
|
6
|
+
|
7
|
+
module Azure::Profiles::Latest
|
8
|
+
module Customvisiontraining
|
9
|
+
|
10
|
+
module Models
|
11
|
+
ImageIdCreateBatch = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageIdCreateBatch
|
12
|
+
Domain = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Domain
|
13
|
+
BoundingBox = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::BoundingBox
|
14
|
+
ImageTagCreateBatch = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageTagCreateBatch
|
15
|
+
RegionProposal = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::RegionProposal
|
16
|
+
ImageRegionCreateEntry = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageRegionCreateEntry
|
17
|
+
ImageRegionProposal = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageRegionProposal
|
18
|
+
ImageRegionCreateResult = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageRegionCreateResult
|
19
|
+
ImageUrl = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageUrl
|
20
|
+
ImageTag = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageTag
|
21
|
+
Prediction = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Prediction
|
22
|
+
Image = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Image
|
23
|
+
ImagePrediction = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImagePrediction
|
24
|
+
ImageCreateSummary = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageCreateSummary
|
25
|
+
PredictionQueryTag = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::PredictionQueryTag
|
26
|
+
ImageFileCreateEntry = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageFileCreateEntry
|
27
|
+
PredictionQueryToken = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::PredictionQueryToken
|
28
|
+
ImageUrlCreateEntry = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageUrlCreateEntry
|
29
|
+
StoredImagePrediction = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::StoredImagePrediction
|
30
|
+
ImageIdCreateEntry = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageIdCreateEntry
|
31
|
+
PredictionQueryResult = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::PredictionQueryResult
|
32
|
+
ImageTagCreateSummary = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageTagCreateSummary
|
33
|
+
TagPerformance = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::TagPerformance
|
34
|
+
ImageRegionCreateSummary = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageRegionCreateSummary
|
35
|
+
IterationPerformance = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::IterationPerformance
|
36
|
+
ImageCreateResult = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageCreateResult
|
37
|
+
ImagePerformance = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImagePerformance
|
38
|
+
ImageFileCreateBatch = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageFileCreateBatch
|
39
|
+
ProjectSettings = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ProjectSettings
|
40
|
+
ImageTagCreateEntry = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageTagCreateEntry
|
41
|
+
Project = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Project
|
42
|
+
ImageRegion = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageRegion
|
43
|
+
Iteration = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Iteration
|
44
|
+
ImageUrlCreateBatch = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageUrlCreateBatch
|
45
|
+
Export = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Export
|
46
|
+
Region = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Region
|
47
|
+
Tag = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Tag
|
48
|
+
ImageRegionCreateBatch = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageRegionCreateBatch
|
49
|
+
DomainType = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::DomainType
|
50
|
+
ImageCreateStatus = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageCreateStatus
|
51
|
+
OrderBy = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::OrderBy
|
52
|
+
Classifier = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Classifier
|
53
|
+
ExportPlatformModel = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ExportPlatformModel
|
54
|
+
ExportStatusModel = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ExportStatusModel
|
55
|
+
ExportFlavorModel = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ExportFlavorModel
|
56
|
+
TagType = Azure::CognitiveServices::Customvisiontraining::V2_2::Models::TagType
|
57
|
+
end
|
58
|
+
|
59
|
+
class CustomvisiontrainingDataClass
|
60
|
+
attr_reader :configurable, :base_url, :options, :model_classes
|
61
|
+
|
62
|
+
def initialize(configurable, base_url=nil, options=nil)
|
63
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
64
|
+
|
65
|
+
@client_0 = Azure::CognitiveServices::Customvisiontraining::V2_2::CustomvisiontrainingClient.new(configurable.credentials, options)
|
66
|
+
if(@client_0.respond_to?(:subscription_id))
|
67
|
+
@client_0.subscription_id = configurable.subscription_id
|
68
|
+
end
|
69
|
+
add_telemetry(@client_0)
|
70
|
+
|
71
|
+
@model_classes = ModelClasses.new
|
72
|
+
end
|
73
|
+
|
74
|
+
def add_telemetry(client)
|
75
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/Customvisiontraining"
|
76
|
+
client.add_user_agent_information(profile_information)
|
77
|
+
end
|
78
|
+
|
79
|
+
def method_missing(method, *args)
|
80
|
+
if @client_0.respond_to?method
|
81
|
+
@client_0.send(method, *args)
|
82
|
+
else
|
83
|
+
super
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
class ModelClasses
|
88
|
+
def image_id_create_batch
|
89
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageIdCreateBatch
|
90
|
+
end
|
91
|
+
def domain
|
92
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Domain
|
93
|
+
end
|
94
|
+
def bounding_box
|
95
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::BoundingBox
|
96
|
+
end
|
97
|
+
def image_tag_create_batch
|
98
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageTagCreateBatch
|
99
|
+
end
|
100
|
+
def region_proposal
|
101
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::RegionProposal
|
102
|
+
end
|
103
|
+
def image_region_create_entry
|
104
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageRegionCreateEntry
|
105
|
+
end
|
106
|
+
def image_region_proposal
|
107
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageRegionProposal
|
108
|
+
end
|
109
|
+
def image_region_create_result
|
110
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageRegionCreateResult
|
111
|
+
end
|
112
|
+
def image_url
|
113
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageUrl
|
114
|
+
end
|
115
|
+
def image_tag
|
116
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageTag
|
117
|
+
end
|
118
|
+
def prediction
|
119
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Prediction
|
120
|
+
end
|
121
|
+
def image
|
122
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Image
|
123
|
+
end
|
124
|
+
def image_prediction
|
125
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImagePrediction
|
126
|
+
end
|
127
|
+
def image_create_summary
|
128
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageCreateSummary
|
129
|
+
end
|
130
|
+
def prediction_query_tag
|
131
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::PredictionQueryTag
|
132
|
+
end
|
133
|
+
def image_file_create_entry
|
134
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageFileCreateEntry
|
135
|
+
end
|
136
|
+
def prediction_query_token
|
137
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::PredictionQueryToken
|
138
|
+
end
|
139
|
+
def image_url_create_entry
|
140
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageUrlCreateEntry
|
141
|
+
end
|
142
|
+
def stored_image_prediction
|
143
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::StoredImagePrediction
|
144
|
+
end
|
145
|
+
def image_id_create_entry
|
146
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageIdCreateEntry
|
147
|
+
end
|
148
|
+
def prediction_query_result
|
149
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::PredictionQueryResult
|
150
|
+
end
|
151
|
+
def image_tag_create_summary
|
152
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageTagCreateSummary
|
153
|
+
end
|
154
|
+
def tag_performance
|
155
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::TagPerformance
|
156
|
+
end
|
157
|
+
def image_region_create_summary
|
158
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageRegionCreateSummary
|
159
|
+
end
|
160
|
+
def iteration_performance
|
161
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::IterationPerformance
|
162
|
+
end
|
163
|
+
def image_create_result
|
164
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageCreateResult
|
165
|
+
end
|
166
|
+
def image_performance
|
167
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImagePerformance
|
168
|
+
end
|
169
|
+
def image_file_create_batch
|
170
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageFileCreateBatch
|
171
|
+
end
|
172
|
+
def project_settings
|
173
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ProjectSettings
|
174
|
+
end
|
175
|
+
def image_tag_create_entry
|
176
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageTagCreateEntry
|
177
|
+
end
|
178
|
+
def project
|
179
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Project
|
180
|
+
end
|
181
|
+
def image_region
|
182
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageRegion
|
183
|
+
end
|
184
|
+
def iteration
|
185
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Iteration
|
186
|
+
end
|
187
|
+
def image_url_create_batch
|
188
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageUrlCreateBatch
|
189
|
+
end
|
190
|
+
def export
|
191
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Export
|
192
|
+
end
|
193
|
+
def region
|
194
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Region
|
195
|
+
end
|
196
|
+
def tag
|
197
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Tag
|
198
|
+
end
|
199
|
+
def image_region_create_batch
|
200
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageRegionCreateBatch
|
201
|
+
end
|
202
|
+
def domain_type
|
203
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::DomainType
|
204
|
+
end
|
205
|
+
def image_create_status
|
206
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ImageCreateStatus
|
207
|
+
end
|
208
|
+
def order_by
|
209
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::OrderBy
|
210
|
+
end
|
211
|
+
def classifier
|
212
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::Classifier
|
213
|
+
end
|
214
|
+
def export_platform_model
|
215
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ExportPlatformModel
|
216
|
+
end
|
217
|
+
def export_status_model
|
218
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ExportStatusModel
|
219
|
+
end
|
220
|
+
def export_flavor_model
|
221
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::ExportFlavorModel
|
222
|
+
end
|
223
|
+
def tag_type
|
224
|
+
Azure::CognitiveServices::Customvisiontraining::V2_2::Models::TagType
|
225
|
+
end
|
226
|
+
end
|
227
|
+
end
|
228
|
+
end
|
229
|
+
end
|
@@ -7,206 +7,213 @@ require 'azure_mgmt_logic'
|
|
7
7
|
module Azure::Profiles::Latest
|
8
8
|
module Logic
|
9
9
|
module Mgmt
|
10
|
-
Workflows = Azure::Logic::Mgmt::
|
11
|
-
WorkflowVersions = Azure::Logic::Mgmt::
|
12
|
-
WorkflowTriggers = Azure::Logic::Mgmt::
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
10
|
+
Workflows = Azure::Logic::Mgmt::V2018_07_01_preview::Workflows
|
11
|
+
WorkflowVersions = Azure::Logic::Mgmt::V2018_07_01_preview::WorkflowVersions
|
12
|
+
WorkflowTriggers = Azure::Logic::Mgmt::V2018_07_01_preview::WorkflowTriggers
|
13
|
+
WorkflowVersionTriggers = Azure::Logic::Mgmt::V2018_07_01_preview::WorkflowVersionTriggers
|
14
|
+
WorkflowTriggerHistories = Azure::Logic::Mgmt::V2018_07_01_preview::WorkflowTriggerHistories
|
15
|
+
WorkflowRuns = Azure::Logic::Mgmt::V2018_07_01_preview::WorkflowRuns
|
16
|
+
WorkflowRunActions = Azure::Logic::Mgmt::V2018_07_01_preview::WorkflowRunActions
|
17
|
+
WorkflowRunActionRepetitions = Azure::Logic::Mgmt::V2018_07_01_preview::WorkflowRunActionRepetitions
|
18
|
+
WorkflowRunActionRepetitionsRequestHistories = Azure::Logic::Mgmt::V2018_07_01_preview::WorkflowRunActionRepetitionsRequestHistories
|
19
|
+
WorkflowRunActionRequestHistories = Azure::Logic::Mgmt::V2018_07_01_preview::WorkflowRunActionRequestHistories
|
20
|
+
WorkflowRunActionScopeRepetitions = Azure::Logic::Mgmt::V2018_07_01_preview::WorkflowRunActionScopeRepetitions
|
21
|
+
WorkflowRunOperations = Azure::Logic::Mgmt::V2018_07_01_preview::WorkflowRunOperations
|
22
|
+
IntegrationAccounts = Azure::Logic::Mgmt::V2018_07_01_preview::IntegrationAccounts
|
23
|
+
IntegrationAccountAssemblies = Azure::Logic::Mgmt::V2018_07_01_preview::IntegrationAccountAssemblies
|
24
|
+
IntegrationAccountBatchConfigurations = Azure::Logic::Mgmt::V2018_07_01_preview::IntegrationAccountBatchConfigurations
|
25
|
+
IntegrationAccountSchemas = Azure::Logic::Mgmt::V2018_07_01_preview::IntegrationAccountSchemas
|
26
|
+
IntegrationAccountMaps = Azure::Logic::Mgmt::V2018_07_01_preview::IntegrationAccountMaps
|
27
|
+
IntegrationAccountPartners = Azure::Logic::Mgmt::V2018_07_01_preview::IntegrationAccountPartners
|
28
|
+
IntegrationAccountAgreements = Azure::Logic::Mgmt::V2018_07_01_preview::IntegrationAccountAgreements
|
29
|
+
IntegrationAccountCertificates = Azure::Logic::Mgmt::V2018_07_01_preview::IntegrationAccountCertificates
|
30
|
+
IntegrationAccountSessions = Azure::Logic::Mgmt::V2018_07_01_preview::IntegrationAccountSessions
|
31
|
+
Operations = Azure::Logic::Mgmt::V2018_07_01_preview::Operations
|
28
32
|
|
29
33
|
module Models
|
30
|
-
|
31
|
-
Resource = Azure::Logic::Mgmt::
|
32
|
-
|
33
|
-
ResourceReference = Azure::Logic::Mgmt::
|
34
|
-
|
35
|
-
WorkflowParameter = Azure::Logic::Mgmt::
|
36
|
-
|
37
|
-
WorkflowFilter = Azure::Logic::Mgmt::
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
SubResource = Azure::Logic::Mgmt::
|
55
|
-
|
56
|
-
Sku = Azure::Logic::Mgmt::
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
WorkflowListResult = Azure::Logic::Mgmt::
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
34
|
+
X12EnvelopeOverride = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12EnvelopeOverride
|
35
|
+
Resource = Azure::Logic::Mgmt::V2018_07_01_preview::Models::Resource
|
36
|
+
X12ValidationOverride = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12ValidationOverride
|
37
|
+
ResourceReference = Azure::Logic::Mgmt::V2018_07_01_preview::Models::ResourceReference
|
38
|
+
X12MessageIdentifier = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12MessageIdentifier
|
39
|
+
WorkflowParameter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowParameter
|
40
|
+
X12SchemaReference = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12SchemaReference
|
41
|
+
WorkflowFilter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowFilter
|
42
|
+
X12DelimiterOverrides = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12DelimiterOverrides
|
43
|
+
AS2AgreementContent = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2AgreementContent
|
44
|
+
WorkflowVersionListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowVersionListResult
|
45
|
+
X12ValidationSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12ValidationSettings
|
46
|
+
RecurrenceSchedule = Azure::Logic::Mgmt::V2018_07_01_preview::Models::RecurrenceSchedule
|
47
|
+
X12FramingSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12FramingSettings
|
48
|
+
X12EnvelopeSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12EnvelopeSettings
|
49
|
+
WorkflowTriggerListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerListResult
|
50
|
+
X12AcknowledgementSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12AcknowledgementSettings
|
51
|
+
WorkflowTriggerCallbackUrl = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerCallbackUrl
|
52
|
+
X12MessageFilter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12MessageFilter
|
53
|
+
ContentHash = Azure::Logic::Mgmt::V2018_07_01_preview::Models::ContentHash
|
54
|
+
X12SecuritySettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12SecuritySettings
|
55
|
+
RequestHistoryListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::RequestHistoryListResult
|
56
|
+
X12ProcessingSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12ProcessingSettings
|
57
|
+
WorkflowTriggerHistoryFilter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerHistoryFilter
|
58
|
+
SubResource = Azure::Logic::Mgmt::V2018_07_01_preview::Models::SubResource
|
59
|
+
RequestHistoryProperties = Azure::Logic::Mgmt::V2018_07_01_preview::Models::RequestHistoryProperties
|
60
|
+
Sku = Azure::Logic::Mgmt::V2018_07_01_preview::Models::Sku
|
61
|
+
WorkflowRunFilter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunFilter
|
62
|
+
WorkflowRunListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunListResult
|
63
|
+
Expression = Azure::Logic::Mgmt::V2018_07_01_preview::Models::Expression
|
64
|
+
ErrorResponse = Azure::Logic::Mgmt::V2018_07_01_preview::Models::ErrorResponse
|
65
|
+
WorkflowListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowListResult
|
66
|
+
Request = Azure::Logic::Mgmt::V2018_07_01_preview::Models::Request
|
67
|
+
JsonSchema = Azure::Logic::Mgmt::V2018_07_01_preview::Models::JsonSchema
|
68
|
+
WorkflowRunActionListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunActionListResult
|
69
|
+
X12ProtocolSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12ProtocolSettings
|
70
|
+
GenerateUpgradedDefinitionParameters = Azure::Logic::Mgmt::V2018_07_01_preview::Models::GenerateUpgradedDefinitionParameters
|
71
|
+
X12OneWayAgreement = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12OneWayAgreement
|
72
|
+
BatchConfigurationCollection = Azure::Logic::Mgmt::V2018_07_01_preview::Models::BatchConfigurationCollection
|
73
|
+
X12AgreementContent = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12AgreementContent
|
74
|
+
GetCallbackUrlParameters = Azure::Logic::Mgmt::V2018_07_01_preview::Models::GetCallbackUrlParameters
|
75
|
+
EdifactValidationSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactValidationSettings
|
76
|
+
BatchReleaseCriteria = Azure::Logic::Mgmt::V2018_07_01_preview::Models::BatchReleaseCriteria
|
77
|
+
EdifactFramingSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactFramingSettings
|
78
|
+
IntegrationAccountSchemaFilter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSchemaFilter
|
79
|
+
EdifactEnvelopeSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactEnvelopeSettings
|
80
|
+
ArtifactProperties = Azure::Logic::Mgmt::V2018_07_01_preview::Models::ArtifactProperties
|
81
|
+
EdifactAcknowledgementSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactAcknowledgementSettings
|
82
|
+
IntegrationAccountMapFilter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountMapFilter
|
83
|
+
EdifactMessageFilter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactMessageFilter
|
84
|
+
B2BPartnerContent = Azure::Logic::Mgmt::V2018_07_01_preview::Models::B2BPartnerContent
|
85
|
+
EdifactProcessingSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactProcessingSettings
|
86
|
+
AssemblyCollection = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AssemblyCollection
|
87
|
+
EdifactEnvelopeOverride = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactEnvelopeOverride
|
88
|
+
IntegrationAccountPartnerFilter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountPartnerFilter
|
89
|
+
EdifactMessageIdentifier = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactMessageIdentifier
|
90
|
+
AS2AcknowledgementConnectionSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2AcknowledgementConnectionSettings
|
91
|
+
EdifactSchemaReference = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactSchemaReference
|
92
|
+
AS2SecuritySettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2SecuritySettings
|
93
|
+
EdifactValidationOverride = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactValidationOverride
|
94
|
+
AS2EnvelopeSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2EnvelopeSettings
|
95
|
+
EdifactDelimiterOverride = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactDelimiterOverride
|
96
|
+
AS2ProtocolSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2ProtocolSettings
|
97
|
+
EdifactProtocolSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactProtocolSettings
|
98
|
+
RecurrenceScheduleOccurrence = Azure::Logic::Mgmt::V2018_07_01_preview::Models::RecurrenceScheduleOccurrence
|
99
|
+
EdifactOneWayAgreement = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactOneWayAgreement
|
100
|
+
WorkflowTriggerFilter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerFilter
|
101
|
+
EdifactAgreementContent = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactAgreementContent
|
102
|
+
Correlation = Azure::Logic::Mgmt::V2018_07_01_preview::Models::Correlation
|
103
|
+
AgreementContent = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AgreementContent
|
104
|
+
WorkflowTriggerHistoryListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerHistoryListResult
|
105
|
+
RunCorrelation = Azure::Logic::Mgmt::V2018_07_01_preview::Models::RunCorrelation
|
106
|
+
Response = Azure::Logic::Mgmt::V2018_07_01_preview::Models::Response
|
107
|
+
IntegrationAccountAgreementListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountAgreementListResult
|
108
|
+
RetryHistory = Azure::Logic::Mgmt::V2018_07_01_preview::Models::RetryHistory
|
109
|
+
IntegrationAccountAgreementFilter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountAgreementFilter
|
110
|
+
RegenerateActionParameter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::RegenerateActionParameter
|
111
|
+
KeyVaultKeyReferenceKeyVault = Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyVaultKeyReferenceKeyVault
|
112
|
+
IntegrationAccountListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountListResult
|
113
|
+
KeyVaultKeyReference = Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyVaultKeyReference
|
114
|
+
IntegrationAccountSchemaListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSchemaListResult
|
115
|
+
OperationResultProperties = Azure::Logic::Mgmt::V2018_07_01_preview::Models::OperationResultProperties
|
116
|
+
IntegrationAccountMapListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountMapListResult
|
117
|
+
IntegrationAccountCertificateListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountCertificateListResult
|
118
|
+
PartnerContent = Azure::Logic::Mgmt::V2018_07_01_preview::Models::PartnerContent
|
119
|
+
IntegrationAccountSessionFilter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSessionFilter
|
120
|
+
AS2MessageConnectionSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2MessageConnectionSettings
|
121
|
+
WorkflowRunActionRepetitionDefinitionCollection = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunActionRepetitionDefinitionCollection
|
122
|
+
AS2ValidationSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2ValidationSettings
|
123
|
+
IntegrationAccountSessionListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSessionListResult
|
124
|
+
AS2OneWayAgreement = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2OneWayAgreement
|
125
|
+
OperationDisplay = Azure::Logic::Mgmt::V2018_07_01_preview::Models::OperationDisplay
|
126
|
+
WorkflowTriggerListCallbackUrlQueries = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerListCallbackUrlQueries
|
127
|
+
Operation = Azure::Logic::Mgmt::V2018_07_01_preview::Models::Operation
|
128
|
+
WorkflowRunTrigger = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunTrigger
|
129
|
+
OperationListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::OperationListResult
|
130
|
+
WorkflowRunActionFilter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunActionFilter
|
131
|
+
RepetitionIndex = Azure::Logic::Mgmt::V2018_07_01_preview::Models::RepetitionIndex
|
132
|
+
CallbackUrl = Azure::Logic::Mgmt::V2018_07_01_preview::Models::CallbackUrl
|
133
|
+
ListKeyVaultKeysDefinition = Azure::Logic::Mgmt::V2018_07_01_preview::Models::ListKeyVaultKeysDefinition
|
134
|
+
BusinessIdentity = Azure::Logic::Mgmt::V2018_07_01_preview::Models::BusinessIdentity
|
135
|
+
KeyVaultKeyAttributes = Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyVaultKeyAttributes
|
136
|
+
AS2MdnSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2MdnSettings
|
137
|
+
KeyVaultKey = Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyVaultKey
|
138
|
+
WorkflowTriggerRecurrence = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerRecurrence
|
139
|
+
KeyVaultKeyCollection = Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyVaultKeyCollection
|
140
|
+
ErrorProperties = Azure::Logic::Mgmt::V2018_07_01_preview::Models::ErrorProperties
|
141
|
+
TrackingEventErrorInfo = Azure::Logic::Mgmt::V2018_07_01_preview::Models::TrackingEventErrorInfo
|
142
|
+
IntegrationAccountMapPropertiesParametersSchema = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountMapPropertiesParametersSchema
|
143
|
+
TrackingEvent = Azure::Logic::Mgmt::V2018_07_01_preview::Models::TrackingEvent
|
144
|
+
AS2ErrorSettings = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2ErrorSettings
|
145
|
+
TrackingEventsDefinition = Azure::Logic::Mgmt::V2018_07_01_preview::Models::TrackingEventsDefinition
|
146
|
+
IntegrationAccountSku = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSku
|
147
|
+
SetTriggerStateActionDefinition = Azure::Logic::Mgmt::V2018_07_01_preview::Models::SetTriggerStateActionDefinition
|
148
|
+
ContentLink = Azure::Logic::Mgmt::V2018_07_01_preview::Models::ContentLink
|
149
|
+
ErrorInfo = Azure::Logic::Mgmt::V2018_07_01_preview::Models::ErrorInfo
|
150
|
+
IntegrationAccountPartnerListResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountPartnerListResult
|
151
|
+
ExpressionTraces = Azure::Logic::Mgmt::V2018_07_01_preview::Models::ExpressionTraces
|
152
|
+
Workflow = Azure::Logic::Mgmt::V2018_07_01_preview::Models::Workflow
|
153
|
+
WorkflowVersion = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowVersion
|
154
|
+
WorkflowTrigger = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTrigger
|
155
|
+
WorkflowTriggerHistory = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerHistory
|
156
|
+
WorkflowOutputParameter = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowOutputParameter
|
157
|
+
WorkflowRun = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRun
|
158
|
+
WorkflowRunAction = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunAction
|
159
|
+
IntegrationAccount = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccount
|
160
|
+
IntegrationAccountSchema = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSchema
|
161
|
+
IntegrationAccountMap = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountMap
|
162
|
+
IntegrationAccountPartner = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountPartner
|
163
|
+
IntegrationAccountAgreement = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountAgreement
|
164
|
+
IntegrationAccountCertificate = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountCertificate
|
165
|
+
IntegrationAccountSession = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSession
|
166
|
+
KeyVaultReference = Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyVaultReference
|
167
|
+
ExpressionRoot = Azure::Logic::Mgmt::V2018_07_01_preview::Models::ExpressionRoot
|
168
|
+
AzureResourceErrorInfo = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AzureResourceErrorInfo
|
169
|
+
WorkflowRunActionRepetitionDefinition = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunActionRepetitionDefinition
|
170
|
+
OperationResult = Azure::Logic::Mgmt::V2018_07_01_preview::Models::OperationResult
|
171
|
+
RunActionCorrelation = Azure::Logic::Mgmt::V2018_07_01_preview::Models::RunActionCorrelation
|
172
|
+
AssemblyDefinition = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AssemblyDefinition
|
173
|
+
ArtifactContentPropertiesDefinition = Azure::Logic::Mgmt::V2018_07_01_preview::Models::ArtifactContentPropertiesDefinition
|
174
|
+
AssemblyProperties = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AssemblyProperties
|
175
|
+
BatchConfigurationProperties = Azure::Logic::Mgmt::V2018_07_01_preview::Models::BatchConfigurationProperties
|
176
|
+
BatchConfiguration = Azure::Logic::Mgmt::V2018_07_01_preview::Models::BatchConfiguration
|
177
|
+
RequestHistory = Azure::Logic::Mgmt::V2018_07_01_preview::Models::RequestHistory
|
178
|
+
WorkflowProvisioningState = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowProvisioningState
|
179
|
+
WorkflowState = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowState
|
180
|
+
SkuName = Azure::Logic::Mgmt::V2018_07_01_preview::Models::SkuName
|
181
|
+
ParameterType = Azure::Logic::Mgmt::V2018_07_01_preview::Models::ParameterType
|
182
|
+
WorkflowTriggerProvisioningState = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerProvisioningState
|
183
|
+
WorkflowStatus = Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowStatus
|
184
|
+
RecurrenceFrequency = Azure::Logic::Mgmt::V2018_07_01_preview::Models::RecurrenceFrequency
|
185
|
+
DaysOfWeek = Azure::Logic::Mgmt::V2018_07_01_preview::Models::DaysOfWeek
|
186
|
+
DayOfWeek = Azure::Logic::Mgmt::V2018_07_01_preview::Models::DayOfWeek
|
187
|
+
KeyType = Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyType
|
188
|
+
IntegrationAccountSkuName = Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSkuName
|
189
|
+
SchemaType = Azure::Logic::Mgmt::V2018_07_01_preview::Models::SchemaType
|
190
|
+
MapType = Azure::Logic::Mgmt::V2018_07_01_preview::Models::MapType
|
191
|
+
PartnerType = Azure::Logic::Mgmt::V2018_07_01_preview::Models::PartnerType
|
192
|
+
AgreementType = Azure::Logic::Mgmt::V2018_07_01_preview::Models::AgreementType
|
193
|
+
HashingAlgorithm = Azure::Logic::Mgmt::V2018_07_01_preview::Models::HashingAlgorithm
|
194
|
+
EncryptionAlgorithm = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EncryptionAlgorithm
|
195
|
+
SigningAlgorithm = Azure::Logic::Mgmt::V2018_07_01_preview::Models::SigningAlgorithm
|
196
|
+
TrailingSeparatorPolicy = Azure::Logic::Mgmt::V2018_07_01_preview::Models::TrailingSeparatorPolicy
|
197
|
+
X12CharacterSet = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12CharacterSet
|
198
|
+
SegmentTerminatorSuffix = Azure::Logic::Mgmt::V2018_07_01_preview::Models::SegmentTerminatorSuffix
|
199
|
+
X12DateFormat = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12DateFormat
|
200
|
+
X12TimeFormat = Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12TimeFormat
|
201
|
+
UsageIndicator = Azure::Logic::Mgmt::V2018_07_01_preview::Models::UsageIndicator
|
202
|
+
MessageFilterType = Azure::Logic::Mgmt::V2018_07_01_preview::Models::MessageFilterType
|
203
|
+
EdifactCharacterSet = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactCharacterSet
|
204
|
+
EdifactDecimalIndicator = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactDecimalIndicator
|
205
|
+
TrackEventsOperationOptions = Azure::Logic::Mgmt::V2018_07_01_preview::Models::TrackEventsOperationOptions
|
206
|
+
EventLevel = Azure::Logic::Mgmt::V2018_07_01_preview::Models::EventLevel
|
207
|
+
TrackingRecordType = Azure::Logic::Mgmt::V2018_07_01_preview::Models::TrackingRecordType
|
201
208
|
end
|
202
209
|
|
203
210
|
class LogicManagementClass
|
204
|
-
attr_reader :workflows, :workflow_versions, :workflow_triggers, :workflow_trigger_histories, :workflow_runs, :workflow_run_actions, :workflow_run_action_repetitions, :
|
211
|
+
attr_reader :workflows, :workflow_versions, :workflow_triggers, :workflow_version_triggers, :workflow_trigger_histories, :workflow_runs, :workflow_run_actions, :workflow_run_action_repetitions, :workflow_run_action_repetitions_request_histories, :workflow_run_action_request_histories, :workflow_run_action_scope_repetitions, :workflow_run_operations, :integration_accounts, :integration_account_assemblies, :integration_account_batch_configurations, :integration_account_schemas, :integration_account_maps, :integration_account_partners, :integration_account_agreements, :integration_account_certificates, :integration_account_sessions, :operations, :configurable, :base_url, :options, :model_classes
|
205
212
|
|
206
213
|
def initialize(configurable, base_url=nil, options=nil)
|
207
214
|
@configurable, @base_url, @options = configurable, base_url, options
|
208
215
|
|
209
|
-
@client_0 = Azure::Logic::Mgmt::
|
216
|
+
@client_0 = Azure::Logic::Mgmt::V2018_07_01_preview::LogicManagementClient.new(configurable.credentials, base_url, options)
|
210
217
|
if(@client_0.respond_to?(:subscription_id))
|
211
218
|
@client_0.subscription_id = configurable.subscription_id
|
212
219
|
end
|
@@ -214,21 +221,25 @@ module Azure::Profiles::Latest
|
|
214
221
|
@workflows = @client_0.workflows
|
215
222
|
@workflow_versions = @client_0.workflow_versions
|
216
223
|
@workflow_triggers = @client_0.workflow_triggers
|
224
|
+
@workflow_version_triggers = @client_0.workflow_version_triggers
|
217
225
|
@workflow_trigger_histories = @client_0.workflow_trigger_histories
|
218
226
|
@workflow_runs = @client_0.workflow_runs
|
219
227
|
@workflow_run_actions = @client_0.workflow_run_actions
|
220
228
|
@workflow_run_action_repetitions = @client_0.workflow_run_action_repetitions
|
221
|
-
@
|
229
|
+
@workflow_run_action_repetitions_request_histories = @client_0.workflow_run_action_repetitions_request_histories
|
230
|
+
@workflow_run_action_request_histories = @client_0.workflow_run_action_request_histories
|
231
|
+
@workflow_run_action_scope_repetitions = @client_0.workflow_run_action_scope_repetitions
|
222
232
|
@workflow_run_operations = @client_0.workflow_run_operations
|
223
233
|
@integration_accounts = @client_0.integration_accounts
|
224
234
|
@integration_account_assemblies = @client_0.integration_account_assemblies
|
225
235
|
@integration_account_batch_configurations = @client_0.integration_account_batch_configurations
|
226
|
-
@
|
227
|
-
@
|
228
|
-
@
|
229
|
-
@
|
230
|
-
@
|
231
|
-
@
|
236
|
+
@integration_account_schemas = @client_0.integration_account_schemas
|
237
|
+
@integration_account_maps = @client_0.integration_account_maps
|
238
|
+
@integration_account_partners = @client_0.integration_account_partners
|
239
|
+
@integration_account_agreements = @client_0.integration_account_agreements
|
240
|
+
@integration_account_certificates = @client_0.integration_account_certificates
|
241
|
+
@integration_account_sessions = @client_0.integration_account_sessions
|
242
|
+
@operations = @client_0.operations
|
232
243
|
|
233
244
|
@model_classes = ModelClasses.new
|
234
245
|
end
|
@@ -247,518 +258,527 @@ module Azure::Profiles::Latest
|
|
247
258
|
end
|
248
259
|
|
249
260
|
class ModelClasses
|
250
|
-
def
|
251
|
-
Azure::Logic::Mgmt::
|
261
|
+
def x12_envelope_override
|
262
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12EnvelopeOverride
|
252
263
|
end
|
253
264
|
def resource
|
254
|
-
Azure::Logic::Mgmt::
|
265
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::Resource
|
255
266
|
end
|
256
|
-
def
|
257
|
-
Azure::Logic::Mgmt::
|
267
|
+
def x12_validation_override
|
268
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12ValidationOverride
|
258
269
|
end
|
259
270
|
def resource_reference
|
260
|
-
Azure::Logic::Mgmt::
|
271
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::ResourceReference
|
261
272
|
end
|
262
|
-
def
|
263
|
-
Azure::Logic::Mgmt::
|
273
|
+
def x12_message_identifier
|
274
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12MessageIdentifier
|
264
275
|
end
|
265
276
|
def workflow_parameter
|
266
|
-
Azure::Logic::Mgmt::
|
277
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowParameter
|
267
278
|
end
|
268
|
-
def
|
269
|
-
Azure::Logic::Mgmt::
|
279
|
+
def x12_schema_reference
|
280
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12SchemaReference
|
270
281
|
end
|
271
282
|
def workflow_filter
|
272
|
-
Azure::Logic::Mgmt::
|
273
|
-
end
|
274
|
-
def x12_message_identifier
|
275
|
-
Azure::Logic::Mgmt::V2016_06_01::Models::X12MessageIdentifier
|
283
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowFilter
|
276
284
|
end
|
277
|
-
def
|
278
|
-
Azure::Logic::Mgmt::
|
279
|
-
end
|
280
|
-
def as2_one_way_agreement
|
281
|
-
Azure::Logic::Mgmt::V2016_06_01::Models::AS2OneWayAgreement
|
282
|
-
end
|
283
|
-
def recurrence_schedule_occurrence
|
284
|
-
Azure::Logic::Mgmt::V2016_06_01::Models::RecurrenceScheduleOccurrence
|
285
|
+
def x12_delimiter_overrides
|
286
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12DelimiterOverrides
|
285
287
|
end
|
286
288
|
def as2_agreement_content
|
287
|
-
Azure::Logic::Mgmt::
|
289
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2AgreementContent
|
288
290
|
end
|
289
|
-
def
|
290
|
-
Azure::Logic::Mgmt::
|
291
|
+
def workflow_version_list_result
|
292
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowVersionListResult
|
291
293
|
end
|
292
294
|
def x12_validation_settings
|
293
|
-
Azure::Logic::Mgmt::
|
295
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12ValidationSettings
|
294
296
|
end
|
295
|
-
def
|
296
|
-
Azure::Logic::Mgmt::
|
297
|
+
def recurrence_schedule
|
298
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::RecurrenceSchedule
|
297
299
|
end
|
298
300
|
def x12_framing_settings
|
299
|
-
Azure::Logic::Mgmt::
|
300
|
-
end
|
301
|
-
def workflow_trigger_list_callback_url_queries
|
302
|
-
Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerListCallbackUrlQueries
|
301
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12FramingSettings
|
303
302
|
end
|
304
303
|
def x12_envelope_settings
|
305
|
-
Azure::Logic::Mgmt::
|
304
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12EnvelopeSettings
|
306
305
|
end
|
307
|
-
def
|
308
|
-
Azure::Logic::Mgmt::
|
306
|
+
def workflow_trigger_list_result
|
307
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerListResult
|
309
308
|
end
|
310
309
|
def x12_acknowledgement_settings
|
311
|
-
Azure::Logic::Mgmt::
|
310
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12AcknowledgementSettings
|
312
311
|
end
|
313
|
-
def
|
314
|
-
Azure::Logic::Mgmt::
|
312
|
+
def workflow_trigger_callback_url
|
313
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerCallbackUrl
|
315
314
|
end
|
316
315
|
def x12_message_filter
|
317
|
-
Azure::Logic::Mgmt::
|
316
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12MessageFilter
|
318
317
|
end
|
319
|
-
def
|
320
|
-
Azure::Logic::Mgmt::
|
318
|
+
def content_hash
|
319
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::ContentHash
|
321
320
|
end
|
322
|
-
def
|
323
|
-
Azure::Logic::Mgmt::
|
321
|
+
def x12_security_settings
|
322
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12SecuritySettings
|
324
323
|
end
|
325
|
-
def
|
326
|
-
Azure::Logic::Mgmt::
|
324
|
+
def request_history_list_result
|
325
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::RequestHistoryListResult
|
327
326
|
end
|
328
|
-
def
|
329
|
-
Azure::Logic::Mgmt::
|
327
|
+
def x12_processing_settings
|
328
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12ProcessingSettings
|
330
329
|
end
|
331
|
-
def
|
332
|
-
Azure::Logic::Mgmt::
|
330
|
+
def workflow_trigger_history_filter
|
331
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerHistoryFilter
|
333
332
|
end
|
334
|
-
def
|
335
|
-
Azure::Logic::Mgmt::
|
333
|
+
def sub_resource
|
334
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::SubResource
|
336
335
|
end
|
337
|
-
def
|
338
|
-
Azure::Logic::Mgmt::
|
336
|
+
def request_history_properties
|
337
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::RequestHistoryProperties
|
339
338
|
end
|
340
|
-
def
|
341
|
-
Azure::Logic::Mgmt::
|
339
|
+
def sku
|
340
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::Sku
|
342
341
|
end
|
343
|
-
def
|
344
|
-
Azure::Logic::Mgmt::
|
342
|
+
def workflow_run_filter
|
343
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunFilter
|
345
344
|
end
|
346
|
-
def
|
347
|
-
Azure::Logic::Mgmt::
|
345
|
+
def workflow_run_list_result
|
346
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunListResult
|
348
347
|
end
|
349
|
-
def
|
350
|
-
Azure::Logic::Mgmt::
|
348
|
+
def expression
|
349
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::Expression
|
351
350
|
end
|
352
|
-
def
|
353
|
-
Azure::Logic::Mgmt::
|
351
|
+
def error_response
|
352
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::ErrorResponse
|
354
353
|
end
|
355
|
-
def
|
356
|
-
Azure::Logic::Mgmt::
|
354
|
+
def workflow_list_result
|
355
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowListResult
|
357
356
|
end
|
358
|
-
def
|
359
|
-
Azure::Logic::Mgmt::
|
357
|
+
def request
|
358
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::Request
|
360
359
|
end
|
361
|
-
def
|
362
|
-
Azure::Logic::Mgmt::
|
360
|
+
def json_schema
|
361
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::JsonSchema
|
363
362
|
end
|
364
|
-
def
|
365
|
-
Azure::Logic::Mgmt::
|
363
|
+
def workflow_run_action_list_result
|
364
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunActionListResult
|
366
365
|
end
|
367
366
|
def x12_protocol_settings
|
368
|
-
Azure::Logic::Mgmt::
|
367
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12ProtocolSettings
|
369
368
|
end
|
370
|
-
def
|
371
|
-
Azure::Logic::Mgmt::
|
369
|
+
def generate_upgraded_definition_parameters
|
370
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::GenerateUpgradedDefinitionParameters
|
372
371
|
end
|
373
372
|
def x12_one_way_agreement
|
374
|
-
Azure::Logic::Mgmt::
|
373
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12OneWayAgreement
|
375
374
|
end
|
376
|
-
def
|
377
|
-
Azure::Logic::Mgmt::
|
375
|
+
def batch_configuration_collection
|
376
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::BatchConfigurationCollection
|
378
377
|
end
|
379
378
|
def x12_agreement_content
|
380
|
-
Azure::Logic::Mgmt::
|
379
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12AgreementContent
|
381
380
|
end
|
382
|
-
def
|
383
|
-
Azure::Logic::Mgmt::
|
381
|
+
def get_callback_url_parameters
|
382
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::GetCallbackUrlParameters
|
384
383
|
end
|
385
384
|
def edifact_validation_settings
|
386
|
-
Azure::Logic::Mgmt::
|
385
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactValidationSettings
|
387
386
|
end
|
388
|
-
def
|
389
|
-
Azure::Logic::Mgmt::
|
387
|
+
def batch_release_criteria
|
388
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::BatchReleaseCriteria
|
390
389
|
end
|
391
390
|
def edifact_framing_settings
|
392
|
-
Azure::Logic::Mgmt::
|
391
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactFramingSettings
|
393
392
|
end
|
394
|
-
def
|
395
|
-
Azure::Logic::Mgmt::
|
393
|
+
def integration_account_schema_filter
|
394
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSchemaFilter
|
396
395
|
end
|
397
396
|
def edifact_envelope_settings
|
398
|
-
Azure::Logic::Mgmt::
|
397
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactEnvelopeSettings
|
399
398
|
end
|
400
|
-
def
|
401
|
-
Azure::Logic::Mgmt::
|
399
|
+
def artifact_properties
|
400
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::ArtifactProperties
|
402
401
|
end
|
403
402
|
def edifact_acknowledgement_settings
|
404
|
-
Azure::Logic::Mgmt::
|
403
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactAcknowledgementSettings
|
405
404
|
end
|
406
|
-
def
|
407
|
-
Azure::Logic::Mgmt::
|
405
|
+
def integration_account_map_filter
|
406
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountMapFilter
|
408
407
|
end
|
409
408
|
def edifact_message_filter
|
410
|
-
Azure::Logic::Mgmt::
|
409
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactMessageFilter
|
411
410
|
end
|
412
|
-
def
|
413
|
-
Azure::Logic::Mgmt::
|
411
|
+
def b2_bpartner_content
|
412
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::B2BPartnerContent
|
414
413
|
end
|
415
414
|
def edifact_processing_settings
|
416
|
-
Azure::Logic::Mgmt::
|
415
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactProcessingSettings
|
417
416
|
end
|
418
|
-
def
|
419
|
-
Azure::Logic::Mgmt::
|
417
|
+
def assembly_collection
|
418
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AssemblyCollection
|
420
419
|
end
|
421
420
|
def edifact_envelope_override
|
422
|
-
Azure::Logic::Mgmt::
|
421
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactEnvelopeOverride
|
423
422
|
end
|
424
|
-
def
|
425
|
-
Azure::Logic::Mgmt::
|
423
|
+
def integration_account_partner_filter
|
424
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountPartnerFilter
|
426
425
|
end
|
427
426
|
def edifact_message_identifier
|
428
|
-
Azure::Logic::Mgmt::
|
427
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactMessageIdentifier
|
429
428
|
end
|
430
|
-
def
|
431
|
-
Azure::Logic::Mgmt::
|
429
|
+
def as2_acknowledgement_connection_settings
|
430
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2AcknowledgementConnectionSettings
|
432
431
|
end
|
433
432
|
def edifact_schema_reference
|
434
|
-
Azure::Logic::Mgmt::
|
433
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactSchemaReference
|
435
434
|
end
|
436
|
-
def
|
437
|
-
Azure::Logic::Mgmt::
|
435
|
+
def as2_security_settings
|
436
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2SecuritySettings
|
438
437
|
end
|
439
438
|
def edifact_validation_override
|
440
|
-
Azure::Logic::Mgmt::
|
439
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactValidationOverride
|
441
440
|
end
|
442
|
-
def
|
443
|
-
Azure::Logic::Mgmt::
|
441
|
+
def as2_envelope_settings
|
442
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2EnvelopeSettings
|
444
443
|
end
|
445
444
|
def edifact_delimiter_override
|
446
|
-
Azure::Logic::Mgmt::
|
445
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactDelimiterOverride
|
447
446
|
end
|
448
|
-
def
|
449
|
-
Azure::Logic::Mgmt::
|
447
|
+
def as2_protocol_settings
|
448
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2ProtocolSettings
|
450
449
|
end
|
451
450
|
def edifact_protocol_settings
|
452
|
-
Azure::Logic::Mgmt::
|
451
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactProtocolSettings
|
453
452
|
end
|
454
|
-
def
|
455
|
-
Azure::Logic::Mgmt::
|
453
|
+
def recurrence_schedule_occurrence
|
454
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::RecurrenceScheduleOccurrence
|
456
455
|
end
|
457
456
|
def edifact_one_way_agreement
|
458
|
-
Azure::Logic::Mgmt::
|
457
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactOneWayAgreement
|
459
458
|
end
|
460
|
-
def
|
461
|
-
Azure::Logic::Mgmt::
|
459
|
+
def workflow_trigger_filter
|
460
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerFilter
|
462
461
|
end
|
463
462
|
def edifact_agreement_content
|
464
|
-
Azure::Logic::Mgmt::
|
463
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactAgreementContent
|
465
464
|
end
|
466
|
-
def
|
467
|
-
Azure::Logic::Mgmt::
|
465
|
+
def correlation
|
466
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::Correlation
|
468
467
|
end
|
469
468
|
def agreement_content
|
470
|
-
Azure::Logic::Mgmt::
|
469
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AgreementContent
|
471
470
|
end
|
472
|
-
def
|
473
|
-
Azure::Logic::Mgmt::
|
471
|
+
def workflow_trigger_history_list_result
|
472
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerHistoryListResult
|
474
473
|
end
|
475
|
-
def
|
476
|
-
Azure::Logic::Mgmt::
|
474
|
+
def run_correlation
|
475
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::RunCorrelation
|
477
476
|
end
|
478
|
-
def
|
479
|
-
Azure::Logic::Mgmt::
|
477
|
+
def response
|
478
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::Response
|
480
479
|
end
|
481
480
|
def integration_account_agreement_list_result
|
482
|
-
Azure::Logic::Mgmt::
|
481
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountAgreementListResult
|
483
482
|
end
|
484
|
-
def
|
485
|
-
Azure::Logic::Mgmt::
|
483
|
+
def retry_history
|
484
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::RetryHistory
|
486
485
|
end
|
487
486
|
def integration_account_agreement_filter
|
488
|
-
Azure::Logic::Mgmt::
|
487
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountAgreementFilter
|
489
488
|
end
|
490
|
-
def
|
491
|
-
Azure::Logic::Mgmt::
|
489
|
+
def regenerate_action_parameter
|
490
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::RegenerateActionParameter
|
492
491
|
end
|
493
492
|
def key_vault_key_reference_key_vault
|
494
|
-
Azure::Logic::Mgmt::
|
493
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyVaultKeyReferenceKeyVault
|
495
494
|
end
|
496
|
-
def
|
497
|
-
Azure::Logic::Mgmt::
|
495
|
+
def integration_account_list_result
|
496
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountListResult
|
498
497
|
end
|
499
498
|
def key_vault_key_reference
|
500
|
-
Azure::Logic::Mgmt::
|
499
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyVaultKeyReference
|
501
500
|
end
|
502
|
-
def
|
503
|
-
Azure::Logic::Mgmt::
|
501
|
+
def integration_account_schema_list_result
|
502
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSchemaListResult
|
504
503
|
end
|
505
|
-
def
|
506
|
-
Azure::Logic::Mgmt::
|
504
|
+
def operation_result_properties
|
505
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::OperationResultProperties
|
507
506
|
end
|
508
|
-
def
|
509
|
-
Azure::Logic::Mgmt::
|
507
|
+
def integration_account_map_list_result
|
508
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountMapListResult
|
510
509
|
end
|
511
510
|
def integration_account_certificate_list_result
|
512
|
-
Azure::Logic::Mgmt::
|
511
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountCertificateListResult
|
513
512
|
end
|
514
|
-
def
|
515
|
-
Azure::Logic::Mgmt::
|
513
|
+
def partner_content
|
514
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::PartnerContent
|
516
515
|
end
|
517
516
|
def integration_account_session_filter
|
518
|
-
Azure::Logic::Mgmt::
|
517
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSessionFilter
|
519
518
|
end
|
520
|
-
def
|
521
|
-
Azure::Logic::Mgmt::
|
519
|
+
def as2_message_connection_settings
|
520
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2MessageConnectionSettings
|
522
521
|
end
|
523
|
-
def
|
524
|
-
Azure::Logic::Mgmt::
|
522
|
+
def workflow_run_action_repetition_definition_collection
|
523
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunActionRepetitionDefinitionCollection
|
524
|
+
end
|
525
|
+
def as2_validation_settings
|
526
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2ValidationSettings
|
525
527
|
end
|
526
528
|
def integration_account_session_list_result
|
527
|
-
Azure::Logic::Mgmt::
|
529
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSessionListResult
|
528
530
|
end
|
529
|
-
def
|
530
|
-
Azure::Logic::Mgmt::
|
531
|
+
def as2_one_way_agreement
|
532
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2OneWayAgreement
|
531
533
|
end
|
532
534
|
def operation_display
|
533
|
-
Azure::Logic::Mgmt::
|
535
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::OperationDisplay
|
534
536
|
end
|
535
|
-
def
|
536
|
-
Azure::Logic::Mgmt::
|
537
|
+
def workflow_trigger_list_callback_url_queries
|
538
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerListCallbackUrlQueries
|
537
539
|
end
|
538
540
|
def operation
|
539
|
-
Azure::Logic::Mgmt::
|
541
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::Operation
|
540
542
|
end
|
541
|
-
def
|
542
|
-
Azure::Logic::Mgmt::
|
543
|
+
def workflow_run_trigger
|
544
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunTrigger
|
543
545
|
end
|
544
546
|
def operation_list_result
|
545
|
-
Azure::Logic::Mgmt::
|
547
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::OperationListResult
|
546
548
|
end
|
547
|
-
def
|
548
|
-
Azure::Logic::Mgmt::
|
549
|
+
def workflow_run_action_filter
|
550
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunActionFilter
|
549
551
|
end
|
550
|
-
def
|
551
|
-
Azure::Logic::Mgmt::
|
552
|
+
def repetition_index
|
553
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::RepetitionIndex
|
552
554
|
end
|
553
|
-
def
|
554
|
-
Azure::Logic::Mgmt::
|
555
|
+
def callback_url
|
556
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::CallbackUrl
|
555
557
|
end
|
556
558
|
def list_key_vault_keys_definition
|
557
|
-
Azure::Logic::Mgmt::
|
559
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::ListKeyVaultKeysDefinition
|
558
560
|
end
|
559
|
-
def
|
560
|
-
Azure::Logic::Mgmt::
|
561
|
+
def business_identity
|
562
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::BusinessIdentity
|
561
563
|
end
|
562
564
|
def key_vault_key_attributes
|
563
|
-
Azure::Logic::Mgmt::
|
565
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyVaultKeyAttributes
|
564
566
|
end
|
565
|
-
def
|
566
|
-
Azure::Logic::Mgmt::
|
567
|
+
def as2_mdn_settings
|
568
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2MdnSettings
|
567
569
|
end
|
568
570
|
def key_vault_key
|
569
|
-
Azure::Logic::Mgmt::
|
571
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyVaultKey
|
570
572
|
end
|
571
|
-
def
|
572
|
-
Azure::Logic::Mgmt::
|
573
|
+
def workflow_trigger_recurrence
|
574
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerRecurrence
|
573
575
|
end
|
574
576
|
def key_vault_key_collection
|
575
|
-
Azure::Logic::Mgmt::
|
577
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyVaultKeyCollection
|
576
578
|
end
|
577
|
-
def
|
578
|
-
Azure::Logic::Mgmt::
|
579
|
+
def error_properties
|
580
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::ErrorProperties
|
579
581
|
end
|
580
582
|
def tracking_event_error_info
|
581
|
-
Azure::Logic::Mgmt::
|
583
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::TrackingEventErrorInfo
|
582
584
|
end
|
583
|
-
def
|
584
|
-
Azure::Logic::Mgmt::
|
585
|
+
def integration_account_map_properties_parameters_schema
|
586
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountMapPropertiesParametersSchema
|
585
587
|
end
|
586
588
|
def tracking_event
|
587
|
-
Azure::Logic::Mgmt::
|
589
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::TrackingEvent
|
588
590
|
end
|
589
|
-
def
|
590
|
-
Azure::Logic::Mgmt::
|
591
|
+
def as2_error_settings
|
592
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AS2ErrorSettings
|
591
593
|
end
|
592
594
|
def tracking_events_definition
|
593
|
-
Azure::Logic::Mgmt::
|
595
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::TrackingEventsDefinition
|
596
|
+
end
|
597
|
+
def integration_account_sku
|
598
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSku
|
599
|
+
end
|
600
|
+
def set_trigger_state_action_definition
|
601
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::SetTriggerStateActionDefinition
|
602
|
+
end
|
603
|
+
def content_link
|
604
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::ContentLink
|
605
|
+
end
|
606
|
+
def error_info
|
607
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::ErrorInfo
|
608
|
+
end
|
609
|
+
def integration_account_partner_list_result
|
610
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountPartnerListResult
|
611
|
+
end
|
612
|
+
def expression_traces
|
613
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::ExpressionTraces
|
594
614
|
end
|
595
615
|
def workflow
|
596
|
-
Azure::Logic::Mgmt::
|
616
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::Workflow
|
597
617
|
end
|
598
618
|
def workflow_version
|
599
|
-
Azure::Logic::Mgmt::
|
619
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowVersion
|
600
620
|
end
|
601
621
|
def workflow_trigger
|
602
|
-
Azure::Logic::Mgmt::
|
622
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTrigger
|
603
623
|
end
|
604
624
|
def workflow_trigger_history
|
605
|
-
Azure::Logic::Mgmt::
|
625
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerHistory
|
606
626
|
end
|
607
627
|
def workflow_output_parameter
|
608
|
-
Azure::Logic::Mgmt::
|
628
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowOutputParameter
|
609
629
|
end
|
610
630
|
def workflow_run
|
611
|
-
Azure::Logic::Mgmt::
|
631
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRun
|
612
632
|
end
|
613
633
|
def workflow_run_action
|
614
|
-
Azure::Logic::Mgmt::
|
634
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunAction
|
615
635
|
end
|
616
636
|
def integration_account
|
617
|
-
Azure::Logic::Mgmt::
|
637
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccount
|
618
638
|
end
|
619
639
|
def integration_account_schema
|
620
|
-
Azure::Logic::Mgmt::
|
640
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSchema
|
621
641
|
end
|
622
642
|
def integration_account_map
|
623
|
-
Azure::Logic::Mgmt::
|
643
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountMap
|
624
644
|
end
|
625
645
|
def integration_account_partner
|
626
|
-
Azure::Logic::Mgmt::
|
646
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountPartner
|
627
647
|
end
|
628
648
|
def integration_account_agreement
|
629
|
-
Azure::Logic::Mgmt::
|
649
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountAgreement
|
630
650
|
end
|
631
651
|
def integration_account_certificate
|
632
|
-
Azure::Logic::Mgmt::
|
652
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountCertificate
|
633
653
|
end
|
634
654
|
def integration_account_session
|
635
|
-
Azure::Logic::Mgmt::
|
655
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSession
|
636
656
|
end
|
637
657
|
def key_vault_reference
|
638
|
-
Azure::Logic::Mgmt::
|
658
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyVaultReference
|
639
659
|
end
|
640
660
|
def expression_root
|
641
|
-
Azure::Logic::Mgmt::
|
661
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::ExpressionRoot
|
642
662
|
end
|
643
663
|
def azure_resource_error_info
|
644
|
-
Azure::Logic::Mgmt::
|
664
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AzureResourceErrorInfo
|
645
665
|
end
|
646
666
|
def workflow_run_action_repetition_definition
|
647
|
-
Azure::Logic::Mgmt::
|
667
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowRunActionRepetitionDefinition
|
648
668
|
end
|
649
669
|
def operation_result
|
650
|
-
Azure::Logic::Mgmt::
|
670
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::OperationResult
|
651
671
|
end
|
652
672
|
def run_action_correlation
|
653
|
-
Azure::Logic::Mgmt::
|
673
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::RunActionCorrelation
|
654
674
|
end
|
655
675
|
def assembly_definition
|
656
|
-
Azure::Logic::Mgmt::
|
676
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AssemblyDefinition
|
657
677
|
end
|
658
678
|
def artifact_content_properties_definition
|
659
|
-
Azure::Logic::Mgmt::
|
679
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::ArtifactContentPropertiesDefinition
|
660
680
|
end
|
661
681
|
def assembly_properties
|
662
|
-
Azure::Logic::Mgmt::
|
682
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AssemblyProperties
|
663
683
|
end
|
664
684
|
def batch_configuration_properties
|
665
|
-
Azure::Logic::Mgmt::
|
685
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::BatchConfigurationProperties
|
666
686
|
end
|
667
687
|
def batch_configuration
|
668
|
-
Azure::Logic::Mgmt::
|
688
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::BatchConfiguration
|
689
|
+
end
|
690
|
+
def request_history
|
691
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::RequestHistory
|
669
692
|
end
|
670
693
|
def workflow_provisioning_state
|
671
|
-
Azure::Logic::Mgmt::
|
694
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowProvisioningState
|
672
695
|
end
|
673
696
|
def workflow_state
|
674
|
-
Azure::Logic::Mgmt::
|
697
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowState
|
675
698
|
end
|
676
699
|
def sku_name
|
677
|
-
Azure::Logic::Mgmt::
|
700
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::SkuName
|
678
701
|
end
|
679
702
|
def parameter_type
|
680
|
-
Azure::Logic::Mgmt::
|
703
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::ParameterType
|
681
704
|
end
|
682
705
|
def workflow_trigger_provisioning_state
|
683
|
-
Azure::Logic::Mgmt::
|
706
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowTriggerProvisioningState
|
684
707
|
end
|
685
708
|
def workflow_status
|
686
|
-
Azure::Logic::Mgmt::
|
709
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::WorkflowStatus
|
687
710
|
end
|
688
711
|
def recurrence_frequency
|
689
|
-
Azure::Logic::Mgmt::
|
712
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::RecurrenceFrequency
|
690
713
|
end
|
691
714
|
def days_of_week
|
692
|
-
Azure::Logic::Mgmt::
|
715
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::DaysOfWeek
|
693
716
|
end
|
694
717
|
def day_of_week
|
695
|
-
Azure::Logic::Mgmt::
|
718
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::DayOfWeek
|
696
719
|
end
|
697
720
|
def key_type
|
698
|
-
Azure::Logic::Mgmt::
|
721
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::KeyType
|
699
722
|
end
|
700
723
|
def integration_account_sku_name
|
701
|
-
Azure::Logic::Mgmt::
|
724
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::IntegrationAccountSkuName
|
702
725
|
end
|
703
726
|
def schema_type
|
704
|
-
Azure::Logic::Mgmt::
|
727
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::SchemaType
|
705
728
|
end
|
706
729
|
def map_type
|
707
|
-
Azure::Logic::Mgmt::
|
730
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::MapType
|
708
731
|
end
|
709
732
|
def partner_type
|
710
|
-
Azure::Logic::Mgmt::
|
733
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::PartnerType
|
711
734
|
end
|
712
735
|
def agreement_type
|
713
|
-
Azure::Logic::Mgmt::
|
736
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::AgreementType
|
714
737
|
end
|
715
738
|
def hashing_algorithm
|
716
|
-
Azure::Logic::Mgmt::
|
739
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::HashingAlgorithm
|
717
740
|
end
|
718
741
|
def encryption_algorithm
|
719
|
-
Azure::Logic::Mgmt::
|
742
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EncryptionAlgorithm
|
720
743
|
end
|
721
744
|
def signing_algorithm
|
722
|
-
Azure::Logic::Mgmt::
|
745
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::SigningAlgorithm
|
723
746
|
end
|
724
747
|
def trailing_separator_policy
|
725
|
-
Azure::Logic::Mgmt::
|
748
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::TrailingSeparatorPolicy
|
726
749
|
end
|
727
750
|
def x12_character_set
|
728
|
-
Azure::Logic::Mgmt::
|
751
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12CharacterSet
|
729
752
|
end
|
730
753
|
def segment_terminator_suffix
|
731
|
-
Azure::Logic::Mgmt::
|
754
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::SegmentTerminatorSuffix
|
732
755
|
end
|
733
756
|
def x12_date_format
|
734
|
-
Azure::Logic::Mgmt::
|
757
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12DateFormat
|
735
758
|
end
|
736
759
|
def x12_time_format
|
737
|
-
Azure::Logic::Mgmt::
|
760
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::X12TimeFormat
|
738
761
|
end
|
739
762
|
def usage_indicator
|
740
|
-
Azure::Logic::Mgmt::
|
763
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::UsageIndicator
|
741
764
|
end
|
742
765
|
def message_filter_type
|
743
|
-
Azure::Logic::Mgmt::
|
766
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::MessageFilterType
|
744
767
|
end
|
745
768
|
def edifact_character_set
|
746
|
-
Azure::Logic::Mgmt::
|
769
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactCharacterSet
|
747
770
|
end
|
748
771
|
def edifact_decimal_indicator
|
749
|
-
Azure::Logic::Mgmt::
|
772
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EdifactDecimalIndicator
|
750
773
|
end
|
751
774
|
def track_events_operation_options
|
752
|
-
Azure::Logic::Mgmt::
|
775
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::TrackEventsOperationOptions
|
753
776
|
end
|
754
777
|
def event_level
|
755
|
-
Azure::Logic::Mgmt::
|
778
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::EventLevel
|
756
779
|
end
|
757
780
|
def tracking_record_type
|
758
|
-
Azure::Logic::Mgmt::
|
759
|
-
end
|
760
|
-
def access_key_type
|
761
|
-
Azure::Logic::Mgmt::V2016_06_01::Models::AccessKeyType
|
781
|
+
Azure::Logic::Mgmt::V2018_07_01_preview::Models::TrackingRecordType
|
762
782
|
end
|
763
783
|
end
|
764
784
|
end
|