Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
53 changes: 53 additions & 0 deletions resource-manager/advisor/2025-01-01/advisorscore/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@

## `github.com/hashicorp/go-azure-sdk/resource-manager/advisor/2025-01-01/advisorscore` Documentation

The `advisorscore` SDK allows for interaction with Azure Resource Manager `advisor` (API Version `2025-01-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-helpers/resourcemanager/commonids"
import "github.com/hashicorp/go-azure-sdk/resource-manager/advisor/2025-01-01/advisorscore"
```


### Client Initialization

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


### Example Usage: `AdvisorScoreClient.Get`

```go
ctx := context.TODO()
id := advisorscore.NewAdvisorScoreID("12345678-1234-9876-4563-123456789012", "advisorScoreName")

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: `AdvisorScoreClient.List`

```go
ctx := context.TODO()
id := commonids.NewSubscriptionID("12345678-1234-9876-4563-123456789012")

read, err := client.List(ctx, id)
if err != nil {
// handle the error
}
if model := read.Model; model != nil {
// do something with the model/response object
}
```
26 changes: 26 additions & 0 deletions resource-manager/advisor/2025-01-01/advisorscore/client.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package advisorscore

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 AdvisorScoreClient struct {
Client *resourcemanager.Client
}

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

return &AdvisorScoreClient{
Client: client,
}, nil
}
54 changes: 54 additions & 0 deletions resource-manager/advisor/2025-01-01/advisorscore/constants.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
package advisorscore

import (
"encoding/json"
"fmt"
"strings"
)

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

type Aggregated string

const (
AggregatedDay Aggregated = "day"
AggregatedMonth Aggregated = "month"
AggregatedWeek Aggregated = "week"
)

func PossibleValuesForAggregated() []string {
return []string{
string(AggregatedDay),
string(AggregatedMonth),
string(AggregatedWeek),
}
}

func (s *Aggregated) UnmarshalJSON(bytes []byte) error {
var decoded string
if err := json.Unmarshal(bytes, &decoded); err != nil {
return fmt.Errorf("unmarshaling: %+v", err)
}
out, err := parseAggregated(decoded)
if err != nil {
return fmt.Errorf("parsing %q: %+v", decoded, err)
}
*s = *out
return nil
}

func parseAggregated(input string) (*Aggregated, error) {
vals := map[string]Aggregated{
"day": AggregatedDay,
"month": AggregatedMonth,
"week": AggregatedWeek,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}

// otherwise presume it's an undefined value and best-effort it
out := Aggregated(input)
return &out, nil
}
121 changes: 121 additions & 0 deletions resource-manager/advisor/2025-01-01/advisorscore/id_advisorscore.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
package advisorscore

import (
"fmt"
"strings"

"github.com/hashicorp/go-azure-helpers/resourcemanager/recaser"
"github.com/hashicorp/go-azure-helpers/resourcemanager/resourceids"
)

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

func init() {
recaser.RegisterResourceId(&AdvisorScoreId{})
}

var _ resourceids.ResourceId = &AdvisorScoreId{}

// AdvisorScoreId is a struct representing the Resource ID for a Advisor Score
type AdvisorScoreId struct {
SubscriptionId string
AdvisorScoreName string
}

// NewAdvisorScoreID returns a new AdvisorScoreId struct
func NewAdvisorScoreID(subscriptionId string, advisorScoreName string) AdvisorScoreId {
return AdvisorScoreId{
SubscriptionId: subscriptionId,
AdvisorScoreName: advisorScoreName,
}
}

// ParseAdvisorScoreID parses 'input' into a AdvisorScoreId
func ParseAdvisorScoreID(input string) (*AdvisorScoreId, error) {
parser := resourceids.NewParserFromResourceIdType(&AdvisorScoreId{})
parsed, err := parser.Parse(input, false)
if err != nil {
return nil, fmt.Errorf("parsing %q: %+v", input, err)
}

id := AdvisorScoreId{}
if err = id.FromParseResult(*parsed); err != nil {
return nil, err
}

return &id, nil
}

// ParseAdvisorScoreIDInsensitively parses 'input' case-insensitively into a AdvisorScoreId
// note: this method should only be used for API response data and not user input
func ParseAdvisorScoreIDInsensitively(input string) (*AdvisorScoreId, error) {
parser := resourceids.NewParserFromResourceIdType(&AdvisorScoreId{})
parsed, err := parser.Parse(input, true)
if err != nil {
return nil, fmt.Errorf("parsing %q: %+v", input, err)
}

id := AdvisorScoreId{}
if err = id.FromParseResult(*parsed); err != nil {
return nil, err
}

return &id, nil
}

func (id *AdvisorScoreId) FromParseResult(input resourceids.ParseResult) error {
var ok bool

if id.SubscriptionId, ok = input.Parsed["subscriptionId"]; !ok {
return resourceids.NewSegmentNotSpecifiedError(id, "subscriptionId", input)
}

if id.AdvisorScoreName, ok = input.Parsed["advisorScoreName"]; !ok {
return resourceids.NewSegmentNotSpecifiedError(id, "advisorScoreName", input)
}

return nil
}

// ValidateAdvisorScoreID checks that 'input' can be parsed as a Advisor Score ID
func ValidateAdvisorScoreID(input interface{}, key string) (warnings []string, errors []error) {
v, ok := input.(string)
if !ok {
errors = append(errors, fmt.Errorf("expected %q to be a string", key))
return
}

if _, err := ParseAdvisorScoreID(v); err != nil {
errors = append(errors, err)
}

return
}

// ID returns the formatted Advisor Score ID
func (id AdvisorScoreId) ID() string {
fmtString := "/subscriptions/%s/providers/Microsoft.Advisor/advisorScore/%s"
return fmt.Sprintf(fmtString, id.SubscriptionId, id.AdvisorScoreName)
}

// Segments returns a slice of Resource ID Segments which comprise this Advisor Score ID
func (id AdvisorScoreId) Segments() []resourceids.Segment {
return []resourceids.Segment{
resourceids.StaticSegment("staticSubscriptions", "subscriptions", "subscriptions"),
resourceids.SubscriptionIdSegment("subscriptionId", "12345678-1234-9876-4563-123456789012"),
resourceids.StaticSegment("staticProviders", "providers", "providers"),
resourceids.ResourceProviderSegment("staticMicrosoftAdvisor", "Microsoft.Advisor", "Microsoft.Advisor"),
resourceids.StaticSegment("staticAdvisorScore", "advisorScore", "advisorScore"),
resourceids.UserSpecifiedSegment("advisorScoreName", "advisorScoreName"),
}
}

// String returns a human-readable description of this Advisor Score ID
func (id AdvisorScoreId) String() string {
components := []string{
fmt.Sprintf("Subscription: %q", id.SubscriptionId),
fmt.Sprintf("Advisor Score Name: %q", id.AdvisorScoreName),
}
return fmt.Sprintf("Advisor Score (%s)", strings.Join(components, "\n"))
}
Loading
Loading