Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Generated from 92ece01ec80ffb81f6371490e7d4df632ed17dd8
Fix for trailing / on route
  • Loading branch information
AutorestCI committed Aug 9, 2018
commit e05124504dae48d1a3612fcf43e42a92e6cada6e
5 changes: 0 additions & 5 deletions lib/services/logicManagement/lib/logicManagementClient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,7 @@ export default class LogicManagementClient extends AzureServiceClient {
workflowTriggerHistories: operations.WorkflowTriggerHistories;
workflowRuns: operations.WorkflowRuns;
workflowRunActions: operations.WorkflowRunActions;
workflowRunActionRepetitions: operations.WorkflowRunActionRepetitions;
workflowRunActionScopedRepetitions: operations.WorkflowRunActionScopedRepetitions;
workflowRunOperations: operations.WorkflowRunOperations;
integrationAccounts: operations.IntegrationAccounts;
integrationAccountAssemblies: operations.IntegrationAccountAssemblies;
integrationAccountBatchConfigurations: operations.IntegrationAccountBatchConfigurations;
schemas: operations.Schemas;
maps: operations.Maps;
partners: operations.Partners;
Expand Down
5 changes: 0 additions & 5 deletions lib/services/logicManagement/lib/logicManagementClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -337,12 +337,7 @@ class LogicManagementClient extends ServiceClient {
this.workflowTriggerHistories = new operations.WorkflowTriggerHistories(this);
this.workflowRuns = new operations.WorkflowRuns(this);
this.workflowRunActions = new operations.WorkflowRunActions(this);
this.workflowRunActionRepetitions = new operations.WorkflowRunActionRepetitions(this);
this.workflowRunActionScopedRepetitions = new operations.WorkflowRunActionScopedRepetitions(this);
this.workflowRunOperations = new operations.WorkflowRunOperations(this);
this.integrationAccounts = new operations.IntegrationAccounts(this);
this.integrationAccountAssemblies = new operations.IntegrationAccountAssemblies(this);
this.integrationAccountBatchConfigurations = new operations.IntegrationAccountBatchConfigurations(this);
this.schemas = new operations.Schemas(this);
this.maps = new operations.Maps(this);
this.partners = new operations.Partners(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'use strict';

/**
* The AS2 agreement acknowledgement connection settings.
* The AS2 agreement acknowledegment connection settings.
*
*/
class AS2AcknowledgementConnectionSettings {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
const models = require('./index');

/**
* The integration account AS2 one-way agreement.
* The integration account AS2 oneway agreement.
*
*/
class AS2OneWayAgreement {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class EdifactDelimiterOverride {
* Create a EdifactDelimiterOverride.
* @member {string} [messageId] The message id.
* @member {string} [messageVersion] The message version.
* @member {string} [messageRelease] The message release.
* @member {string} [messageRelease] The message releaseversion.
* @member {number} dataElementSeparator The data element separator.
* @member {number} componentSeparator The component separator.
* @member {number} segmentTerminator The segment terminator.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'use strict';

/**
* The Edifact envelope override settings.
* The Edifact enevlope override settings.
*
*/
class EdifactEnvelopeOverride {
Expand Down
2 changes: 1 addition & 1 deletion lib/services/logicManagement/lib/models/errorResponse.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
const models = require('./index');

/**
* Error response indicates Logic service is not able to process the incoming
* Error reponse indicates Logic service is not able to process the incoming
* request. The error property contains the error details.
*
*/
Expand Down
Loading