Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Merged
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
8 changes: 4 additions & 4 deletions lib/services/automationManagement/lib/automationClient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,6 @@ export default class AutomationClient extends AzureServiceClient {
moduleOperations: operations.ModuleOperations;
objectDataTypes: operations.ObjectDataTypes;
fields: operations.Fields;
runbookDraftOperations: operations.RunbookDraftOperations;
runbookOperations: operations.RunbookOperations;
testJobStreams: operations.TestJobStreams;
testJobOperations: operations.TestJobOperations;
scheduleOperations: operations.ScheduleOperations;
variableOperations: operations.VariableOperations;
webhookOperations: operations.WebhookOperations;
Expand All @@ -98,6 +94,10 @@ export default class AutomationClient extends AzureServiceClient {
dscCompilationJobStream: operations.DscCompilationJobStream;
dscNodeConfigurationOperations: operations.DscNodeConfigurationOperations;
nodeCountInformation: operations.NodeCountInformation;
runbookDraftOperations: operations.RunbookDraftOperations;
runbookOperations: operations.RunbookOperations;
testJobStreams: operations.TestJobStreams;
testJobOperations: operations.TestJobOperations;
}

export { AutomationClient, models as AutomationModels };
8 changes: 4 additions & 4 deletions lib/services/automationManagement/lib/automationClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,6 @@ class AutomationClient extends ServiceClient {
this.moduleOperations = new operations.ModuleOperations(this);
this.objectDataTypes = new operations.ObjectDataTypes(this);
this.fields = new operations.Fields(this);
this.runbookDraftOperations = new operations.RunbookDraftOperations(this);
this.runbookOperations = new operations.RunbookOperations(this);
this.testJobStreams = new operations.TestJobStreams(this);
this.testJobOperations = new operations.TestJobOperations(this);
this.scheduleOperations = new operations.ScheduleOperations(this);
this.variableOperations = new operations.VariableOperations(this);
this.webhookOperations = new operations.WebhookOperations(this);
Expand All @@ -116,6 +112,10 @@ class AutomationClient extends ServiceClient {
this.dscCompilationJobStream = new operations.DscCompilationJobStream(this);
this.dscNodeConfigurationOperations = new operations.DscNodeConfigurationOperations(this);
this.nodeCountInformation = new operations.NodeCountInformation(this);
this.runbookDraftOperations = new operations.RunbookDraftOperations(this);
this.runbookOperations = new operations.RunbookOperations(this);
this.testJobStreams = new operations.TestJobStreams(this);
this.testJobOperations = new operations.TestJobOperations(this);
this.models = models;
msRest.addSerializationMixin(this);
}
Expand Down
Loading