UNPKG

@azure/arm-automation

Version:

AutomationClient Library with typescript type definitions for node.js and browser.

82 lines 4.49 kB
import * as msRest from "@azure/ms-rest-js"; import * as Models from "../models"; import { AutomationClientContext } from "../automationClientContext"; /** Class representing a JobStreamOperations. */ export declare class JobStreamOperations { private readonly client; /** * Create a JobStreamOperations. * @param {AutomationClientContext} client Reference to the service client. */ constructor(client: AutomationClientContext); /** * Retrieve the job stream identified by job stream id. * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param jobName The job name. * @param jobStreamId The job stream id. * @param [options] The optional parameters * @returns Promise<Models.JobStreamGetResponse> */ get(resourceGroupName: string, automationAccountName: string, jobName: string, jobStreamId: string, options?: Models.JobStreamGetOptionalParams): Promise<Models.JobStreamGetResponse>; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param jobName The job name. * @param jobStreamId The job stream id. * @param callback The callback */ get(resourceGroupName: string, automationAccountName: string, jobName: string, jobStreamId: string, callback: msRest.ServiceCallback<Models.JobStream>): void; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param jobName The job name. * @param jobStreamId The job stream id. * @param options The optional parameters * @param callback The callback */ get(resourceGroupName: string, automationAccountName: string, jobName: string, jobStreamId: string, options: Models.JobStreamGetOptionalParams, callback: msRest.ServiceCallback<Models.JobStream>): void; /** * Retrieve a list of jobs streams identified by job name. * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param jobName The job name. * @param [options] The optional parameters * @returns Promise<Models.JobStreamListByJobResponse> */ listByJob(resourceGroupName: string, automationAccountName: string, jobName: string, options?: Models.JobStreamListByJobOptionalParams): Promise<Models.JobStreamListByJobResponse>; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param jobName The job name. * @param callback The callback */ listByJob(resourceGroupName: string, automationAccountName: string, jobName: string, callback: msRest.ServiceCallback<Models.JobStreamListResult>): void; /** * @param resourceGroupName Name of an Azure Resource group. * @param automationAccountName The name of the automation account. * @param jobName The job name. * @param options The optional parameters * @param callback The callback */ listByJob(resourceGroupName: string, automationAccountName: string, jobName: string, options: Models.JobStreamListByJobOptionalParams, callback: msRest.ServiceCallback<Models.JobStreamListResult>): void; /** * Retrieve a list of jobs streams identified by job name. * @param nextPageLink The NextLink from the previous successful call to List operation. * @param [options] The optional parameters * @returns Promise<Models.JobStreamListByJobNextResponse> */ listByJobNext(nextPageLink: string, options?: Models.JobStreamListByJobNextOptionalParams): Promise<Models.JobStreamListByJobNextResponse>; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback */ listByJobNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.JobStreamListResult>): void; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param options The optional parameters * @param callback The callback */ listByJobNext(nextPageLink: string, options: Models.JobStreamListByJobNextOptionalParams, callback: msRest.ServiceCallback<Models.JobStreamListResult>): void; } //# sourceMappingURL=jobStreamOperations.d.ts.map