-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
hc-github-team-tf-azure
committed
Mar 25, 2024
1 parent
aaefe69
commit 508c441
Showing
284 changed files
with
20,613 additions
and
0 deletions.
There are no files selected for viewing
145 changes: 145 additions & 0 deletions
145
resource-manager/cognitive/2023-10-01-preview/client.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
package v2023_10_01_preview | ||
|
||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See NOTICE.txt in the project root for license information. | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/cognitiveservicesaccounts" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/cognitiveservicescommitmentplans" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/commitmentplans" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/commitmenttiers" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/deployments" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/encryptionscopes" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/models" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/privateendpointconnections" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/privatelinkresources" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/raiblocklists" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/raicontentfilters" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/raipolicies" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/skus" | ||
"github.com/hashicorp/go-azure-sdk/resource-manager/cognitive/2023-10-01-preview/usages" | ||
"github.com/hashicorp/go-azure-sdk/sdk/client/resourcemanager" | ||
sdkEnv "github.com/hashicorp/go-azure-sdk/sdk/environments" | ||
) | ||
|
||
type Client struct { | ||
CognitiveServicesAccounts *cognitiveservicesaccounts.CognitiveServicesAccountsClient | ||
CognitiveServicesCommitmentPlans *cognitiveservicescommitmentplans.CognitiveServicesCommitmentPlansClient | ||
CommitmentPlans *commitmentplans.CommitmentPlansClient | ||
CommitmentTiers *commitmenttiers.CommitmentTiersClient | ||
Deployments *deployments.DeploymentsClient | ||
EncryptionScopes *encryptionscopes.EncryptionScopesClient | ||
Models *models.ModelsClient | ||
PrivateEndpointConnections *privateendpointconnections.PrivateEndpointConnectionsClient | ||
PrivateLinkResources *privatelinkresources.PrivateLinkResourcesClient | ||
RaiBlocklists *raiblocklists.RaiBlocklistsClient | ||
RaiContentFilters *raicontentfilters.RaiContentFiltersClient | ||
RaiPolicies *raipolicies.RaiPoliciesClient | ||
Skus *skus.SkusClient | ||
Usages *usages.UsagesClient | ||
} | ||
|
||
func NewClientWithBaseURI(sdkApi sdkEnv.Api, configureFunc func(c *resourcemanager.Client)) (*Client, error) { | ||
cognitiveServicesAccountsClient, err := cognitiveservicesaccounts.NewCognitiveServicesAccountsClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building CognitiveServicesAccounts client: %+v", err) | ||
} | ||
configureFunc(cognitiveServicesAccountsClient.Client) | ||
|
||
cognitiveServicesCommitmentPlansClient, err := cognitiveservicescommitmentplans.NewCognitiveServicesCommitmentPlansClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building CognitiveServicesCommitmentPlans client: %+v", err) | ||
} | ||
configureFunc(cognitiveServicesCommitmentPlansClient.Client) | ||
|
||
commitmentPlansClient, err := commitmentplans.NewCommitmentPlansClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building CommitmentPlans client: %+v", err) | ||
} | ||
configureFunc(commitmentPlansClient.Client) | ||
|
||
commitmentTiersClient, err := commitmenttiers.NewCommitmentTiersClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building CommitmentTiers client: %+v", err) | ||
} | ||
configureFunc(commitmentTiersClient.Client) | ||
|
||
deploymentsClient, err := deployments.NewDeploymentsClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building Deployments client: %+v", err) | ||
} | ||
configureFunc(deploymentsClient.Client) | ||
|
||
encryptionScopesClient, err := encryptionscopes.NewEncryptionScopesClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building EncryptionScopes client: %+v", err) | ||
} | ||
configureFunc(encryptionScopesClient.Client) | ||
|
||
modelsClient, err := models.NewModelsClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building Models client: %+v", err) | ||
} | ||
configureFunc(modelsClient.Client) | ||
|
||
privateEndpointConnectionsClient, err := privateendpointconnections.NewPrivateEndpointConnectionsClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building PrivateEndpointConnections client: %+v", err) | ||
} | ||
configureFunc(privateEndpointConnectionsClient.Client) | ||
|
||
privateLinkResourcesClient, err := privatelinkresources.NewPrivateLinkResourcesClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building PrivateLinkResources client: %+v", err) | ||
} | ||
configureFunc(privateLinkResourcesClient.Client) | ||
|
||
raiBlocklistsClient, err := raiblocklists.NewRaiBlocklistsClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building RaiBlocklists client: %+v", err) | ||
} | ||
configureFunc(raiBlocklistsClient.Client) | ||
|
||
raiContentFiltersClient, err := raicontentfilters.NewRaiContentFiltersClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building RaiContentFilters client: %+v", err) | ||
} | ||
configureFunc(raiContentFiltersClient.Client) | ||
|
||
raiPoliciesClient, err := raipolicies.NewRaiPoliciesClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building RaiPolicies client: %+v", err) | ||
} | ||
configureFunc(raiPoliciesClient.Client) | ||
|
||
skusClient, err := skus.NewSkusClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building Skus client: %+v", err) | ||
} | ||
configureFunc(skusClient.Client) | ||
|
||
usagesClient, err := usages.NewUsagesClientWithBaseURI(sdkApi) | ||
if err != nil { | ||
return nil, fmt.Errorf("building Usages client: %+v", err) | ||
} | ||
configureFunc(usagesClient.Client) | ||
|
||
return &Client{ | ||
CognitiveServicesAccounts: cognitiveServicesAccountsClient, | ||
CognitiveServicesCommitmentPlans: cognitiveServicesCommitmentPlansClient, | ||
CommitmentPlans: commitmentPlansClient, | ||
CommitmentTiers: commitmentTiersClient, | ||
Deployments: deploymentsClient, | ||
EncryptionScopes: encryptionScopesClient, | ||
Models: modelsClient, | ||
PrivateEndpointConnections: privateEndpointConnectionsClient, | ||
PrivateLinkResources: privateLinkResourcesClient, | ||
RaiBlocklists: raiBlocklistsClient, | ||
RaiContentFilters: raiContentFiltersClient, | ||
RaiPolicies: raiPoliciesClient, | ||
Skus: skusClient, | ||
Usages: usagesClient, | ||
}, nil | ||
} |
Oops, something went wrong.