1package automation
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/autorest/validation"
25	"github.com/Azure/go-autorest/tracing"
26	"net/http"
27)
28
29// NodeCountInformationClient is the automation Client
30type NodeCountInformationClient struct {
31	BaseClient
32}
33
34// NewNodeCountInformationClient creates an instance of the NodeCountInformationClient client.
35func NewNodeCountInformationClient(subscriptionID string) NodeCountInformationClient {
36	return NewNodeCountInformationClientWithBaseURI(DefaultBaseURI, subscriptionID)
37}
38
39// NewNodeCountInformationClientWithBaseURI creates an instance of the NodeCountInformationClient client using a custom
40// endpoint.  Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure
41// stack).
42func NewNodeCountInformationClientWithBaseURI(baseURI string, subscriptionID string) NodeCountInformationClient {
43	return NodeCountInformationClient{NewWithBaseURI(baseURI, subscriptionID)}
44}
45
46// Get retrieve counts for Dsc Nodes.
47// Parameters:
48// resourceGroupName - name of an Azure Resource group.
49// automationAccountName - the name of the automation account.
50// countType - the type of counts to retrieve
51func (client NodeCountInformationClient) Get(ctx context.Context, resourceGroupName string, automationAccountName string, countType CountType) (result NodeCounts, err error) {
52	if tracing.IsEnabled() {
53		ctx = tracing.StartSpan(ctx, fqdn+"/NodeCountInformationClient.Get")
54		defer func() {
55			sc := -1
56			if result.Response.Response != nil {
57				sc = result.Response.Response.StatusCode
58			}
59			tracing.EndSpan(ctx, sc, err)
60		}()
61	}
62	if err := validation.Validate([]validation.Validation{
63		{TargetValue: resourceGroupName,
64			Constraints: []validation.Constraint{{Target: "resourceGroupName", Name: validation.MaxLength, Rule: 90, Chain: nil},
65				{Target: "resourceGroupName", Name: validation.MinLength, Rule: 1, Chain: nil},
66				{Target: "resourceGroupName", Name: validation.Pattern, Rule: `^[-\w\._]+$`, Chain: nil}}}}); err != nil {
67		return result, validation.NewError("automation.NodeCountInformationClient", "Get", err.Error())
68	}
69
70	req, err := client.GetPreparer(ctx, resourceGroupName, automationAccountName, countType)
71	if err != nil {
72		err = autorest.NewErrorWithError(err, "automation.NodeCountInformationClient", "Get", nil, "Failure preparing request")
73		return
74	}
75
76	resp, err := client.GetSender(req)
77	if err != nil {
78		result.Response = autorest.Response{Response: resp}
79		err = autorest.NewErrorWithError(err, "automation.NodeCountInformationClient", "Get", resp, "Failure sending request")
80		return
81	}
82
83	result, err = client.GetResponder(resp)
84	if err != nil {
85		err = autorest.NewErrorWithError(err, "automation.NodeCountInformationClient", "Get", resp, "Failure responding to request")
86	}
87
88	return
89}
90
91// GetPreparer prepares the Get request.
92func (client NodeCountInformationClient) GetPreparer(ctx context.Context, resourceGroupName string, automationAccountName string, countType CountType) (*http.Request, error) {
93	pathParameters := map[string]interface{}{
94		"automationAccountName": autorest.Encode("path", automationAccountName),
95		"countType":             autorest.Encode("path", countType),
96		"resourceGroupName":     autorest.Encode("path", resourceGroupName),
97		"subscriptionId":        autorest.Encode("path", client.SubscriptionID),
98	}
99
100	const APIVersion = "2018-01-15"
101	queryParameters := map[string]interface{}{
102		"api-version": APIVersion,
103	}
104
105	preparer := autorest.CreatePreparer(
106		autorest.AsGet(),
107		autorest.WithBaseURL(client.BaseURI),
108		autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/nodecounts/{countType}", pathParameters),
109		autorest.WithQueryParameters(queryParameters))
110	return preparer.Prepare((&http.Request{}).WithContext(ctx))
111}
112
113// GetSender sends the Get request. The method will close the
114// http.Response Body if it receives an error.
115func (client NodeCountInformationClient) GetSender(req *http.Request) (*http.Response, error) {
116	return client.Send(req, azure.DoRetryWithRegistration(client.Client))
117}
118
119// GetResponder handles the response to the Get request. The method always
120// closes the http.Response Body.
121func (client NodeCountInformationClient) GetResponder(resp *http.Response) (result NodeCounts, err error) {
122	err = autorest.Respond(
123		resp,
124		client.ByInspecting(),
125		azure.WithErrorUnlessStatusCode(http.StatusOK),
126		autorest.ByUnmarshallingJSON(&result),
127		autorest.ByClosing())
128	result.Response = autorest.Response{Response: resp}
129	return
130}
131