Skip to content

Commit

Permalink
Updating based on 388b94dfd
Browse files Browse the repository at this point in the history
  • Loading branch information
hc-github-team-tf-azure committed Oct 15, 2024
1 parent 40fe69a commit a2aa0a6
Show file tree
Hide file tree
Showing 477 changed files with 40,101 additions and 12 deletions.
2,871 changes: 2,871 additions & 0 deletions resource-manager/appplatform/2024-05-01-preview/appplatform/README.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package appplatform

import (
"fmt"

"github.com/hashicorp/go-azure-sdk/sdk/client/resourcemanager"
sdkEnv "github.com/hashicorp/go-azure-sdk/sdk/environments"
)

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.

type AppPlatformClient struct {
Client *resourcemanager.Client
}

func NewAppPlatformClientWithBaseURI(sdkApi sdkEnv.Api) (*AppPlatformClient, error) {
client, err := resourcemanager.NewClient(sdkApi, "appplatform", defaultApiVersion)
if err != nil {
return nil, fmt.Errorf("instantiating AppPlatformClient: %+v", err)
}

return &AppPlatformClient{
Client: client,
}, nil
}
Loading

0 comments on commit a2aa0a6

Please sign in to comment.