azure_mgmt_logic 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.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/lib/2015-02-01-preview/generated/azure_mgmt_logic/logic_management_client.rb +4 -1
  3. data/lib/2015-02-01-preview/generated/azure_mgmt_logic/workflow_access_keys.rb +45 -42
  4. data/lib/2015-02-01-preview/generated/azure_mgmt_logic/workflow_run_actions.rb +21 -18
  5. data/lib/2015-02-01-preview/generated/azure_mgmt_logic/workflow_runs.rb +27 -23
  6. data/lib/2015-02-01-preview/generated/azure_mgmt_logic/workflow_trigger_histories.rb +21 -18
  7. data/lib/2015-02-01-preview/generated/azure_mgmt_logic/workflow_triggers.rb +27 -23
  8. data/lib/2015-02-01-preview/generated/azure_mgmt_logic/workflow_versions.rb +6 -5
  9. data/lib/2015-02-01-preview/generated/azure_mgmt_logic/workflows.rb +82 -78
  10. data/lib/2016-06-01/generated/azure_mgmt_logic/agreements.rb +33 -30
  11. data/lib/2016-06-01/generated/azure_mgmt_logic/certificates.rb +33 -30
  12. data/lib/2016-06-01/generated/azure_mgmt_logic/integration_accounts.rb +60 -57
  13. data/lib/2016-06-01/generated/azure_mgmt_logic/logic_management_client.rb +22 -16
  14. data/lib/2016-06-01/generated/azure_mgmt_logic/maps.rb +33 -30
  15. data/lib/2016-06-01/generated/azure_mgmt_logic/partners.rb +33 -30
  16. data/lib/2016-06-01/generated/azure_mgmt_logic/schemas.rb +33 -30
  17. data/lib/2016-06-01/generated/azure_mgmt_logic/sessions.rb +33 -30
  18. data/lib/2016-06-01/generated/azure_mgmt_logic/workflow_run_actions.rb +21 -18
  19. data/lib/2016-06-01/generated/azure_mgmt_logic/workflow_runs.rb +27 -23
  20. data/lib/2016-06-01/generated/azure_mgmt_logic/workflow_trigger_histories.rb +27 -23
  21. data/lib/2016-06-01/generated/azure_mgmt_logic/workflow_triggers.rb +33 -28
  22. data/lib/2016-06-01/generated/azure_mgmt_logic/workflow_versions.rb +27 -25
  23. data/lib/2016-06-01/generated/azure_mgmt_logic/workflows.rb +90 -86
  24. data/lib/profiles/latest/logic_latest_profile_client.rb +28 -9
  25. data/lib/profiles/latest/logic_module_definition.rb +0 -1
  26. data/lib/profiles/latest/modules/logic_profile_module.rb +445 -426
  27. data/lib/version.rb +1 -1
  28. metadata +3 -3
@@ -5,17 +5,36 @@
5
5
  require 'profiles/latest/logic_module_definition'
6
6
  require 'profiles/latest/modules/logic_profile_module'
7
7
 
8
- module Azure::Logic::Profiles::Latest::Mgmt
9
- #
10
- # Client class for the Latest profile SDK.
11
- #
12
- class Client < LogicClass
13
- include MsRestAzure::Common::Configurable
8
+ module Azure::Logic::Profiles::Latest
9
+ module Mgmt
10
+ #
11
+ # Client class for the Latest profile SDK.
12
+ #
13
+ class Client < LogicManagementClass
14
+ include MsRestAzure::Common::Configurable
14
15
 
16
+ #
17
+ # Initializes a new instance of the Client class.
18
+ # @param options [Hash] hash of client options.
19
+ # options = {
20
+ # tenant_id: 'YOUR TENANT ID',
21
+ # client_id: 'YOUR CLIENT ID',
22
+ # client_secret: 'YOUR CLIENT SECRET',
23
+ # subscription_id: 'YOUR SUBSCRIPTION ID',
24
+ # credentials: credentials,
25
+ # active_directory_settings: active_directory_settings,
26
+ # base_url: 'YOUR BASE URL',
27
+ # options: options
28
+ # }
29
+ # 'credentials' are optional and if not passed in the hash, will be obtained
30
+ # from MsRest::TokenCredentials using MsRestAzure::ApplicationTokenProvider.
31
+ #
32
+ # Also, base_url, active_directory_settings & options are optional.
33
+ #
34
+ def initialize(options = {})
35
+ super(options)
36
+ end
15
37
 
16
- def initialize(options = {})
17
- super(options)
18
38
  end
19
-
20
39
  end
21
40
  end
@@ -6,4 +6,3 @@ module Azure end
6
6
  module Azure::Logic end
7
7
  module Azure::Logic::Profiles end
8
8
  module Azure::Logic::Profiles::Latest end
9
- module Azure::Logic::Profiles::Latest::Mgmt end
@@ -4,7 +4,8 @@
4
4
 
5
5
  require 'azure_mgmt_logic'
6
6
 
7
- module Azure::Logic::Profiles::Latest::Mgmt
7
+ module Azure::Logic::Profiles::Latest
8
+ module Mgmt
8
9
  Workflows = Azure::Logic::Mgmt::V2016_06_01::Workflows
9
10
  WorkflowVersions = Azure::Logic::Mgmt::V2016_06_01::WorkflowVersions
10
11
  WorkflowTriggers = Azure::Logic::Mgmt::V2016_06_01::WorkflowTriggers
@@ -158,9 +159,9 @@ module Azure::Logic::Profiles::Latest::Mgmt
158
159
  end
159
160
 
160
161
  #
161
- # Logic
162
+ # LogicManagementClass
162
163
  #
163
- class LogicClass
164
+ class LogicManagementClass
164
165
  attr_reader :workflows, :workflow_versions, :workflow_triggers, :workflow_trigger_histories, :workflow_runs, :workflow_run_actions, :integration_accounts, :schemas, :maps, :partners, :agreements, :certificates, :sessions, :configurable, :base_url, :options, :model_classes
165
166
 
166
167
  def initialize(options = {})
@@ -172,435 +173,453 @@ module Azure::Logic::Profiles::Latest::Mgmt
172
173
 
173
174
  reset!(options)
174
175
 
175
- @configurable, @base_url, @options = self, nil, nil
176
+ @configurable = self
177
+ @base_url = options[:base_url].nil? ? nil:options[:base_url]
178
+ @options = options[:options].nil? ? nil:options[:options]
176
179
 
177
- client_0 = Azure::Logic::Mgmt::V2016_06_01::LogicManagementClient.new(configurable.credentials, base_url, options)
178
- if(client_0.respond_to?(:subscription_id))
179
- client_0.subscription_id = configurable.subscription_id
180
- end
181
- @workflows = client_0.workflows
182
- @workflow_versions = client_0.workflow_versions
183
- @workflow_triggers = client_0.workflow_triggers
184
- @workflow_trigger_histories = client_0.workflow_trigger_histories
185
- @workflow_runs = client_0.workflow_runs
186
- @workflow_run_actions = client_0.workflow_run_actions
187
- @integration_accounts = client_0.integration_accounts
188
- @schemas = client_0.schemas
189
- @maps = client_0.maps
190
- @partners = client_0.partners
191
- @agreements = client_0.agreements
192
- @certificates = client_0.certificates
193
- @sessions = client_0.sessions
180
+ @client_0 = Azure::Logic::Mgmt::V2016_06_01::LogicManagementClient.new(configurable.credentials, base_url, options)
181
+ if(@client_0.respond_to?(:subscription_id))
182
+ @client_0.subscription_id = configurable.subscription_id
183
+ end
184
+ add_telemetry(@client_0)
185
+ @workflows = @client_0.workflows
186
+ @workflow_versions = @client_0.workflow_versions
187
+ @workflow_triggers = @client_0.workflow_triggers
188
+ @workflow_trigger_histories = @client_0.workflow_trigger_histories
189
+ @workflow_runs = @client_0.workflow_runs
190
+ @workflow_run_actions = @client_0.workflow_run_actions
191
+ @integration_accounts = @client_0.integration_accounts
192
+ @schemas = @client_0.schemas
193
+ @maps = @client_0.maps
194
+ @partners = @client_0.partners
195
+ @agreements = @client_0.agreements
196
+ @certificates = @client_0.certificates
197
+ @sessions = @client_0.sessions
194
198
 
195
199
  @model_classes = ModelClasses.new
196
200
  end
197
201
 
198
- class ModelClasses
199
- def integration_account_partner_filter
200
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountPartnerFilter
201
- end
202
- def resource
203
- Azure::Logic::Mgmt::V2016_06_01::Models::Resource
204
- end
205
- def as2_message_connection_settings
206
- Azure::Logic::Mgmt::V2016_06_01::Models::AS2MessageConnectionSettings
207
- end
208
- def resource_reference
209
- Azure::Logic::Mgmt::V2016_06_01::Models::ResourceReference
210
- end
211
- def as2_acknowledgement_connection_settings
212
- Azure::Logic::Mgmt::V2016_06_01::Models::AS2AcknowledgementConnectionSettings
213
- end
214
- def workflow_parameter
215
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowParameter
216
- end
217
- def as2_mdn_settings
218
- Azure::Logic::Mgmt::V2016_06_01::Models::AS2MdnSettings
219
- end
220
- def workflow_filter
221
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowFilter
222
- end
223
- def as2_security_settings
224
- Azure::Logic::Mgmt::V2016_06_01::Models::AS2SecuritySettings
225
- end
226
- def key_vault_key_reference_key_vault
227
- Azure::Logic::Mgmt::V2016_06_01::Models::KeyVaultKeyReferenceKeyVault
228
- end
229
- def workflow_version_list_result
230
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowVersionListResult
231
- end
232
- def integration_account_partner_list_result
233
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountPartnerListResult
234
- end
235
- def recurrence_schedule
236
- Azure::Logic::Mgmt::V2016_06_01::Models::RecurrenceSchedule
237
- end
238
- def sub_resource
239
- Azure::Logic::Mgmt::V2016_06_01::Models::SubResource
240
- end
241
- def sku
242
- Azure::Logic::Mgmt::V2016_06_01::Models::Sku
243
- end
244
- def workflow_trigger_list_result
245
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerListResult
246
- end
247
- def workflow_trigger_list_callback_url_queries
248
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerListCallbackUrlQueries
249
- end
250
- def integration_account_agreement_list_result
251
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountAgreementListResult
252
- end
253
- def correlation
254
- Azure::Logic::Mgmt::V2016_06_01::Models::Correlation
255
- end
256
- def workflow_list_result
257
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowListResult
258
- end
259
- def content_link
260
- Azure::Logic::Mgmt::V2016_06_01::Models::ContentLink
261
- end
262
- def integration_account_agreement_filter
263
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountAgreementFilter
264
- end
265
- def workflow_trigger_history_list_result
266
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerHistoryListResult
267
- end
268
- def as2_validation_settings
269
- Azure::Logic::Mgmt::V2016_06_01::Models::AS2ValidationSettings
270
- end
271
- def workflow_run_trigger
272
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunTrigger
273
- end
274
- def as2_envelope_settings
275
- Azure::Logic::Mgmt::V2016_06_01::Models::AS2EnvelopeSettings
276
- end
277
- def operation_display
278
- Azure::Logic::Mgmt::V2016_06_01::Models::OperationDisplay
279
- end
280
- def as2_error_settings
281
- Azure::Logic::Mgmt::V2016_06_01::Models::AS2ErrorSettings
282
- end
283
- def workflow_run_list_result
284
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunListResult
285
- end
286
- def as2_protocol_settings
287
- Azure::Logic::Mgmt::V2016_06_01::Models::AS2ProtocolSettings
288
- end
289
- def error_response
290
- Azure::Logic::Mgmt::V2016_06_01::Models::ErrorResponse
291
- end
292
- def as2_one_way_agreement
293
- Azure::Logic::Mgmt::V2016_06_01::Models::AS2OneWayAgreement
294
- end
295
- def integration_account_session_list_result
296
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSessionListResult
297
- end
298
- def as2_agreement_content
299
- Azure::Logic::Mgmt::V2016_06_01::Models::AS2AgreementContent
300
- end
301
- def workflow_run_action_list_result
302
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunActionListResult
303
- end
304
- def x12_validation_settings
305
- Azure::Logic::Mgmt::V2016_06_01::Models::X12ValidationSettings
306
- end
307
- def generate_upgraded_definition_parameters
308
- Azure::Logic::Mgmt::V2016_06_01::Models::GenerateUpgradedDefinitionParameters
309
- end
310
- def x12_framing_settings
311
- Azure::Logic::Mgmt::V2016_06_01::Models::X12FramingSettings
312
- end
313
- def integration_account_session_filter
314
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSessionFilter
315
- end
316
- def x12_envelope_settings
317
- Azure::Logic::Mgmt::V2016_06_01::Models::X12EnvelopeSettings
318
- end
319
- def get_callback_url_parameters
320
- Azure::Logic::Mgmt::V2016_06_01::Models::GetCallbackUrlParameters
321
- end
322
- def x12_acknowledgement_settings
323
- Azure::Logic::Mgmt::V2016_06_01::Models::X12AcknowledgementSettings
324
- end
325
- def integration_account_certificate_list_result
326
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountCertificateListResult
327
- end
328
- def x12_message_filter
329
- Azure::Logic::Mgmt::V2016_06_01::Models::X12MessageFilter
330
- end
331
- def integration_account_schema_filter
332
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSchemaFilter
333
- end
334
- def x12_security_settings
335
- Azure::Logic::Mgmt::V2016_06_01::Models::X12SecuritySettings
336
- end
337
- def key_vault_key_reference
338
- Azure::Logic::Mgmt::V2016_06_01::Models::KeyVaultKeyReference
339
- end
340
- def x12_processing_settings
341
- Azure::Logic::Mgmt::V2016_06_01::Models::X12ProcessingSettings
342
- end
343
- def integration_account_map_filter
344
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountMapFilter
345
- end
346
- def x12_envelope_override
347
- Azure::Logic::Mgmt::V2016_06_01::Models::X12EnvelopeOverride
348
- end
349
- def b2_bpartner_content
350
- Azure::Logic::Mgmt::V2016_06_01::Models::B2BPartnerContent
351
- end
352
- def x12_validation_override
353
- Azure::Logic::Mgmt::V2016_06_01::Models::X12ValidationOverride
354
- end
355
- def recurrence_schedule_occurrence
356
- Azure::Logic::Mgmt::V2016_06_01::Models::RecurrenceScheduleOccurrence
357
- end
358
- def x12_message_identifier
359
- Azure::Logic::Mgmt::V2016_06_01::Models::X12MessageIdentifier
360
- end
361
- def workflow_trigger_filter
362
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerFilter
363
- end
364
- def x12_schema_reference
365
- Azure::Logic::Mgmt::V2016_06_01::Models::X12SchemaReference
366
- end
367
- def content_hash
368
- Azure::Logic::Mgmt::V2016_06_01::Models::ContentHash
369
- end
370
- def x12_delimiter_overrides
371
- Azure::Logic::Mgmt::V2016_06_01::Models::X12DelimiterOverrides
372
- end
373
- def workflow_trigger_history_filter
374
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerHistoryFilter
375
- end
376
- def x12_protocol_settings
377
- Azure::Logic::Mgmt::V2016_06_01::Models::X12ProtocolSettings
378
- end
379
- def workflow_run_filter
380
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunFilter
381
- end
382
- def x12_one_way_agreement
383
- Azure::Logic::Mgmt::V2016_06_01::Models::X12OneWayAgreement
384
- end
385
- def retry_history
386
- Azure::Logic::Mgmt::V2016_06_01::Models::RetryHistory
387
- end
388
- def x12_agreement_content
389
- Azure::Logic::Mgmt::V2016_06_01::Models::X12AgreementContent
390
- end
391
- def regenerate_action_parameter
392
- Azure::Logic::Mgmt::V2016_06_01::Models::RegenerateActionParameter
393
- end
394
- def edifact_validation_settings
395
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactValidationSettings
396
- end
397
- def integration_account_list_result
398
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountListResult
399
- end
400
- def edifact_framing_settings
401
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactFramingSettings
402
- end
403
- def integration_account_schema_list_result
404
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSchemaListResult
405
- end
406
- def edifact_envelope_settings
407
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactEnvelopeSettings
408
- end
409
- def integration_account_map_list_result
410
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountMapListResult
411
- end
412
- def edifact_acknowledgement_settings
413
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactAcknowledgementSettings
414
- end
415
- def partner_content
416
- Azure::Logic::Mgmt::V2016_06_01::Models::PartnerContent
417
- end
418
- def edifact_message_filter
419
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactMessageFilter
420
- end
421
- def workflow_trigger_callback_url
422
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerCallbackUrl
423
- end
424
- def edifact_processing_settings
425
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactProcessingSettings
426
- end
427
- def operation
428
- Azure::Logic::Mgmt::V2016_06_01::Models::Operation
429
- end
430
- def edifact_envelope_override
431
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactEnvelopeOverride
432
- end
433
- def workflow_run_action_filter
434
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunActionFilter
435
- end
436
- def edifact_message_identifier
437
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactMessageIdentifier
438
- end
439
- def callback_url
440
- Azure::Logic::Mgmt::V2016_06_01::Models::CallbackUrl
441
- end
442
- def edifact_schema_reference
443
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactSchemaReference
444
- end
445
- def business_identity
446
- Azure::Logic::Mgmt::V2016_06_01::Models::BusinessIdentity
447
- end
448
- def edifact_validation_override
449
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactValidationOverride
450
- end
451
- def operation_list_result
452
- Azure::Logic::Mgmt::V2016_06_01::Models::OperationListResult
453
- end
454
- def edifact_delimiter_override
455
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactDelimiterOverride
456
- end
457
- def integration_account_sku
458
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSku
459
- end
460
- def edifact_protocol_settings
461
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactProtocolSettings
462
- end
463
- def workflow_trigger_recurrence
464
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerRecurrence
465
- end
466
- def edifact_one_way_agreement
467
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactOneWayAgreement
468
- end
469
- def integration_account_map_properties_parameters_schema
470
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountMapPropertiesParametersSchema
471
- end
472
- def edifact_agreement_content
473
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactAgreementContent
474
- end
475
- def error_properties
476
- Azure::Logic::Mgmt::V2016_06_01::Models::ErrorProperties
477
- end
478
- def agreement_content
479
- Azure::Logic::Mgmt::V2016_06_01::Models::AgreementContent
480
- end
481
- def workflow
482
- Azure::Logic::Mgmt::V2016_06_01::Models::Workflow
483
- end
484
- def workflow_version
485
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowVersion
486
- end
487
- def workflow_trigger
488
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTrigger
489
- end
490
- def workflow_trigger_history
491
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerHistory
492
- end
493
- def workflow_output_parameter
494
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowOutputParameter
495
- end
496
- def workflow_run
497
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRun
498
- end
499
- def workflow_run_action
500
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunAction
501
- end
502
- def integration_account
503
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccount
504
- end
505
- def integration_account_schema
506
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSchema
507
- end
508
- def integration_account_map
509
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountMap
510
- end
511
- def integration_account_partner
512
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountPartner
513
- end
514
- def integration_account_agreement
515
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountAgreement
516
- end
517
- def integration_account_certificate
518
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountCertificate
519
- end
520
- def integration_account_session
521
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSession
522
- end
523
- def workflow_provisioning_state
524
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowProvisioningState
525
- end
526
- def workflow_state
527
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowState
528
- end
529
- def sku_name
530
- Azure::Logic::Mgmt::V2016_06_01::Models::SkuName
531
- end
532
- def parameter_type
533
- Azure::Logic::Mgmt::V2016_06_01::Models::ParameterType
534
- end
535
- def workflow_trigger_provisioning_state
536
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerProvisioningState
537
- end
538
- def workflow_status
539
- Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowStatus
540
- end
541
- def recurrence_frequency
542
- Azure::Logic::Mgmt::V2016_06_01::Models::RecurrenceFrequency
543
- end
544
- def days_of_week
545
- Azure::Logic::Mgmt::V2016_06_01::Models::DaysOfWeek
546
- end
547
- def day_of_week
548
- Azure::Logic::Mgmt::V2016_06_01::Models::DayOfWeek
549
- end
550
- def key_type
551
- Azure::Logic::Mgmt::V2016_06_01::Models::KeyType
552
- end
553
- def integration_account_sku_name
554
- Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSkuName
555
- end
556
- def schema_type
557
- Azure::Logic::Mgmt::V2016_06_01::Models::SchemaType
558
- end
559
- def map_type
560
- Azure::Logic::Mgmt::V2016_06_01::Models::MapType
561
- end
562
- def partner_type
563
- Azure::Logic::Mgmt::V2016_06_01::Models::PartnerType
564
- end
565
- def agreement_type
566
- Azure::Logic::Mgmt::V2016_06_01::Models::AgreementType
567
- end
568
- def hashing_algorithm
569
- Azure::Logic::Mgmt::V2016_06_01::Models::HashingAlgorithm
570
- end
571
- def encryption_algorithm
572
- Azure::Logic::Mgmt::V2016_06_01::Models::EncryptionAlgorithm
573
- end
574
- def signing_algorithm
575
- Azure::Logic::Mgmt::V2016_06_01::Models::SigningAlgorithm
576
- end
577
- def trailing_separator_policy
578
- Azure::Logic::Mgmt::V2016_06_01::Models::TrailingSeparatorPolicy
579
- end
580
- def x12_character_set
581
- Azure::Logic::Mgmt::V2016_06_01::Models::X12CharacterSet
582
- end
583
- def segment_terminator_suffix
584
- Azure::Logic::Mgmt::V2016_06_01::Models::SegmentTerminatorSuffix
585
- end
586
- def x12_date_format
587
- Azure::Logic::Mgmt::V2016_06_01::Models::X12DateFormat
588
- end
589
- def x12_time_format
590
- Azure::Logic::Mgmt::V2016_06_01::Models::X12TimeFormat
591
- end
592
- def usage_indicator
593
- Azure::Logic::Mgmt::V2016_06_01::Models::UsageIndicator
594
- end
595
- def message_filter_type
596
- Azure::Logic::Mgmt::V2016_06_01::Models::MessageFilterType
597
- end
598
- def edifact_character_set
599
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactCharacterSet
600
- end
601
- def edifact_decimal_indicator
602
- Azure::Logic::Mgmt::V2016_06_01::Models::EdifactDecimalIndicator
202
+ def add_telemetry(client)
203
+ profile_information = 'Profiles/Latest/Logic/Mgmt'
204
+ client.add_user_agent_information(profile_information)
205
+ end
206
+
207
+ def method_missing(method, *args)
208
+ if @client_0.respond_to?method
209
+ @client_0.send(method, *args)
210
+ else
211
+ super
603
212
  end
604
213
  end
214
+
215
+ end
216
+
217
+ class ModelClasses
218
+ def integration_account_partner_filter
219
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountPartnerFilter
220
+ end
221
+ def resource
222
+ Azure::Logic::Mgmt::V2016_06_01::Models::Resource
223
+ end
224
+ def as2_message_connection_settings
225
+ Azure::Logic::Mgmt::V2016_06_01::Models::AS2MessageConnectionSettings
226
+ end
227
+ def resource_reference
228
+ Azure::Logic::Mgmt::V2016_06_01::Models::ResourceReference
229
+ end
230
+ def as2_acknowledgement_connection_settings
231
+ Azure::Logic::Mgmt::V2016_06_01::Models::AS2AcknowledgementConnectionSettings
232
+ end
233
+ def workflow_parameter
234
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowParameter
235
+ end
236
+ def as2_mdn_settings
237
+ Azure::Logic::Mgmt::V2016_06_01::Models::AS2MdnSettings
238
+ end
239
+ def workflow_filter
240
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowFilter
241
+ end
242
+ def as2_security_settings
243
+ Azure::Logic::Mgmt::V2016_06_01::Models::AS2SecuritySettings
244
+ end
245
+ def key_vault_key_reference_key_vault
246
+ Azure::Logic::Mgmt::V2016_06_01::Models::KeyVaultKeyReferenceKeyVault
247
+ end
248
+ def workflow_version_list_result
249
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowVersionListResult
250
+ end
251
+ def integration_account_partner_list_result
252
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountPartnerListResult
253
+ end
254
+ def recurrence_schedule
255
+ Azure::Logic::Mgmt::V2016_06_01::Models::RecurrenceSchedule
256
+ end
257
+ def sub_resource
258
+ Azure::Logic::Mgmt::V2016_06_01::Models::SubResource
259
+ end
260
+ def sku
261
+ Azure::Logic::Mgmt::V2016_06_01::Models::Sku
262
+ end
263
+ def workflow_trigger_list_result
264
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerListResult
265
+ end
266
+ def workflow_trigger_list_callback_url_queries
267
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerListCallbackUrlQueries
268
+ end
269
+ def integration_account_agreement_list_result
270
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountAgreementListResult
271
+ end
272
+ def correlation
273
+ Azure::Logic::Mgmt::V2016_06_01::Models::Correlation
274
+ end
275
+ def workflow_list_result
276
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowListResult
277
+ end
278
+ def content_link
279
+ Azure::Logic::Mgmt::V2016_06_01::Models::ContentLink
280
+ end
281
+ def integration_account_agreement_filter
282
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountAgreementFilter
283
+ end
284
+ def workflow_trigger_history_list_result
285
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerHistoryListResult
286
+ end
287
+ def as2_validation_settings
288
+ Azure::Logic::Mgmt::V2016_06_01::Models::AS2ValidationSettings
289
+ end
290
+ def workflow_run_trigger
291
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunTrigger
292
+ end
293
+ def as2_envelope_settings
294
+ Azure::Logic::Mgmt::V2016_06_01::Models::AS2EnvelopeSettings
295
+ end
296
+ def operation_display
297
+ Azure::Logic::Mgmt::V2016_06_01::Models::OperationDisplay
298
+ end
299
+ def as2_error_settings
300
+ Azure::Logic::Mgmt::V2016_06_01::Models::AS2ErrorSettings
301
+ end
302
+ def workflow_run_list_result
303
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunListResult
304
+ end
305
+ def as2_protocol_settings
306
+ Azure::Logic::Mgmt::V2016_06_01::Models::AS2ProtocolSettings
307
+ end
308
+ def error_response
309
+ Azure::Logic::Mgmt::V2016_06_01::Models::ErrorResponse
310
+ end
311
+ def as2_one_way_agreement
312
+ Azure::Logic::Mgmt::V2016_06_01::Models::AS2OneWayAgreement
313
+ end
314
+ def integration_account_session_list_result
315
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSessionListResult
316
+ end
317
+ def as2_agreement_content
318
+ Azure::Logic::Mgmt::V2016_06_01::Models::AS2AgreementContent
319
+ end
320
+ def workflow_run_action_list_result
321
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunActionListResult
322
+ end
323
+ def x12_validation_settings
324
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12ValidationSettings
325
+ end
326
+ def generate_upgraded_definition_parameters
327
+ Azure::Logic::Mgmt::V2016_06_01::Models::GenerateUpgradedDefinitionParameters
328
+ end
329
+ def x12_framing_settings
330
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12FramingSettings
331
+ end
332
+ def integration_account_session_filter
333
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSessionFilter
334
+ end
335
+ def x12_envelope_settings
336
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12EnvelopeSettings
337
+ end
338
+ def get_callback_url_parameters
339
+ Azure::Logic::Mgmt::V2016_06_01::Models::GetCallbackUrlParameters
340
+ end
341
+ def x12_acknowledgement_settings
342
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12AcknowledgementSettings
343
+ end
344
+ def integration_account_certificate_list_result
345
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountCertificateListResult
346
+ end
347
+ def x12_message_filter
348
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12MessageFilter
349
+ end
350
+ def integration_account_schema_filter
351
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSchemaFilter
352
+ end
353
+ def x12_security_settings
354
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12SecuritySettings
355
+ end
356
+ def key_vault_key_reference
357
+ Azure::Logic::Mgmt::V2016_06_01::Models::KeyVaultKeyReference
358
+ end
359
+ def x12_processing_settings
360
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12ProcessingSettings
361
+ end
362
+ def integration_account_map_filter
363
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountMapFilter
364
+ end
365
+ def x12_envelope_override
366
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12EnvelopeOverride
367
+ end
368
+ def b2_bpartner_content
369
+ Azure::Logic::Mgmt::V2016_06_01::Models::B2BPartnerContent
370
+ end
371
+ def x12_validation_override
372
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12ValidationOverride
373
+ end
374
+ def recurrence_schedule_occurrence
375
+ Azure::Logic::Mgmt::V2016_06_01::Models::RecurrenceScheduleOccurrence
376
+ end
377
+ def x12_message_identifier
378
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12MessageIdentifier
379
+ end
380
+ def workflow_trigger_filter
381
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerFilter
382
+ end
383
+ def x12_schema_reference
384
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12SchemaReference
385
+ end
386
+ def content_hash
387
+ Azure::Logic::Mgmt::V2016_06_01::Models::ContentHash
388
+ end
389
+ def x12_delimiter_overrides
390
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12DelimiterOverrides
391
+ end
392
+ def workflow_trigger_history_filter
393
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerHistoryFilter
394
+ end
395
+ def x12_protocol_settings
396
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12ProtocolSettings
397
+ end
398
+ def workflow_run_filter
399
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunFilter
400
+ end
401
+ def x12_one_way_agreement
402
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12OneWayAgreement
403
+ end
404
+ def retry_history
405
+ Azure::Logic::Mgmt::V2016_06_01::Models::RetryHistory
406
+ end
407
+ def x12_agreement_content
408
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12AgreementContent
409
+ end
410
+ def regenerate_action_parameter
411
+ Azure::Logic::Mgmt::V2016_06_01::Models::RegenerateActionParameter
412
+ end
413
+ def edifact_validation_settings
414
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactValidationSettings
415
+ end
416
+ def integration_account_list_result
417
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountListResult
418
+ end
419
+ def edifact_framing_settings
420
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactFramingSettings
421
+ end
422
+ def integration_account_schema_list_result
423
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSchemaListResult
424
+ end
425
+ def edifact_envelope_settings
426
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactEnvelopeSettings
427
+ end
428
+ def integration_account_map_list_result
429
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountMapListResult
430
+ end
431
+ def edifact_acknowledgement_settings
432
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactAcknowledgementSettings
433
+ end
434
+ def partner_content
435
+ Azure::Logic::Mgmt::V2016_06_01::Models::PartnerContent
436
+ end
437
+ def edifact_message_filter
438
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactMessageFilter
439
+ end
440
+ def workflow_trigger_callback_url
441
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerCallbackUrl
442
+ end
443
+ def edifact_processing_settings
444
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactProcessingSettings
445
+ end
446
+ def operation
447
+ Azure::Logic::Mgmt::V2016_06_01::Models::Operation
448
+ end
449
+ def edifact_envelope_override
450
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactEnvelopeOverride
451
+ end
452
+ def workflow_run_action_filter
453
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunActionFilter
454
+ end
455
+ def edifact_message_identifier
456
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactMessageIdentifier
457
+ end
458
+ def callback_url
459
+ Azure::Logic::Mgmt::V2016_06_01::Models::CallbackUrl
460
+ end
461
+ def edifact_schema_reference
462
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactSchemaReference
463
+ end
464
+ def business_identity
465
+ Azure::Logic::Mgmt::V2016_06_01::Models::BusinessIdentity
466
+ end
467
+ def edifact_validation_override
468
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactValidationOverride
469
+ end
470
+ def operation_list_result
471
+ Azure::Logic::Mgmt::V2016_06_01::Models::OperationListResult
472
+ end
473
+ def edifact_delimiter_override
474
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactDelimiterOverride
475
+ end
476
+ def integration_account_sku
477
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSku
478
+ end
479
+ def edifact_protocol_settings
480
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactProtocolSettings
481
+ end
482
+ def workflow_trigger_recurrence
483
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerRecurrence
484
+ end
485
+ def edifact_one_way_agreement
486
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactOneWayAgreement
487
+ end
488
+ def integration_account_map_properties_parameters_schema
489
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountMapPropertiesParametersSchema
490
+ end
491
+ def edifact_agreement_content
492
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactAgreementContent
493
+ end
494
+ def error_properties
495
+ Azure::Logic::Mgmt::V2016_06_01::Models::ErrorProperties
496
+ end
497
+ def agreement_content
498
+ Azure::Logic::Mgmt::V2016_06_01::Models::AgreementContent
499
+ end
500
+ def workflow
501
+ Azure::Logic::Mgmt::V2016_06_01::Models::Workflow
502
+ end
503
+ def workflow_version
504
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowVersion
505
+ end
506
+ def workflow_trigger
507
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTrigger
508
+ end
509
+ def workflow_trigger_history
510
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerHistory
511
+ end
512
+ def workflow_output_parameter
513
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowOutputParameter
514
+ end
515
+ def workflow_run
516
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRun
517
+ end
518
+ def workflow_run_action
519
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowRunAction
520
+ end
521
+ def integration_account
522
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccount
523
+ end
524
+ def integration_account_schema
525
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSchema
526
+ end
527
+ def integration_account_map
528
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountMap
529
+ end
530
+ def integration_account_partner
531
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountPartner
532
+ end
533
+ def integration_account_agreement
534
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountAgreement
535
+ end
536
+ def integration_account_certificate
537
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountCertificate
538
+ end
539
+ def integration_account_session
540
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSession
541
+ end
542
+ def workflow_provisioning_state
543
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowProvisioningState
544
+ end
545
+ def workflow_state
546
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowState
547
+ end
548
+ def sku_name
549
+ Azure::Logic::Mgmt::V2016_06_01::Models::SkuName
550
+ end
551
+ def parameter_type
552
+ Azure::Logic::Mgmt::V2016_06_01::Models::ParameterType
553
+ end
554
+ def workflow_trigger_provisioning_state
555
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowTriggerProvisioningState
556
+ end
557
+ def workflow_status
558
+ Azure::Logic::Mgmt::V2016_06_01::Models::WorkflowStatus
559
+ end
560
+ def recurrence_frequency
561
+ Azure::Logic::Mgmt::V2016_06_01::Models::RecurrenceFrequency
562
+ end
563
+ def days_of_week
564
+ Azure::Logic::Mgmt::V2016_06_01::Models::DaysOfWeek
565
+ end
566
+ def day_of_week
567
+ Azure::Logic::Mgmt::V2016_06_01::Models::DayOfWeek
568
+ end
569
+ def key_type
570
+ Azure::Logic::Mgmt::V2016_06_01::Models::KeyType
571
+ end
572
+ def integration_account_sku_name
573
+ Azure::Logic::Mgmt::V2016_06_01::Models::IntegrationAccountSkuName
574
+ end
575
+ def schema_type
576
+ Azure::Logic::Mgmt::V2016_06_01::Models::SchemaType
577
+ end
578
+ def map_type
579
+ Azure::Logic::Mgmt::V2016_06_01::Models::MapType
580
+ end
581
+ def partner_type
582
+ Azure::Logic::Mgmt::V2016_06_01::Models::PartnerType
583
+ end
584
+ def agreement_type
585
+ Azure::Logic::Mgmt::V2016_06_01::Models::AgreementType
586
+ end
587
+ def hashing_algorithm
588
+ Azure::Logic::Mgmt::V2016_06_01::Models::HashingAlgorithm
589
+ end
590
+ def encryption_algorithm
591
+ Azure::Logic::Mgmt::V2016_06_01::Models::EncryptionAlgorithm
592
+ end
593
+ def signing_algorithm
594
+ Azure::Logic::Mgmt::V2016_06_01::Models::SigningAlgorithm
595
+ end
596
+ def trailing_separator_policy
597
+ Azure::Logic::Mgmt::V2016_06_01::Models::TrailingSeparatorPolicy
598
+ end
599
+ def x12_character_set
600
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12CharacterSet
601
+ end
602
+ def segment_terminator_suffix
603
+ Azure::Logic::Mgmt::V2016_06_01::Models::SegmentTerminatorSuffix
604
+ end
605
+ def x12_date_format
606
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12DateFormat
607
+ end
608
+ def x12_time_format
609
+ Azure::Logic::Mgmt::V2016_06_01::Models::X12TimeFormat
610
+ end
611
+ def usage_indicator
612
+ Azure::Logic::Mgmt::V2016_06_01::Models::UsageIndicator
613
+ end
614
+ def message_filter_type
615
+ Azure::Logic::Mgmt::V2016_06_01::Models::MessageFilterType
616
+ end
617
+ def edifact_character_set
618
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactCharacterSet
619
+ end
620
+ def edifact_decimal_indicator
621
+ Azure::Logic::Mgmt::V2016_06_01::Models::EdifactDecimalIndicator
622
+ end
605
623
  end
624
+ end
606
625
  end