package resourcegroups import ( "encoding/json" "errors" "fmt" "net/http" "net/url" "github.com/virtual-kubelet/virtual-kubelet/providers/azure/client/api" ) // GetResourceGroup gets an Azure resource group. // From: https://docs.microsoft.com/en-us/rest/api/resources/ResourceGroups/Get func (c *Client) GetResourceGroup(resourceGroup string) (*Group, error) { urlParams := url.Values{ "api-version": []string{apiVersion}, } // Create the url. uri := api.ResolveRelative(BaseURI, resourceGroupURLPath) uri += "?" + url.Values(urlParams).Encode() // Create the request. req, err := http.NewRequest("GET", uri, nil) if err != nil { return nil, fmt.Errorf("Creating get resource group uri request failed: %v", err) } // Add the parameters to the url. if err := api.ExpandURL(req.URL, map[string]string{ "subscriptionId": c.auth.SubscriptionID, "resourceGroupName": resourceGroup, }); err != nil { return nil, fmt.Errorf("Expanding URL with parameters failed: %v", err) } // Send the request. resp, err := c.hc.Do(req) if err != nil { return nil, fmt.Errorf("Sending get resource group request failed: %v", err) } defer resp.Body.Close() // 200 (OK) is a success response. if err := api.CheckResponse(resp); err != nil { return nil, err } // Decode the body from the response. if resp.Body == nil { return nil, errors.New("Create resource group returned an empty body in the response") } var g Group if err := json.NewDecoder(resp.Body).Decode(&g); err != nil { return nil, fmt.Errorf("Decoding get resource group response body failed: %v", err) } return &g, nil }