1package network
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// BgpServiceCommunitiesClient is the network Client
29type BgpServiceCommunitiesClient struct {
30	BaseClient
31}
32
33// NewBgpServiceCommunitiesClient creates an instance of the BgpServiceCommunitiesClient client.
34func NewBgpServiceCommunitiesClient(subscriptionID string) BgpServiceCommunitiesClient {
35	return NewBgpServiceCommunitiesClientWithBaseURI(DefaultBaseURI, subscriptionID)
36}
37
38// NewBgpServiceCommunitiesClientWithBaseURI creates an instance of the BgpServiceCommunitiesClient client using a
39// custom endpoint.  Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds,
40// Azure stack).
41func NewBgpServiceCommunitiesClientWithBaseURI(baseURI string, subscriptionID string) BgpServiceCommunitiesClient {
42	return BgpServiceCommunitiesClient{NewWithBaseURI(baseURI, subscriptionID)}
43}
44
45// List gets all the available bgp service communities.
46func (client BgpServiceCommunitiesClient) List(ctx context.Context) (result BgpServiceCommunityListResultPage, err error) {
47	if tracing.IsEnabled() {
48		ctx = tracing.StartSpan(ctx, fqdn+"/BgpServiceCommunitiesClient.List")
49		defer func() {
50			sc := -1
51			if result.bsclr.Response.Response != nil {
52				sc = result.bsclr.Response.Response.StatusCode
53			}
54			tracing.EndSpan(ctx, sc, err)
55		}()
56	}
57	result.fn = client.listNextResults
58	req, err := client.ListPreparer(ctx)
59	if err != nil {
60		err = autorest.NewErrorWithError(err, "network.BgpServiceCommunitiesClient", "List", nil, "Failure preparing request")
61		return
62	}
63
64	resp, err := client.ListSender(req)
65	if err != nil {
66		result.bsclr.Response = autorest.Response{Response: resp}
67		err = autorest.NewErrorWithError(err, "network.BgpServiceCommunitiesClient", "List", resp, "Failure sending request")
68		return
69	}
70
71	result.bsclr, err = client.ListResponder(resp)
72	if err != nil {
73		err = autorest.NewErrorWithError(err, "network.BgpServiceCommunitiesClient", "List", resp, "Failure responding to request")
74	}
75
76	return
77}
78
79// ListPreparer prepares the List request.
80func (client BgpServiceCommunitiesClient) ListPreparer(ctx context.Context) (*http.Request, error) {
81	pathParameters := map[string]interface{}{
82		"subscriptionId": autorest.Encode("path", client.SubscriptionID),
83	}
84
85	const APIVersion = "2019-11-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.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/bgpServiceCommunities", pathParameters),
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 BgpServiceCommunitiesClient) ListSender(req *http.Request) (*http.Response, error) {
101	return client.Send(req, azure.DoRetryWithRegistration(client.Client))
102}
103
104// ListResponder handles the response to the List request. The method always
105// closes the http.Response Body.
106func (client BgpServiceCommunitiesClient) ListResponder(resp *http.Response) (result BgpServiceCommunityListResult, err error) {
107	err = autorest.Respond(
108		resp,
109		client.ByInspecting(),
110		azure.WithErrorUnlessStatusCode(http.StatusOK),
111		autorest.ByUnmarshallingJSON(&result),
112		autorest.ByClosing())
113	result.Response = autorest.Response{Response: resp}
114	return
115}
116
117// listNextResults retrieves the next set of results, if any.
118func (client BgpServiceCommunitiesClient) listNextResults(ctx context.Context, lastResults BgpServiceCommunityListResult) (result BgpServiceCommunityListResult, err error) {
119	req, err := lastResults.bgpServiceCommunityListResultPreparer(ctx)
120	if err != nil {
121		return result, autorest.NewErrorWithError(err, "network.BgpServiceCommunitiesClient", "listNextResults", nil, "Failure preparing next results request")
122	}
123	if req == nil {
124		return
125	}
126	resp, err := client.ListSender(req)
127	if err != nil {
128		result.Response = autorest.Response{Response: resp}
129		return result, autorest.NewErrorWithError(err, "network.BgpServiceCommunitiesClient", "listNextResults", resp, "Failure sending next results request")
130	}
131	result, err = client.ListResponder(resp)
132	if err != nil {
133		err = autorest.NewErrorWithError(err, "network.BgpServiceCommunitiesClient", "listNextResults", resp, "Failure responding to next results request")
134	}
135	return
136}
137
138// ListComplete enumerates all values, automatically crossing page boundaries as required.
139func (client BgpServiceCommunitiesClient) ListComplete(ctx context.Context) (result BgpServiceCommunityListResultIterator, err error) {
140	if tracing.IsEnabled() {
141		ctx = tracing.StartSpan(ctx, fqdn+"/BgpServiceCommunitiesClient.List")
142		defer func() {
143			sc := -1
144			if result.Response().Response.Response != nil {
145				sc = result.page.Response().Response.Response.StatusCode
146			}
147			tracing.EndSpan(ctx, sc, err)
148		}()
149	}
150	result.page, err = client.List(ctx)
151	return
152}
153