1package databox
2
3// Copyright (c) Microsoft and contributors.  All rights reserved.
4//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13//
14// See the License for the specific language governing permissions and
15// limitations under the License.
16//
17// Code generated by Microsoft (R) AutoRest Code Generator.
18// Changes may cause incorrect behavior and will be lost if the code is regenerated.
19
20import (
21	"context"
22	"github.com/Azure/go-autorest/autorest"
23	"github.com/Azure/go-autorest/autorest/azure"
24	"github.com/Azure/go-autorest/tracing"
25	"net/http"
26)
27
28// OperationsClient is the client for the Operations methods of the Databox service.
29type OperationsClient struct {
30	BaseClient
31}
32
33// NewOperationsClient creates an instance of the OperationsClient client.
34func NewOperationsClient(subscriptionID string) OperationsClient {
35	return NewOperationsClientWithBaseURI(DefaultBaseURI, subscriptionID)
36}
37
38// NewOperationsClientWithBaseURI creates an instance of the OperationsClient client using a custom endpoint.  Use this
39// when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack).
40func NewOperationsClientWithBaseURI(baseURI string, subscriptionID string) OperationsClient {
41	return OperationsClient{NewWithBaseURI(baseURI, subscriptionID)}
42}
43
44// List this method gets all the operations.
45func (client OperationsClient) List(ctx context.Context) (result OperationListPage, err error) {
46	if tracing.IsEnabled() {
47		ctx = tracing.StartSpan(ctx, fqdn+"/OperationsClient.List")
48		defer func() {
49			sc := -1
50			if result.ol.Response.Response != nil {
51				sc = result.ol.Response.Response.StatusCode
52			}
53			tracing.EndSpan(ctx, sc, err)
54		}()
55	}
56	result.fn = client.listNextResults
57	req, err := client.ListPreparer(ctx)
58	if err != nil {
59		err = autorest.NewErrorWithError(err, "databox.OperationsClient", "List", nil, "Failure preparing request")
60		return
61	}
62
63	resp, err := client.ListSender(req)
64	if err != nil {
65		result.ol.Response = autorest.Response{Response: resp}
66		err = autorest.NewErrorWithError(err, "databox.OperationsClient", "List", resp, "Failure sending request")
67		return
68	}
69
70	result.ol, err = client.ListResponder(resp)
71	if err != nil {
72		err = autorest.NewErrorWithError(err, "databox.OperationsClient", "List", resp, "Failure responding to request")
73		return
74	}
75	if result.ol.hasNextLink() && result.ol.IsEmpty() {
76		err = result.NextWithContext(ctx)
77		return
78	}
79
80	return
81}
82
83// ListPreparer prepares the List request.
84func (client OperationsClient) ListPreparer(ctx context.Context) (*http.Request, error) {
85	const APIVersion = "2020-04-01"
86	queryParameters := map[string]interface{}{
87		"api-version": APIVersion,
88	}
89
90	preparer := autorest.CreatePreparer(
91		autorest.AsGet(),
92		autorest.WithBaseURL(client.BaseURI),
93		autorest.WithPath("/providers/Microsoft.DataBox/operations"),
94		autorest.WithQueryParameters(queryParameters))
95	return preparer.Prepare((&http.Request{}).WithContext(ctx))
96}
97
98// ListSender sends the List request. The method will close the
99// http.Response Body if it receives an error.
100func (client OperationsClient) ListSender(req *http.Request) (*http.Response, error) {
101	return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
102}
103
104// ListResponder handles the response to the List request. The method always
105// closes the http.Response Body.
106func (client OperationsClient) ListResponder(resp *http.Response) (result OperationList, err error) {
107	err = autorest.Respond(
108		resp,
109		azure.WithErrorUnlessStatusCode(http.StatusOK),
110		autorest.ByUnmarshallingJSON(&result),
111		autorest.ByClosing())
112	result.Response = autorest.Response{Response: resp}
113	return
114}
115
116// listNextResults retrieves the next set of results, if any.
117func (client OperationsClient) listNextResults(ctx context.Context, lastResults OperationList) (result OperationList, err error) {
118	req, err := lastResults.operationListPreparer(ctx)
119	if err != nil {
120		return result, autorest.NewErrorWithError(err, "databox.OperationsClient", "listNextResults", nil, "Failure preparing next results request")
121	}
122	if req == nil {
123		return
124	}
125	resp, err := client.ListSender(req)
126	if err != nil {
127		result.Response = autorest.Response{Response: resp}
128		return result, autorest.NewErrorWithError(err, "databox.OperationsClient", "listNextResults", resp, "Failure sending next results request")
129	}
130	result, err = client.ListResponder(resp)
131	if err != nil {
132		err = autorest.NewErrorWithError(err, "databox.OperationsClient", "listNextResults", resp, "Failure responding to next results request")
133	}
134	return
135}
136
137// ListComplete enumerates all values, automatically crossing page boundaries as required.
138func (client OperationsClient) ListComplete(ctx context.Context) (result OperationListIterator, err error) {
139	if tracing.IsEnabled() {
140		ctx = tracing.StartSpan(ctx, fqdn+"/OperationsClient.List")
141		defer func() {
142			sc := -1
143			if result.Response().Response.Response != nil {
144				sc = result.page.Response().Response.Response.StatusCode
145			}
146			tracing.EndSpan(ctx, sc, err)
147		}()
148	}
149	result.page, err = client.List(ctx)
150	return
151}
152