package commitmentplans // 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/tracing" "net/http" ) // Client is the these APIs allow end users to operate on Azure Machine Learning Commitment Plans resources and their // child Commitment Association resources. They support CRUD operations for commitment plans, get and list operations // for commitment associations, moving commitment associations between commitment plans, and retrieving commitment plan // usage history. type Client struct { BaseClient } // NewClient creates an instance of the Client client. func NewClient(subscriptionID string) Client { return NewClientWithBaseURI(DefaultBaseURI, subscriptionID) } // NewClientWithBaseURI creates an instance of the Client client using a custom endpoint. Use this when interacting // with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack). func NewClientWithBaseURI(baseURI string, subscriptionID string) Client { return Client{NewWithBaseURI(baseURI, subscriptionID)} } // CreateOrUpdate create a new Azure ML commitment plan resource or updates an existing one. // Parameters: // createOrUpdatePayload - the payload to create or update the Azure ML commitment plan. // resourceGroupName - the resource group name. // commitmentPlanName - the Azure ML commitment plan name. func (client Client) CreateOrUpdate(ctx context.Context, createOrUpdatePayload CommitmentPlan, resourceGroupName string, commitmentPlanName string) (result CommitmentPlan, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.CreateOrUpdate") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } req, err := client.CreateOrUpdatePreparer(ctx, createOrUpdatePayload, resourceGroupName, commitmentPlanName) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.Client", "CreateOrUpdate", nil, "Failure preparing request") return } resp, err := client.CreateOrUpdateSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "commitmentplans.Client", "CreateOrUpdate", resp, "Failure sending request") return } result, err = client.CreateOrUpdateResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.Client", "CreateOrUpdate", resp, "Failure responding to request") return } return } // CreateOrUpdatePreparer prepares the CreateOrUpdate request. func (client Client) CreateOrUpdatePreparer(ctx context.Context, createOrUpdatePayload CommitmentPlan, resourceGroupName string, commitmentPlanName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "commitmentPlanName": autorest.Encode("path", commitmentPlanName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } const APIVersion = "2016-05-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } createOrUpdatePayload.Properties = nil preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/commitmentPlans/{commitmentPlanName}", pathParameters), autorest.WithJSON(createOrUpdatePayload), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the // http.Response Body if it receives an error. func (client Client) CreateOrUpdateSender(req *http.Request) (*http.Response, error) { return client.Send(req, azure.DoRetryWithRegistration(client.Client)) } // CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always // closes the http.Response Body. func (client Client) CreateOrUpdateResponder(resp *http.Response) (result CommitmentPlan, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // Get retrieve an Azure ML commitment plan by its subscription, resource group and name. // Parameters: // resourceGroupName - the resource group name. // commitmentPlanName - the Azure ML commitment plan name. func (client Client) Get(ctx context.Context, resourceGroupName string, commitmentPlanName string) (result CommitmentPlan, 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, resourceGroupName, commitmentPlanName) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.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, "commitmentplans.Client", "Get", resp, "Failure sending request") return } result, err = client.GetResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.Client", "Get", resp, "Failure responding to request") return } return } // GetPreparer prepares the Get request. func (client Client) GetPreparer(ctx context.Context, resourceGroupName string, commitmentPlanName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "commitmentPlanName": autorest.Encode("path", commitmentPlanName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } const APIVersion = "2016-05-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/commitmentPlans/{commitmentPlanName}", 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, azure.DoRetryWithRegistration(client.Client)) } // GetResponder handles the response to the Get request. The method always // closes the http.Response Body. func (client Client) GetResponder(resp *http.Response) (result CommitmentPlan, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // List retrieve all Azure ML commitment plans in a subscription. // Parameters: // skipToken - continuation token for pagination. func (client Client) List(ctx context.Context, skipToken string) (result ListResultPage, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.List") defer func() { sc := -1 if result.lr.Response.Response != nil { sc = result.lr.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } result.fn = client.listNextResults req, err := client.ListPreparer(ctx, skipToken) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.Client", "List", nil, "Failure preparing request") return } resp, err := client.ListSender(req) if err != nil { result.lr.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "commitmentplans.Client", "List", resp, "Failure sending request") return } result.lr, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.Client", "List", resp, "Failure responding to request") return } if result.lr.hasNextLink() && result.lr.IsEmpty() { err = result.NextWithContext(ctx) return } return } // ListPreparer prepares the List request. func (client Client) ListPreparer(ctx context.Context, skipToken string) (*http.Request, error) { pathParameters := map[string]interface{}{ "subscriptionId": autorest.Encode("path", client.SubscriptionID), } const APIVersion = "2016-05-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(skipToken) > 0 { queryParameters["$skipToken"] = autorest.Encode("query", skipToken) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.MachineLearning/commitmentPlans", pathParameters), 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, azure.DoRetryWithRegistration(client.Client)) } // ListResponder handles the response to the List request. The method always // closes the http.Response Body. func (client Client) ListResponder(resp *http.Response) (result ListResult, 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 ListResult) (result ListResult, err error) { req, err := lastResults.listResultPreparer(ctx) if err != nil { return result, autorest.NewErrorWithError(err, "commitmentplans.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, "commitmentplans.Client", "listNextResults", resp, "Failure sending next results request") } result, err = client.ListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.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, skipToken string) (result ListResultIterator, 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, skipToken) return } // ListInResourceGroup retrieve all Azure ML commitment plans in a resource group. // Parameters: // resourceGroupName - the resource group name. // skipToken - continuation token for pagination. func (client Client) ListInResourceGroup(ctx context.Context, resourceGroupName string, skipToken string) (result ListResultPage, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.ListInResourceGroup") defer func() { sc := -1 if result.lr.Response.Response != nil { sc = result.lr.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } result.fn = client.listInResourceGroupNextResults req, err := client.ListInResourceGroupPreparer(ctx, resourceGroupName, skipToken) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.Client", "ListInResourceGroup", nil, "Failure preparing request") return } resp, err := client.ListInResourceGroupSender(req) if err != nil { result.lr.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "commitmentplans.Client", "ListInResourceGroup", resp, "Failure sending request") return } result.lr, err = client.ListInResourceGroupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.Client", "ListInResourceGroup", resp, "Failure responding to request") return } if result.lr.hasNextLink() && result.lr.IsEmpty() { err = result.NextWithContext(ctx) return } return } // ListInResourceGroupPreparer prepares the ListInResourceGroup request. func (client Client) ListInResourceGroupPreparer(ctx context.Context, resourceGroupName string, skipToken string) (*http.Request, error) { pathParameters := map[string]interface{}{ "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } const APIVersion = "2016-05-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(skipToken) > 0 { queryParameters["$skipToken"] = autorest.Encode("query", skipToken) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/commitmentPlans", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ListInResourceGroupSender sends the ListInResourceGroup request. The method will close the // http.Response Body if it receives an error. func (client Client) ListInResourceGroupSender(req *http.Request) (*http.Response, error) { return client.Send(req, azure.DoRetryWithRegistration(client.Client)) } // ListInResourceGroupResponder handles the response to the ListInResourceGroup request. The method always // closes the http.Response Body. func (client Client) ListInResourceGroupResponder(resp *http.Response) (result ListResult, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // listInResourceGroupNextResults retrieves the next set of results, if any. func (client Client) listInResourceGroupNextResults(ctx context.Context, lastResults ListResult) (result ListResult, err error) { req, err := lastResults.listResultPreparer(ctx) if err != nil { return result, autorest.NewErrorWithError(err, "commitmentplans.Client", "listInResourceGroupNextResults", nil, "Failure preparing next results request") } if req == nil { return } resp, err := client.ListInResourceGroupSender(req) if err != nil { result.Response = autorest.Response{Response: resp} return result, autorest.NewErrorWithError(err, "commitmentplans.Client", "listInResourceGroupNextResults", resp, "Failure sending next results request") } result, err = client.ListInResourceGroupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.Client", "listInResourceGroupNextResults", resp, "Failure responding to next results request") } return } // ListInResourceGroupComplete enumerates all values, automatically crossing page boundaries as required. func (client Client) ListInResourceGroupComplete(ctx context.Context, resourceGroupName string, skipToken string) (result ListResultIterator, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.ListInResourceGroup") 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.ListInResourceGroup(ctx, resourceGroupName, skipToken) return } // Patch patch an existing Azure ML commitment plan resource. // Parameters: // patchPayload - the payload to use to patch the Azure ML commitment plan. Only tags and SKU may be modified // on an existing commitment plan. // resourceGroupName - the resource group name. // commitmentPlanName - the Azure ML commitment plan name. func (client Client) Patch(ctx context.Context, patchPayload PatchPayload, resourceGroupName string, commitmentPlanName string) (result CommitmentPlan, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.Patch") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } req, err := client.PatchPreparer(ctx, patchPayload, resourceGroupName, commitmentPlanName) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.Client", "Patch", nil, "Failure preparing request") return } resp, err := client.PatchSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "commitmentplans.Client", "Patch", resp, "Failure sending request") return } result, err = client.PatchResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.Client", "Patch", resp, "Failure responding to request") return } return } // PatchPreparer prepares the Patch request. func (client Client) PatchPreparer(ctx context.Context, patchPayload PatchPayload, resourceGroupName string, commitmentPlanName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "commitmentPlanName": autorest.Encode("path", commitmentPlanName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } const APIVersion = "2016-05-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPatch(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/commitmentPlans/{commitmentPlanName}", pathParameters), autorest.WithJSON(patchPayload), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // PatchSender sends the Patch request. The method will close the // http.Response Body if it receives an error. func (client Client) PatchSender(req *http.Request) (*http.Response, error) { return client.Send(req, azure.DoRetryWithRegistration(client.Client)) } // PatchResponder handles the response to the Patch request. The method always // closes the http.Response Body. func (client Client) PatchResponder(resp *http.Response) (result CommitmentPlan, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // Remove remove an existing Azure ML commitment plan. // Parameters: // resourceGroupName - the resource group name. // commitmentPlanName - the Azure ML commitment plan name. func (client Client) Remove(ctx context.Context, resourceGroupName string, commitmentPlanName string) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/Client.Remove") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } req, err := client.RemovePreparer(ctx, resourceGroupName, commitmentPlanName) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.Client", "Remove", nil, "Failure preparing request") return } resp, err := client.RemoveSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "commitmentplans.Client", "Remove", resp, "Failure sending request") return } result, err = client.RemoveResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "commitmentplans.Client", "Remove", resp, "Failure responding to request") return } return } // RemovePreparer prepares the Remove request. func (client Client) RemovePreparer(ctx context.Context, resourceGroupName string, commitmentPlanName string) (*http.Request, error) { pathParameters := map[string]interface{}{ "commitmentPlanName": autorest.Encode("path", commitmentPlanName), "resourceGroupName": autorest.Encode("path", resourceGroupName), "subscriptionId": autorest.Encode("path", client.SubscriptionID), } const APIVersion = "2016-05-01-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsDelete(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/commitmentPlans/{commitmentPlanName}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RemoveSender sends the Remove request. The method will close the // http.Response Body if it receives an error. func (client Client) RemoveSender(req *http.Request) (*http.Response, error) { return client.Send(req, azure.DoRetryWithRegistration(client.Client)) } // RemoveResponder handles the response to the Remove request. The method always // closes the http.Response Body. func (client Client) RemoveResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return }