@lap v0.3
# Machine-readable API spec. Each @endpoint block is one API call.
@api AutomationManagement
@base https://management.azure.com
@version 2015-10-31
@auth OAuth2
@endpoints 4
@toc subscriptions(4)

@endpoint DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/hybridRunbookWorkerGroups/{hybridRunbookWorkerGroupName}
@desc Delete a hybrid runbook worker group.
@required {hybridRunbookWorkerGroupName: any # The hybrid runbook worker group name}
@returns(200) OK

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/hybridRunbookWorkerGroups/{hybridRunbookWorkerGroupName}
@desc Retrieve a hybrid runbook worker group.
@required {hybridRunbookWorkerGroupName: any # The hybrid runbook worker group name}
@returns(200) OK

@endpoint PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/hybridRunbookWorkerGroups/{hybridRunbookWorkerGroupName}
@desc Update a hybrid runbook worker group.
@required {hybridRunbookWorkerGroupName: any # The hybrid runbook worker group name, parameters: any # The hybrid runbook worker group}
@returns(200) OK

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/hybridRunbookWorkerGroups
@desc Retrieve a list of hybrid runbook worker groups.
@optional {$filter: any # The filter to apply on the operation.}
@returns(200) OK

@end
