Interface JobStreamsClient
public interface JobStreamsClient
An instance of this class provides access to all the operations defined in JobStreamsClient.
-
Method Summary
Modifier and TypeMethodDescriptionRetrieve the job stream identified by job stream id.com.azure.core.http.rest.Response<JobStreamInner>
getWithResponse
(String resourceGroupName, String automationAccountName, String jobName, String jobStreamId, String clientRequestId, com.azure.core.util.Context context) Retrieve the job stream identified by job stream id.com.azure.core.http.rest.PagedIterable<JobStreamInner>
Retrieve a list of jobs streams identified by job name.com.azure.core.http.rest.PagedIterable<JobStreamInner>
listByJob
(String resourceGroupName, String automationAccountName, String jobName, String filter, String clientRequestId, com.azure.core.util.Context context) Retrieve a list of jobs streams identified by job name.
-
Method Details
-
get
JobStreamInner get(String resourceGroupName, String automationAccountName, String jobName, String jobStreamId) Retrieve the job stream identified by job stream id.- Parameters:
resourceGroupName
- Name of an Azure Resource group.automationAccountName
- The name of the automation account.jobName
- The job name.jobStreamId
- The job stream id.- Returns:
- definition of the job stream.
- Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
getWithResponse
com.azure.core.http.rest.Response<JobStreamInner> getWithResponse(String resourceGroupName, String automationAccountName, String jobName, String jobStreamId, String clientRequestId, com.azure.core.util.Context context) Retrieve the job stream identified by job stream id.- Parameters:
resourceGroupName
- Name of an Azure Resource group.automationAccountName
- The name of the automation account.jobName
- The job name.jobStreamId
- The job stream id.clientRequestId
- Identifies this specific client request.context
- The context to associate with this operation.- Returns:
- definition of the job stream along with
Response
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
listByJob
com.azure.core.http.rest.PagedIterable<JobStreamInner> listByJob(String resourceGroupName, String automationAccountName, String jobName) Retrieve a list of jobs streams identified by job name.- Parameters:
resourceGroupName
- Name of an Azure Resource group.automationAccountName
- The name of the automation account.jobName
- The job name.- Returns:
- the response model for the list job stream operation as paginated response with
PagedIterable
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-
listByJob
com.azure.core.http.rest.PagedIterable<JobStreamInner> listByJob(String resourceGroupName, String automationAccountName, String jobName, String filter, String clientRequestId, com.azure.core.util.Context context) Retrieve a list of jobs streams identified by job name.- Parameters:
resourceGroupName
- Name of an Azure Resource group.automationAccountName
- The name of the automation account.jobName
- The job name.filter
- The filter to apply on the operation.clientRequestId
- Identifies this specific client request.context
- The context to associate with this operation.- Returns:
- the response model for the list job stream operation as paginated response with
PagedIterable
. - Throws:
IllegalArgumentException
- thrown if parameters fail the validation.com.azure.core.management.exception.ManagementException
- thrown if the request is rejected by server.RuntimeException
- all other wrapped checked exceptions if the request fails to be sent.
-