Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
manually update pipeline operation group
Browse files Browse the repository at this point in the history
This is due to issue:
#2193
We are manually renaming pipeline operation group to pipelineOperations
  • Loading branch information
begoldsm committed Jun 7, 2017
1 parent 6bdf77d commit 22128e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ declare class DataLakeAnalyticsJobManagementClient {
generateClientRequestId: boolean;

// Operation groups
pipeline: operations.Pipeline;
pipelineOperations: operations.Pipeline;
recurrence: operations.Recurrence;
job: operations.Job;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class DataLakeAnalyticsJobManagementClient extends ServiceClient {
if(options.generateClientRequestId !== null && options.generateClientRequestId !== undefined) {
this.generateClientRequestId = options.generateClientRequestId;
}
this.pipeline = new operations.Pipeline(this);
this.pipelineOperations = new operations.Pipeline(this);
this.recurrence = new operations.Recurrence(this);
this.job = new operations.Job(this);
this.models = models;
Expand Down

0 comments on commit 22128e4

Please sign in to comment.