Skip to content

Commit

Permalink
Merge pull request #794 from hashicorp/auto-pr/68c6b8eb5
Browse files Browse the repository at this point in the history
Auto PR: Regenerating the Go SDK (438c6a6)
  • Loading branch information
mbfrahry authored Jan 4, 2024
2 parents 1933294 + 438c6a6 commit 2275797
Show file tree
Hide file tree
Showing 256 changed files with 15,266 additions and 0 deletions.
138 changes: 138 additions & 0 deletions resource-manager/containerservice/2023-10-01/agentpools/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@

## `github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2023-10-01/agentpools` Documentation

The `agentpools` SDK allows for interaction with the Azure Resource Manager Service `containerservice` (API Version `2023-10-01`).

This readme covers example usages, but further information on [using this SDK can be found in the project root](https://github.com/hashicorp/go-azure-sdk/tree/main/docs).

### Import Path

```go
import "github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2023-10-01/agentpools"
```


### Client Initialization

```go
client := agentpools.NewAgentPoolsClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer
```


### Example Usage: `AgentPoolsClient.AbortLatestOperation`

```go
ctx := context.TODO()
id := agentpools.NewAgentPoolID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue", "agentPoolValue")

if err := client.AbortLatestOperationThenPoll(ctx, id); err != nil {
// handle the error
}
```


### Example Usage: `AgentPoolsClient.CreateOrUpdate`

```go
ctx := context.TODO()
id := agentpools.NewAgentPoolID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue", "agentPoolValue")

payload := agentpools.AgentPool{
// ...
}


if err := client.CreateOrUpdateThenPoll(ctx, id, payload); err != nil {
// handle the error
}
```


### Example Usage: `AgentPoolsClient.Delete`

```go
ctx := context.TODO()
id := agentpools.NewAgentPoolID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue", "agentPoolValue")

if err := client.DeleteThenPoll(ctx, id); err != nil {
// handle the error
}
```


### Example Usage: `AgentPoolsClient.Get`

```go
ctx := context.TODO()
id := agentpools.NewAgentPoolID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue", "agentPoolValue")

read, err := client.Get(ctx, id)
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
```


### Example Usage: `AgentPoolsClient.GetAvailableAgentPoolVersions`

```go
ctx := context.TODO()
id := agentpools.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

read, err := client.GetAvailableAgentPoolVersions(ctx, id)
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
```


### Example Usage: `AgentPoolsClient.GetUpgradeProfile`

```go
ctx := context.TODO()
id := agentpools.NewAgentPoolID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue", "agentPoolValue")

read, err := client.GetUpgradeProfile(ctx, id)
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
```


### Example Usage: `AgentPoolsClient.List`

```go
ctx := context.TODO()
id := agentpools.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

// alternatively `client.List(ctx, id)` can be used to do batched pagination
items, err := client.ListComplete(ctx, id)
if err != nil {
// handle the error
}
for _, item := range items {
// do something
}
```


### Example Usage: `AgentPoolsClient.UpgradeNodeImageVersion`

```go
ctx := context.TODO()
id := agentpools.NewAgentPoolID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue", "agentPoolValue")

if err := client.UpgradeNodeImageVersionThenPoll(ctx, id); err != nil {
// handle the error
}
```
18 changes: 18 additions & 0 deletions resource-manager/containerservice/2023-10-01/agentpools/client.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package agentpools

import "github.com/Azure/go-autorest/autorest"

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

type AgentPoolsClient struct {
Client autorest.Client
baseUri string
}

func NewAgentPoolsClientWithBaseURI(endpoint string) AgentPoolsClient {
return AgentPoolsClient{
Client: autorest.NewClientWithUserAgent(userAgent()),
baseUri: endpoint,
}
}
Loading

0 comments on commit 2275797

Please sign in to comment.