// 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) Go Code Generator. DO NOT EDIT. package armcdn import ( "context" "errors" "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" "net/url" "strings" ) const defaultManagementClientVersion string = "2025-06-01" // ManagementClient contains the methods for the Management group. // Don't use this type directly, use NewManagementClient() instead. // // Generated from API version 2025-06-01 type ManagementClient struct { internal *arm.Client subscriptionID string } // NewManagementClient creates a new instance of ManagementClient with the specified values. // - subscriptionID - The ID of the target subscription. The value must be an UUID. // - credential - used to authorize requests. Usually a credential from azidentity. // - options - Contains optional client configuration. Pass nil to accept the default values. func NewManagementClient(subscriptionID string, credential azcore.TokenCredential, options *arm.ClientOptions) (*ManagementClient, error) { cl, err := arm.NewClient(moduleName, moduleVersion, credential, options) if err != nil { return nil, err } client := &ManagementClient{ subscriptionID: subscriptionID, internal: cl, } return client, nil } // CheckEndpointNameAvailability - Check the availability of a resource name. This is needed for resources where name is globally // unique, such as a afdx endpoint. // If the operation fails it returns an *azcore.ResponseError type. // - resourceGroupName - The name of the resource group. The name is case insensitive. // - checkEndpointNameAvailabilityInput - Input to check. // - options - ManagementClientCheckEndpointNameAvailabilityOptions contains the optional parameters for the ManagementClient.CheckEndpointNameAvailability // method. func (client *ManagementClient) CheckEndpointNameAvailability(ctx context.Context, resourceGroupName string, checkEndpointNameAvailabilityInput CheckEndpointNameAvailabilityInput, options *ManagementClientCheckEndpointNameAvailabilityOptions) (ManagementClientCheckEndpointNameAvailabilityResponse, error) { var err error const operationName = "ManagementClient.CheckEndpointNameAvailability" ctx = context.WithValue(ctx, runtime.CtxAPINameKey{}, operationName) ctx, endSpan := runtime.StartSpan(ctx, operationName, client.internal.Tracer(), nil) defer func() { endSpan(err) }() req, err := client.checkEndpointNameAvailabilityCreateRequest(ctx, resourceGroupName, checkEndpointNameAvailabilityInput, options) if err != nil { return ManagementClientCheckEndpointNameAvailabilityResponse{}, err } httpResp, err := client.internal.Pipeline().Do(req) if err != nil { return ManagementClientCheckEndpointNameAvailabilityResponse{}, err } if !runtime.HasStatusCode(httpResp, http.StatusOK) { err = runtime.NewResponseError(httpResp) return ManagementClientCheckEndpointNameAvailabilityResponse{}, err } resp, err := client.checkEndpointNameAvailabilityHandleResponse(httpResp) return resp, err } // checkEndpointNameAvailabilityCreateRequest creates the CheckEndpointNameAvailability request. func (client *ManagementClient) checkEndpointNameAvailabilityCreateRequest(ctx context.Context, resourceGroupName string, checkEndpointNameAvailabilityInput CheckEndpointNameAvailabilityInput, _ *ManagementClientCheckEndpointNameAvailabilityOptions) (*policy.Request, error) { urlPath := "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cdn/checkEndpointNameAvailability" if client.subscriptionID == "" { return nil, errors.New("parameter client.subscriptionID cannot be empty") } urlPath = strings.ReplaceAll(urlPath, "{subscriptionId}", url.PathEscape(client.subscriptionID)) if resourceGroupName == "" { return nil, errors.New("parameter resourceGroupName cannot be empty") } urlPath = strings.ReplaceAll(urlPath, "{resourceGroupName}", url.PathEscape(resourceGroupName)) 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", defaultManagementClientVersion) req.Raw().URL.RawQuery = strings.ReplaceAll(reqQP.Encode(), "+", "%20") req.Raw().Header["Accept"] = []string{"application/json"} req.Raw().Header["Content-Type"] = []string{"application/json"} if err := runtime.MarshalAsJSON(req, checkEndpointNameAvailabilityInput); err != nil { return nil, err } return req, nil } // checkEndpointNameAvailabilityHandleResponse handles the CheckEndpointNameAvailability response. func (client *ManagementClient) checkEndpointNameAvailabilityHandleResponse(resp *http.Response) (ManagementClientCheckEndpointNameAvailabilityResponse, error) { result := ManagementClientCheckEndpointNameAvailabilityResponse{} if err := runtime.UnmarshalAsJSON(resp, &result.CheckEndpointNameAvailabilityOutput); err != nil { return ManagementClientCheckEndpointNameAvailabilityResponse{}, err } return result, nil } // CheckNameAvailability - Check the availability of a resource name. This is needed for resources where name is globally // unique, such as a CDN endpoint. // If the operation fails it returns an *azcore.ResponseError type. // - checkNameAvailabilityInput - The request body // - options - ManagementClientCheckNameAvailabilityOptions contains the optional parameters for the ManagementClient.CheckNameAvailability // method. func (client *ManagementClient) CheckNameAvailability(ctx context.Context, checkNameAvailabilityInput CheckNameAvailabilityInput, options *ManagementClientCheckNameAvailabilityOptions) (ManagementClientCheckNameAvailabilityResponse, error) { var err error const operationName = "ManagementClient.CheckNameAvailability" ctx = context.WithValue(ctx, runtime.CtxAPINameKey{}, operationName) ctx, endSpan := runtime.StartSpan(ctx, operationName, client.internal.Tracer(), nil) defer func() { endSpan(err) }() req, err := client.checkNameAvailabilityCreateRequest(ctx, checkNameAvailabilityInput, options) if err != nil { return ManagementClientCheckNameAvailabilityResponse{}, err } httpResp, err := client.internal.Pipeline().Do(req) if err != nil { return ManagementClientCheckNameAvailabilityResponse{}, err } if !runtime.HasStatusCode(httpResp, http.StatusOK) { err = runtime.NewResponseError(httpResp) return ManagementClientCheckNameAvailabilityResponse{}, err } resp, err := client.checkNameAvailabilityHandleResponse(httpResp) return resp, err } // checkNameAvailabilityCreateRequest creates the CheckNameAvailability request. func (client *ManagementClient) checkNameAvailabilityCreateRequest(ctx context.Context, checkNameAvailabilityInput CheckNameAvailabilityInput, _ *ManagementClientCheckNameAvailabilityOptions) (*policy.Request, error) { urlPath := "/providers/Microsoft.Cdn/checkNameAvailability" 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", defaultManagementClientVersion) req.Raw().URL.RawQuery = strings.ReplaceAll(reqQP.Encode(), "+", "%20") req.Raw().Header["Accept"] = []string{"application/json"} req.Raw().Header["Content-Type"] = []string{"application/json"} if err := runtime.MarshalAsJSON(req, checkNameAvailabilityInput); err != nil { return nil, err } return req, nil } // checkNameAvailabilityHandleResponse handles the CheckNameAvailability response. func (client *ManagementClient) checkNameAvailabilityHandleResponse(resp *http.Response) (ManagementClientCheckNameAvailabilityResponse, error) { result := ManagementClientCheckNameAvailabilityResponse{} if err := runtime.UnmarshalAsJSON(resp, &result.CheckNameAvailabilityOutput); err != nil { return ManagementClientCheckNameAvailabilityResponse{}, err } return result, nil } // CheckNameAvailabilityWithSubscription - Check the availability of a resource name. This is needed for resources where name // is globally unique, such as a CDN endpoint. // If the operation fails it returns an *azcore.ResponseError type. // - checkNameAvailabilityInput - The request body // - options - ManagementClientCheckNameAvailabilityWithSubscriptionOptions contains the optional parameters for the ManagementClient.CheckNameAvailabilityWithSubscription // method. func (client *ManagementClient) CheckNameAvailabilityWithSubscription(ctx context.Context, checkNameAvailabilityInput CheckNameAvailabilityInput, options *ManagementClientCheckNameAvailabilityWithSubscriptionOptions) (ManagementClientCheckNameAvailabilityWithSubscriptionResponse, error) { var err error const operationName = "ManagementClient.CheckNameAvailabilityWithSubscription" ctx = context.WithValue(ctx, runtime.CtxAPINameKey{}, operationName) ctx, endSpan := runtime.StartSpan(ctx, operationName, client.internal.Tracer(), nil) defer func() { endSpan(err) }() req, err := client.checkNameAvailabilityWithSubscriptionCreateRequest(ctx, checkNameAvailabilityInput, options) if err != nil { return ManagementClientCheckNameAvailabilityWithSubscriptionResponse{}, err } httpResp, err := client.internal.Pipeline().Do(req) if err != nil { return ManagementClientCheckNameAvailabilityWithSubscriptionResponse{}, err } if !runtime.HasStatusCode(httpResp, http.StatusOK) { err = runtime.NewResponseError(httpResp) return ManagementClientCheckNameAvailabilityWithSubscriptionResponse{}, err } resp, err := client.checkNameAvailabilityWithSubscriptionHandleResponse(httpResp) return resp, err } // checkNameAvailabilityWithSubscriptionCreateRequest creates the CheckNameAvailabilityWithSubscription request. func (client *ManagementClient) checkNameAvailabilityWithSubscriptionCreateRequest(ctx context.Context, checkNameAvailabilityInput CheckNameAvailabilityInput, _ *ManagementClientCheckNameAvailabilityWithSubscriptionOptions) (*policy.Request, error) { urlPath := "/subscriptions/{subscriptionId}/providers/Microsoft.Cdn/checkNameAvailability" if client.subscriptionID == "" { return nil, errors.New("parameter client.subscriptionID cannot be empty") } urlPath = strings.ReplaceAll(urlPath, "{subscriptionId}", url.PathEscape(client.subscriptionID)) 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", defaultManagementClientVersion) req.Raw().URL.RawQuery = strings.ReplaceAll(reqQP.Encode(), "+", "%20") req.Raw().Header["Accept"] = []string{"application/json"} req.Raw().Header["Content-Type"] = []string{"application/json"} if err := runtime.MarshalAsJSON(req, checkNameAvailabilityInput); err != nil { return nil, err } return req, nil } // checkNameAvailabilityWithSubscriptionHandleResponse handles the CheckNameAvailabilityWithSubscription response. func (client *ManagementClient) checkNameAvailabilityWithSubscriptionHandleResponse(resp *http.Response) (ManagementClientCheckNameAvailabilityWithSubscriptionResponse, error) { result := ManagementClientCheckNameAvailabilityWithSubscriptionResponse{} if err := runtime.UnmarshalAsJSON(resp, &result.CheckNameAvailabilityOutput); err != nil { return ManagementClientCheckNameAvailabilityWithSubscriptionResponse{}, err } return result, nil } // ValidateProbe - Check if the probe path is a valid path and the file can be accessed. Probe path is the path to a file // hosted on the origin server to help accelerate the delivery of dynamic content via the CDN endpoint. This path is relative // to the origin path specified in the endpoint configuration. // If the operation fails it returns an *azcore.ResponseError type. // - validateProbeInput - The request body // - options - ManagementClientValidateProbeOptions contains the optional parameters for the ManagementClient.ValidateProbe // method. func (client *ManagementClient) ValidateProbe(ctx context.Context, validateProbeInput ValidateProbeInput, options *ManagementClientValidateProbeOptions) (ManagementClientValidateProbeResponse, error) { var err error const operationName = "ManagementClient.ValidateProbe" ctx = context.WithValue(ctx, runtime.CtxAPINameKey{}, operationName) ctx, endSpan := runtime.StartSpan(ctx, operationName, client.internal.Tracer(), nil) defer func() { endSpan(err) }() req, err := client.validateProbeCreateRequest(ctx, validateProbeInput, options) if err != nil { return ManagementClientValidateProbeResponse{}, err } httpResp, err := client.internal.Pipeline().Do(req) if err != nil { return ManagementClientValidateProbeResponse{}, err } if !runtime.HasStatusCode(httpResp, http.StatusOK) { err = runtime.NewResponseError(httpResp) return ManagementClientValidateProbeResponse{}, err } resp, err := client.validateProbeHandleResponse(httpResp) return resp, err } // validateProbeCreateRequest creates the ValidateProbe request. func (client *ManagementClient) validateProbeCreateRequest(ctx context.Context, validateProbeInput ValidateProbeInput, _ *ManagementClientValidateProbeOptions) (*policy.Request, error) { urlPath := "/subscriptions/{subscriptionId}/providers/Microsoft.Cdn/validateProbe" if client.subscriptionID == "" { return nil, errors.New("parameter client.subscriptionID cannot be empty") } urlPath = strings.ReplaceAll(urlPath, "{subscriptionId}", url.PathEscape(client.subscriptionID)) 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", defaultManagementClientVersion) req.Raw().URL.RawQuery = strings.ReplaceAll(reqQP.Encode(), "+", "%20") req.Raw().Header["Accept"] = []string{"application/json"} req.Raw().Header["Content-Type"] = []string{"application/json"} if err := runtime.MarshalAsJSON(req, validateProbeInput); err != nil { return nil, err } return req, nil } // validateProbeHandleResponse handles the ValidateProbe response. func (client *ManagementClient) validateProbeHandleResponse(resp *http.Response) (ManagementClientValidateProbeResponse, error) { result := ManagementClientValidateProbeResponse{} if err := runtime.UnmarshalAsJSON(resp, &result.ValidateProbeOutput); err != nil { return ManagementClientValidateProbeResponse{}, err } return result, nil }