package job // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "github.com/Azure/go-autorest/autorest/validation" "github.com/Azure/go-autorest/tracing" "github.com/gofrs/uuid" "net/http" ) // Client is the creates an Azure Data Lake Analytics job client. type Client struct { BaseClient } // NewClient creates an instance of the Client client. func NewClient() Client { return Client{New()} } // Build builds (compiles) the specified job in the specified Data Lake Analytics account for job correctness and // validation. // Parameters: // accountName - the Azure Data Lake Analytics account to execute job operations on. // parameters - the parameters to build a job. func (client Client) Build(ctx context.Context, accountName string, parameters BuildJobParameters) (result Information, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.Build") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } req, err := client.BuildPreparer(ctx, accountName, parameters) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "Build", nil, "Failure preparing request") return } resp, err := client.BuildSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "job.Client", "Build", resp, "Failure sending request") return } result, err = client.BuildResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "Build", resp, "Failure responding to request") return } return } // BuildPreparer prepares the Build request. func (client Client) BuildPreparer(ctx context.Context, accountName string, parameters BuildJobParameters) (*http.Request, error) { urlParameters := map[string]interface{}{ "accountName": accountName, "adlaJobDnsSuffix": client.AdlaJobDNSSuffix, } const APIVersion = "2017-09-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithCustomBaseURL("https://{accountName}.{adlaJobDnsSuffix}", urlParameters), autorest.WithPath("/buildJob"), autorest.WithJSON(parameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // BuildSender sends the Build request. The method will close the // http.Response Body if it receives an error. func (client Client) BuildSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // BuildResponder handles the response to the Build request. The method always // closes the http.Response Body. func (client Client) BuildResponder(resp *http.Response) (result Information, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // Cancel cancels the running job specified by the job ID. // Parameters: // accountName - the Azure Data Lake Analytics account to execute job operations on. // jobIdentity - job identifier. Uniquely identifies the job across all jobs submitted to the service. func (client Client) Cancel(ctx context.Context, accountName string, jobIdentity uuid.UUID) (result CancelFuture, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.Cancel") defer func() { sc := -1 if result.FutureAPI != nil && result.FutureAPI.Response() != nil { sc = result.FutureAPI.Response().StatusCode } tracing.EndSpan(ctx, sc, err) }() } req, err := client.CancelPreparer(ctx, accountName, jobIdentity) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "Cancel", nil, "Failure preparing request") return } result, err = client.CancelSender(req) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "Cancel", nil, "Failure sending request") return } return } // CancelPreparer prepares the Cancel request. func (client Client) CancelPreparer(ctx context.Context, accountName string, jobIdentity uuid.UUID) (*http.Request, error) { urlParameters := map[string]interface{}{ "accountName": accountName, "adlaJobDnsSuffix": client.AdlaJobDNSSuffix, } pathParameters := map[string]interface{}{ "jobIdentity": autorest.Encode("path", jobIdentity), } const APIVersion = "2017-09-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithCustomBaseURL("https://{accountName}.{adlaJobDnsSuffix}", urlParameters), autorest.WithPathParameters("/jobs/{jobIdentity}/CancelJob", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CancelSender sends the Cancel request. The method will close the // http.Response Body if it receives an error. func (client Client) CancelSender(req *http.Request) (future CancelFuture, err error) { var resp *http.Response resp, err = client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) if err != nil { return } var azf azure.Future azf, err = azure.NewFutureFromResponse(resp) future.FutureAPI = &azf future.Result = future.result return } // CancelResponder handles the response to the Cancel request. The method always // closes the http.Response Body. func (client Client) CancelResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return } // Create submits a job to the specified Data Lake Analytics account. // Parameters: // accountName - the Azure Data Lake Analytics account to execute job operations on. // jobIdentity - job identifier. Uniquely identifies the job across all jobs submitted to the service. // parameters - the parameters to submit a job. func (client Client) Create(ctx context.Context, accountName string, jobIdentity uuid.UUID, parameters CreateJobParameters) (result Information, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.Create") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: parameters, Constraints: []validation.Constraint{{Target: "parameters.Name", Name: validation.Null, Rule: true, Chain: nil}, {Target: "parameters.Related", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "parameters.Related.PipelineName", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "parameters.Related.PipelineName", Name: validation.MaxLength, Rule: 260, Chain: nil}}}, {Target: "parameters.Related.RecurrenceID", Name: validation.Null, Rule: true, Chain: nil}, {Target: "parameters.Related.RecurrenceName", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "parameters.Related.RecurrenceName", Name: validation.MaxLength, Rule: 260, Chain: nil}}}, }}}}}); err != nil { return result, validation.NewError("job.Client", "Create", err.Error()) } req, err := client.CreatePreparer(ctx, accountName, jobIdentity, parameters) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "Create", nil, "Failure preparing request") return } resp, err := client.CreateSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "job.Client", "Create", resp, "Failure sending request") return } result, err = client.CreateResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "Create", resp, "Failure responding to request") return } return } // CreatePreparer prepares the Create request. func (client Client) CreatePreparer(ctx context.Context, accountName string, jobIdentity uuid.UUID, parameters CreateJobParameters) (*http.Request, error) { urlParameters := map[string]interface{}{ "accountName": accountName, "adlaJobDnsSuffix": client.AdlaJobDNSSuffix, } pathParameters := map[string]interface{}{ "jobIdentity": autorest.Encode("path", jobIdentity), } const APIVersion = "2017-09-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithCustomBaseURL("https://{accountName}.{adlaJobDnsSuffix}", urlParameters), autorest.WithPathParameters("/jobs/{jobIdentity}", pathParameters), autorest.WithJSON(parameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateSender sends the Create request. The method will close the // http.Response Body if it receives an error. func (client Client) CreateSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // CreateResponder handles the response to the Create request. The method always // closes the http.Response Body. func (client Client) CreateResponder(resp *http.Response) (result Information, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // Get gets the job information for the specified job ID. // Parameters: // accountName - the Azure Data Lake Analytics account to execute job operations on. // jobIdentity - jobInfo ID. func (client Client) Get(ctx context.Context, accountName string, jobIdentity uuid.UUID) (result Information, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.Get") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } req, err := client.GetPreparer(ctx, accountName, jobIdentity) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "Get", nil, "Failure preparing request") return } resp, err := client.GetSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "job.Client", "Get", resp, "Failure sending request") return } result, err = client.GetResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "Get", resp, "Failure responding to request") return } return } // GetPreparer prepares the Get request. func (client Client) GetPreparer(ctx context.Context, accountName string, jobIdentity uuid.UUID) (*http.Request, error) { urlParameters := map[string]interface{}{ "accountName": accountName, "adlaJobDnsSuffix": client.AdlaJobDNSSuffix, } pathParameters := map[string]interface{}{ "jobIdentity": autorest.Encode("path", jobIdentity), } const APIVersion = "2017-09-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithCustomBaseURL("https://{accountName}.{adlaJobDnsSuffix}", urlParameters), autorest.WithPathParameters("/jobs/{jobIdentity}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSender sends the Get request. The method will close the // http.Response Body if it receives an error. func (client Client) GetSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetResponder handles the response to the Get request. The method always // closes the http.Response Body. func (client Client) GetResponder(resp *http.Response) (result Information, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDebugDataPath gets the job debug data information specified by the job ID. // Parameters: // accountName - the Azure Data Lake Analytics account to execute job operations on. // jobIdentity - job identifier. Uniquely identifies the job across all jobs submitted to the service. func (client Client) GetDebugDataPath(ctx context.Context, accountName string, jobIdentity uuid.UUID) (result DataPath, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.GetDebugDataPath") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } req, err := client.GetDebugDataPathPreparer(ctx, accountName, jobIdentity) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "GetDebugDataPath", nil, "Failure preparing request") return } resp, err := client.GetDebugDataPathSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "job.Client", "GetDebugDataPath", resp, "Failure sending request") return } result, err = client.GetDebugDataPathResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "GetDebugDataPath", resp, "Failure responding to request") return } return } // GetDebugDataPathPreparer prepares the GetDebugDataPath request. func (client Client) GetDebugDataPathPreparer(ctx context.Context, accountName string, jobIdentity uuid.UUID) (*http.Request, error) { urlParameters := map[string]interface{}{ "accountName": accountName, "adlaJobDnsSuffix": client.AdlaJobDNSSuffix, } pathParameters := map[string]interface{}{ "jobIdentity": autorest.Encode("path", jobIdentity), } const APIVersion = "2017-09-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithCustomBaseURL("https://{accountName}.{adlaJobDnsSuffix}", urlParameters), autorest.WithPathParameters("/jobs/{jobIdentity}/GetDebugDataPath", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDebugDataPathSender sends the GetDebugDataPath request. The method will close the // http.Response Body if it receives an error. func (client Client) GetDebugDataPathSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDebugDataPathResponder handles the response to the GetDebugDataPath request. The method always // closes the http.Response Body. func (client Client) GetDebugDataPathResponder(resp *http.Response) (result DataPath, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetStatistics gets statistics of the specified job. // Parameters: // accountName - the Azure Data Lake Analytics account to execute job operations on. // jobIdentity - job Information ID. func (client Client) GetStatistics(ctx context.Context, accountName string, jobIdentity uuid.UUID) (result Statistics, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.GetStatistics") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } req, err := client.GetStatisticsPreparer(ctx, accountName, jobIdentity) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "GetStatistics", nil, "Failure preparing request") return } resp, err := client.GetStatisticsSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "job.Client", "GetStatistics", resp, "Failure sending request") return } result, err = client.GetStatisticsResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "GetStatistics", resp, "Failure responding to request") return } return } // GetStatisticsPreparer prepares the GetStatistics request. func (client Client) GetStatisticsPreparer(ctx context.Context, accountName string, jobIdentity uuid.UUID) (*http.Request, error) { urlParameters := map[string]interface{}{ "accountName": accountName, "adlaJobDnsSuffix": client.AdlaJobDNSSuffix, } pathParameters := map[string]interface{}{ "jobIdentity": autorest.Encode("path", jobIdentity), } const APIVersion = "2017-09-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithCustomBaseURL("https://{accountName}.{adlaJobDnsSuffix}", urlParameters), autorest.WithPathParameters("/jobs/{jobIdentity}/GetStatistics", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetStatisticsSender sends the GetStatistics request. The method will close the // http.Response Body if it receives an error. func (client Client) GetStatisticsSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetStatisticsResponder handles the response to the GetStatistics request. The method always // closes the http.Response Body. func (client Client) GetStatisticsResponder(resp *http.Response) (result Statistics, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // List lists the jobs, if any, associated with the specified Data Lake Analytics account. The response includes a link // to the next page of results, if any. // Parameters: // accountName - the Azure Data Lake Analytics account to execute job operations on. // filter - oData filter. Optional. // top - the number of items to return. Optional. // skip - the number of items to skip over before returning elements. Optional. // selectParameter - oData Select statement. Limits the properties on each entry to just those requested, e.g. // Categories?$select=CategoryName,Description. Optional. // orderby - orderBy clause. One or more comma-separated expressions with an optional "asc" (the default) or // "desc" depending on the order you'd like the values sorted, e.g. Categories?$orderby=CategoryName desc. // Optional. // count - the Boolean value of true or false to request a count of the matching resources included with the // resources in the response, e.g. Categories?$count=true. Optional. func (client Client) List(ctx context.Context, accountName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result InfoListResultPage, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.List") defer func() { sc := -1 if result.ilr.Response.Response != nil { sc = result.ilr.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: top, Constraints: []validation.Constraint{{Target: "top", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "top", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}}}}}, {TargetValue: skip, Constraints: []validation.Constraint{{Target: "skip", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "skip", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}}}}}}); err != nil { return result, validation.NewError("job.Client", "List", err.Error()) } result.fn = client.listNextResults req, err := client.ListPreparer(ctx, accountName, filter, top, skip, selectParameter, orderby, count) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "List", nil, "Failure preparing request") return } resp, err := client.ListSender(req) if err != nil { result.ilr.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "job.Client", "List", resp, "Failure sending request") return } result.ilr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "List", resp, "Failure responding to request") return } if result.ilr.hasNextLink() && result.ilr.IsEmpty() { err = result.NextWithContext(ctx) return } return } // ListPreparer prepares the List request. func (client Client) ListPreparer(ctx context.Context, accountName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (*http.Request, error) { urlParameters := map[string]interface{}{ "accountName": accountName, "adlaJobDnsSuffix": client.AdlaJobDNSSuffix, } const APIVersion = "2017-09-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(filter) > 0 { queryParameters["$filter"] = autorest.Encode("query", filter) } if top != nil { queryParameters["$top"] = autorest.Encode("query", *top) } if skip != nil { queryParameters["$skip"] = autorest.Encode("query", *skip) } if len(selectParameter) > 0 { queryParameters["$select"] = autorest.Encode("query", selectParameter) } if len(orderby) > 0 { queryParameters["$orderby"] = autorest.Encode("query", orderby) } if count != nil { queryParameters["$count"] = autorest.Encode("query", *count) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithCustomBaseURL("https://{accountName}.{adlaJobDnsSuffix}", urlParameters), autorest.WithPath("/jobs"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListSender sends the List request. The method will close the // http.Response Body if it receives an error. func (client Client) ListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ListResponder handles the response to the List request. The method always // closes the http.Response Body. func (client Client) ListResponder(resp *http.Response) (result InfoListResult, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // listNextResults retrieves the next set of results, if any. func (client Client) listNextResults(ctx context.Context, lastResults InfoListResult) (result InfoListResult, err error) { req, err := lastResults.infoListResultPreparer(ctx) if err != nil { return result, autorest.NewErrorWithError(err, "job.Client", "listNextResults", nil, "Failure preparing next results request") } if req == nil { return } resp, err := client.ListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} return result, autorest.NewErrorWithError(err, "job.Client", "listNextResults", resp, "Failure sending next results request") } result, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "listNextResults", resp, "Failure responding to next results request") } return } // ListComplete enumerates all values, automatically crossing page boundaries as required. func (client Client) ListComplete(ctx context.Context, accountName string, filter string, top *int32, skip *int32, selectParameter string, orderby string, count *bool) (result InfoListResultIterator, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.List") defer func() { sc := -1 if result.Response().Response.Response != nil { sc = result.page.Response().Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } result.page, err = client.List(ctx, accountName, filter, top, skip, selectParameter, orderby, count) return } // Update updates the job information for the specified job ID. (Only for use internally with Scope job type.) // Parameters: // accountName - the Azure Data Lake Analytics account to execute job operations on. // jobIdentity - job identifier. Uniquely identifies the job across all jobs submitted to the service. // parameters - the parameters to update a job. func (client Client) Update(ctx context.Context, accountName string, jobIdentity uuid.UUID, parameters *UpdateJobParameters) (result UpdateFuture, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.Update") defer func() { sc := -1 if result.FutureAPI != nil && result.FutureAPI.Response() != nil { sc = result.FutureAPI.Response().StatusCode } tracing.EndSpan(ctx, sc, err) }() } req, err := client.UpdatePreparer(ctx, accountName, jobIdentity, parameters) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "Update", nil, "Failure preparing request") return } result, err = client.UpdateSender(req) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "Update", nil, "Failure sending request") return } return } // UpdatePreparer prepares the Update request. func (client Client) UpdatePreparer(ctx context.Context, accountName string, jobIdentity uuid.UUID, parameters *UpdateJobParameters) (*http.Request, error) { urlParameters := map[string]interface{}{ "accountName": accountName, "adlaJobDnsSuffix": client.AdlaJobDNSSuffix, } pathParameters := map[string]interface{}{ "jobIdentity": autorest.Encode("path", jobIdentity), } const APIVersion = "2017-09-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPatch(), autorest.WithCustomBaseURL("https://{accountName}.{adlaJobDnsSuffix}", urlParameters), autorest.WithPathParameters("/jobs/{jobIdentity}", pathParameters), autorest.WithQueryParameters(queryParameters)) if parameters != nil { preparer = autorest.DecoratePreparer(preparer, autorest.WithJSON(parameters)) } return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // UpdateSender sends the Update request. The method will close the // http.Response Body if it receives an error. func (client Client) UpdateSender(req *http.Request) (future UpdateFuture, err error) { var resp *http.Response resp, err = client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) if err != nil { return } var azf azure.Future azf, err = azure.NewFutureFromResponse(resp) future.FutureAPI = &azf future.Result = future.result return } // UpdateResponder handles the response to the Update request. The method always // closes the http.Response Body. func (client Client) UpdateResponder(resp *http.Response) (result Information, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated, http.StatusAccepted), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // Yield pauses the specified job and places it back in the job queue, behind other jobs of equal or higher importance, // based on priority. (Only for use internally with Scope job type.) // Parameters: // accountName - the Azure Data Lake Analytics account to execute job operations on. // jobIdentity - job identifier. Uniquely identifies the job across all jobs submitted to the service. func (client Client) Yield(ctx context.Context, accountName string, jobIdentity uuid.UUID) (result YieldFuture, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.Yield") defer func() { sc := -1 if result.FutureAPI != nil && result.FutureAPI.Response() != nil { sc = result.FutureAPI.Response().StatusCode } tracing.EndSpan(ctx, sc, err) }() } req, err := client.YieldPreparer(ctx, accountName, jobIdentity) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "Yield", nil, "Failure preparing request") return } result, err = client.YieldSender(req) if err != nil { err = autorest.NewErrorWithError(err, "job.Client", "Yield", nil, "Failure sending request") return } return } // YieldPreparer prepares the Yield request. func (client Client) YieldPreparer(ctx context.Context, accountName string, jobIdentity uuid.UUID) (*http.Request, error) { urlParameters := map[string]interface{}{ "accountName": accountName, "adlaJobDnsSuffix": client.AdlaJobDNSSuffix, } pathParameters := map[string]interface{}{ "jobIdentity": autorest.Encode("path", jobIdentity), } const APIVersion = "2017-09-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithCustomBaseURL("https://{accountName}.{adlaJobDnsSuffix}", urlParameters), autorest.WithPathParameters("/jobs/{jobIdentity}/YieldJob", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // YieldSender sends the Yield request. The method will close the // http.Response Body if it receives an error. func (client Client) YieldSender(req *http.Request) (future YieldFuture, err error) { var resp *http.Response resp, err = client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) if err != nil { return } var azf azure.Future azf, err = azure.NewFutureFromResponse(resp) future.FutureAPI = &azf future.Result = future.result return } // YieldResponder handles the response to the Yield request. The method always // closes the http.Response Body. func (client Client) YieldResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted, http.StatusNoContent), autorest.ByClosing()) result.Response = resp return }