Show / Hide Table of Contents

    Interface IJobStepExecutionsOperations

    JobStepExecutionsOperations operations.

    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Sql.dll
    Syntax
    public interface IJobStepExecutionsOperations

    Methods

    GetWithHttpMessagesAsync(String, String, String, String, Guid, String, Dictionary<String,List<String>>, CancellationToken)

    Gets a step execution of a job execution.

    Declaration
    public System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<Microsoft.Azure.Management.Sql.Models.JobExecution>> GetWithHttpMessagesAsync (string resourceGroupName, string serverName, string jobAgentName, string jobName, Guid jobExecutionId, string stepName, System.Collections.Generic.Dictionary<string,System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = null);
    Parameters
    String resourceGroupName

    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

    String serverName

    The name of the server.

    String jobAgentName

    The name of the job agent.

    String jobName

    The name of the job to get.

    Guid jobExecutionId

    The unique id of the job execution

    String stepName

    The name of the step.

    Dictionary<String,List<String>> customHeaders

    The headers that will be added to request.

    CancellationToken cancellationToken

    The cancellation token.

    Returns
    Task<AzureOperationResponse<JobExecution>>

    Exceptions
    CloudException

    Thrown when the operation returned an invalid status code

    SerializationException

    Thrown when unable to deserialize the response

    ValidationException

    Thrown when a required parameter is null

    ListByJobExecutionNextWithHttpMessagesAsync(String, Dictionary<String,List<String>>, CancellationToken)

    Lists the step executions of a job execution.

    Declaration
    public System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Management.Sql.Models.JobExecution>>> ListByJobExecutionNextWithHttpMessagesAsync (string nextPageLink, System.Collections.Generic.Dictionary<string,System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = null);
    Parameters
    String nextPageLink

    The NextLink from the previous successful call to List operation.

    Dictionary<String,List<String>> customHeaders

    The headers that will be added to request.

    CancellationToken cancellationToken

    The cancellation token.

    Returns
    Task<AzureOperationResponse<IPage<JobExecution>>>

    Exceptions
    CloudException

    Thrown when the operation returned an invalid status code

    SerializationException

    Thrown when unable to deserialize the response

    ValidationException

    Thrown when a required parameter is null

    ListByJobExecutionWithHttpMessagesAsync(String, String, String, String, Guid, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Dictionary<String,List<String>>, CancellationToken)

    Lists the step executions of a job execution.

    Declaration
    public System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Management.Sql.Models.JobExecution>>> ListByJobExecutionWithHttpMessagesAsync (string resourceGroupName, string serverName, string jobAgentName, string jobName, Guid jobExecutionId, Nullable<DateTime> createTimeMin = null, Nullable<DateTime> createTimeMax = null, Nullable<DateTime> endTimeMin = null, Nullable<DateTime> endTimeMax = null, Nullable<bool> isActive = null, Nullable<int> skip = null, Nullable<int> top = null, System.Collections.Generic.Dictionary<string,System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = null);
    Parameters
    String resourceGroupName

    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

    String serverName

    The name of the server.

    String jobAgentName

    The name of the job agent.

    String jobName

    The name of the job to get.

    Guid jobExecutionId

    The id of the job execution

    Nullable<DateTime> createTimeMin

    If specified, only job executions created at or after the specified time are included.

    Nullable<DateTime> createTimeMax

    If specified, only job executions created before the specified time are included.

    Nullable<DateTime> endTimeMin

    If specified, only job executions completed at or after the specified time are included.

    Nullable<DateTime> endTimeMax

    If specified, only job executions completed before the specified time are included.

    Nullable<Boolean> isActive

    If specified, only active or only completed job executions are included.

    Nullable<Int32> skip

    The number of elements in the collection to skip.

    Nullable<Int32> top

    The number of elements to return from the collection.

    Dictionary<String,List<String>> customHeaders

    The headers that will be added to request.

    CancellationToken cancellationToken

    The cancellation token.

    Returns
    Task<AzureOperationResponse<IPage<JobExecution>>>

    Exceptions
    CloudException

    Thrown when the operation returned an invalid status code

    SerializationException

    Thrown when unable to deserialize the response

    ValidationException

    Thrown when a required parameter is null

    Extension Methods

    JobStepExecutionsOperationsExtensions.Get(IJobStepExecutionsOperations, String, String, String, String, Guid, String)
    JobStepExecutionsOperationsExtensions.GetAsync(IJobStepExecutionsOperations, String, String, String, String, Guid, String, CancellationToken)
    JobStepExecutionsOperationsExtensions.ListByJobExecution(IJobStepExecutionsOperations, String, String, String, String, Guid, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>)
    JobStepExecutionsOperationsExtensions.ListByJobExecutionAsync(IJobStepExecutionsOperations, String, String, String, String, Guid, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, CancellationToken)
    JobStepExecutionsOperationsExtensions.ListByJobExecutionNext(IJobStepExecutionsOperations, String)
    JobStepExecutionsOperationsExtensions.ListByJobExecutionNextAsync(IJobStepExecutionsOperations, String, CancellationToken)
    Back to top Azure SDK for Net