Skip to content

Commit 45719c2

Browse files
author
hc-github-team-tf-azure
committed
Updating based on 03b3b7f79
1 parent 40fe69a commit 45719c2

File tree

475 files changed

+40099
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

475 files changed

+40099
-10
lines changed

resource-manager/appplatform/2024-05-01-preview/appplatform/README.md

Lines changed: 2871 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package appplatform
2+
3+
import (
4+
"fmt"
5+
6+
"github.com/hashicorp/go-azure-sdk/sdk/client/resourcemanager"
7+
sdkEnv "github.com/hashicorp/go-azure-sdk/sdk/environments"
8+
)
9+
10+
// Copyright (c) Microsoft Corporation. All rights reserved.
11+
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
12+
13+
type AppPlatformClient struct {
14+
Client *resourcemanager.Client
15+
}
16+
17+
func NewAppPlatformClientWithBaseURI(sdkApi sdkEnv.Api) (*AppPlatformClient, error) {
18+
client, err := resourcemanager.NewClient(sdkApi, "appplatform", defaultApiVersion)
19+
if err != nil {
20+
return nil, fmt.Errorf("instantiating AppPlatformClient: %+v", err)
21+
}
22+
23+
return &AppPlatformClient{
24+
Client: client,
25+
}, nil
26+
}

0 commit comments

Comments
 (0)