//go:build go1.18 // +build go1.18 // 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. DO NOT EDIT. // Changes may cause incorrect behavior and will be lost if the code is regenerated. package armresourcegraph import ( "context" "github.com/Azure/azure-sdk-for-go/sdk/azcore" "github.com/Azure/azure-sdk-for-go/sdk/azcore/arm" "github.com/Azure/azure-sdk-for-go/sdk/azcore/policy" "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "net/http" ) // Client contains the methods for the ResourceGraphClient group. // Don't use this type directly, use NewClient() instead. type Client struct { internal *arm.Client } // NewClient creates a new instance of Client with the specified values. // - credential - used to authorize requests. Usually a credential from azidentity. // - options - pass nil to accept the default values. func NewClient(credential azcore.TokenCredential, options *arm.ClientOptions) (*Client, error) { cl, err := arm.NewClient(moduleName, moduleVersion, credential, options) if err != nil { return nil, err } client := &Client{ internal: cl, } return client, nil } // Resources - Queries the resources managed by Azure Resource Manager for scopes specified in the request. // If the operation fails it returns an *azcore.ResponseError type. // // Generated from API version 2021-06-01-preview // - query - Request specifying query and its options. // - options - ClientResourcesOptions contains the optional parameters for the Client.Resources method. func (client *Client) Resources(ctx context.Context, query QueryRequest, options *ClientResourcesOptions) (ClientResourcesResponse, error) { var err error const operationName = "Client.Resources" ctx = context.WithValue(ctx, runtime.CtxAPINameKey{}, operationName) ctx, endSpan := runtime.StartSpan(ctx, operationName, client.internal.Tracer(), nil) defer func() { endSpan(err) }() req, err := client.resourcesCreateRequest(ctx, query, options) if err != nil { return ClientResourcesResponse{}, err } httpResp, err := client.internal.Pipeline().Do(req) if err != nil { return ClientResourcesResponse{}, err } if !runtime.HasStatusCode(httpResp, http.StatusOK) { err = runtime.NewResponseError(httpResp) return ClientResourcesResponse{}, err } resp, err := client.resourcesHandleResponse(httpResp) return resp, err } // resourcesCreateRequest creates the Resources request. func (client *Client) resourcesCreateRequest(ctx context.Context, query QueryRequest, options *ClientResourcesOptions) (*policy.Request, error) { urlPath := "/providers/Microsoft.ResourceGraph/resources" req, err := runtime.NewRequest(ctx, http.MethodPost, runtime.JoinPaths(client.internal.Endpoint(), urlPath)) if err != nil { return nil, err } reqQP := req.Raw().URL.Query() reqQP.Set("api-version", "2021-06-01-preview") req.Raw().URL.RawQuery = reqQP.Encode() req.Raw().Header["Accept"] = []string{"application/json"} if err := runtime.MarshalAsJSON(req, query); err != nil { return nil, err } return req, nil } // resourcesHandleResponse handles the Resources response. func (client *Client) resourcesHandleResponse(resp *http.Response) (ClientResourcesResponse, error) { result := ClientResourcesResponse{} if err := runtime.UnmarshalAsJSON(resp, &result.QueryResponse); err != nil { return ClientResourcesResponse{}, err } return result, nil } // ResourcesHistory - List all snapshots of a resource for a given time interval. // If the operation fails it returns an *azcore.ResponseError type. // // Generated from API version 2021-06-01-preview // - request - Request specifying the query and its options. // - options - ClientResourcesHistoryOptions contains the optional parameters for the Client.ResourcesHistory method. func (client *Client) ResourcesHistory(ctx context.Context, request ResourcesHistoryRequest, options *ClientResourcesHistoryOptions) (ClientResourcesHistoryResponse, error) { var err error const operationName = "Client.ResourcesHistory" ctx = context.WithValue(ctx, runtime.CtxAPINameKey{}, operationName) ctx, endSpan := runtime.StartSpan(ctx, operationName, client.internal.Tracer(), nil) defer func() { endSpan(err) }() req, err := client.resourcesHistoryCreateRequest(ctx, request, options) if err != nil { return ClientResourcesHistoryResponse{}, err } httpResp, err := client.internal.Pipeline().Do(req) if err != nil { return ClientResourcesHistoryResponse{}, err } if !runtime.HasStatusCode(httpResp, http.StatusOK) { err = runtime.NewResponseError(httpResp) return ClientResourcesHistoryResponse{}, err } resp, err := client.resourcesHistoryHandleResponse(httpResp) return resp, err } // resourcesHistoryCreateRequest creates the ResourcesHistory request. func (client *Client) resourcesHistoryCreateRequest(ctx context.Context, request ResourcesHistoryRequest, options *ClientResourcesHistoryOptions) (*policy.Request, error) { urlPath := "/providers/Microsoft.ResourceGraph/resourcesHistory" req, err := runtime.NewRequest(ctx, http.MethodPost, runtime.JoinPaths(client.internal.Endpoint(), urlPath)) if err != nil { return nil, err } reqQP := req.Raw().URL.Query() reqQP.Set("api-version", "2021-06-01-preview") req.Raw().URL.RawQuery = reqQP.Encode() req.Raw().Header["Accept"] = []string{"application/json"} if err := runtime.MarshalAsJSON(req, request); err != nil { return nil, err } return req, nil } // resourcesHistoryHandleResponse handles the ResourcesHistory response. func (client *Client) resourcesHistoryHandleResponse(resp *http.Response) (ClientResourcesHistoryResponse, error) { result := ClientResourcesHistoryResponse{} if err := runtime.UnmarshalAsJSON(resp, &result.Interface); err != nil { return ClientResourcesHistoryResponse{}, err } return result, nil }