-
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
Apr 22, 2024
1 parent
01ee443
commit 7e1183d
Showing
4,115 changed files
with
312,069 additions
and
218 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
resource-manager/containerapps/2024-03-01/availableworkloadprofiles/README.md
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,37 @@ | ||
|
||
## `github.com/hashicorp/go-azure-sdk/resource-manager/containerapps/2024-03-01/availableworkloadprofiles` Documentation | ||
|
||
The `availableworkloadprofiles` SDK allows for interaction with the Azure Resource Manager Service `containerapps` (API Version `2024-03-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/containerapps/2024-03-01/availableworkloadprofiles" | ||
``` | ||
|
||
|
||
### Client Initialization | ||
|
||
```go | ||
client := availableworkloadprofiles.NewAvailableWorkloadProfilesClientWithBaseURI("https://management.azure.com") | ||
client.Client.Authorizer = authorizer | ||
``` | ||
|
||
|
||
### Example Usage: `AvailableWorkloadProfilesClient.Get` | ||
|
||
```go | ||
ctx := context.TODO() | ||
id := availableworkloadprofiles.NewLocationID("12345678-1234-9876-4563-123456789012", "locationValue") | ||
|
||
// alternatively `client.Get(ctx, id)` can be used to do batched pagination | ||
items, err := client.GetComplete(ctx, id) | ||
if err != nil { | ||
// handle the error | ||
} | ||
for _, item := range items { | ||
// do something | ||
} | ||
``` |
26 changes: 26 additions & 0 deletions
26
resource-manager/containerapps/2024-03-01/availableworkloadprofiles/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,26 @@ | ||
package availableworkloadprofiles | ||
|
||
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 AvailableWorkloadProfilesClient struct { | ||
Client *resourcemanager.Client | ||
} | ||
|
||
func NewAvailableWorkloadProfilesClientWithBaseURI(sdkApi sdkEnv.Api) (*AvailableWorkloadProfilesClient, error) { | ||
client, err := resourcemanager.NewResourceManagerClient(sdkApi, "availableworkloadprofiles", defaultApiVersion) | ||
if err != nil { | ||
return nil, fmt.Errorf("instantiating AvailableWorkloadProfilesClient: %+v", err) | ||
} | ||
|
||
return &AvailableWorkloadProfilesClient{ | ||
Client: client, | ||
}, nil | ||
} |
51 changes: 51 additions & 0 deletions
51
resource-manager/containerapps/2024-03-01/availableworkloadprofiles/constants.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,51 @@ | ||
package availableworkloadprofiles | ||
|
||
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 Applicability string | ||
|
||
const ( | ||
ApplicabilityCustom Applicability = "Custom" | ||
ApplicabilityLocationDefault Applicability = "LocationDefault" | ||
) | ||
|
||
func PossibleValuesForApplicability() []string { | ||
return []string{ | ||
string(ApplicabilityCustom), | ||
string(ApplicabilityLocationDefault), | ||
} | ||
} | ||
|
||
func (s *Applicability) UnmarshalJSON(bytes []byte) error { | ||
var decoded string | ||
if err := json.Unmarshal(bytes, &decoded); err != nil { | ||
return fmt.Errorf("unmarshaling: %+v", err) | ||
} | ||
out, err := parseApplicability(decoded) | ||
if err != nil { | ||
return fmt.Errorf("parsing %q: %+v", decoded, err) | ||
} | ||
*s = *out | ||
return nil | ||
} | ||
|
||
func parseApplicability(input string) (*Applicability, error) { | ||
vals := map[string]Applicability{ | ||
"custom": ApplicabilityCustom, | ||
"locationdefault": ApplicabilityLocationDefault, | ||
} | ||
if v, ok := vals[strings.ToLower(input)]; ok { | ||
return &v, nil | ||
} | ||
|
||
// otherwise presume it's an undefined value and best-effort it | ||
out := Applicability(input) | ||
return &out, nil | ||
} |
121 changes: 121 additions & 0 deletions
121
resource-manager/containerapps/2024-03-01/availableworkloadprofiles/id_location.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,121 @@ | ||
package availableworkloadprofiles | ||
|
||
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(&LocationId{}) | ||
} | ||
|
||
var _ resourceids.ResourceId = &LocationId{} | ||
|
||
// LocationId is a struct representing the Resource ID for a Location | ||
type LocationId struct { | ||
SubscriptionId string | ||
LocationName string | ||
} | ||
|
||
// NewLocationID returns a new LocationId struct | ||
func NewLocationID(subscriptionId string, locationName string) LocationId { | ||
return LocationId{ | ||
SubscriptionId: subscriptionId, | ||
LocationName: locationName, | ||
} | ||
} | ||
|
||
// ParseLocationID parses 'input' into a LocationId | ||
func ParseLocationID(input string) (*LocationId, error) { | ||
parser := resourceids.NewParserFromResourceIdType(&LocationId{}) | ||
parsed, err := parser.Parse(input, false) | ||
if err != nil { | ||
return nil, fmt.Errorf("parsing %q: %+v", input, err) | ||
} | ||
|
||
id := LocationId{} | ||
if err := id.FromParseResult(*parsed); err != nil { | ||
return nil, err | ||
} | ||
|
||
return &id, nil | ||
} | ||
|
||
// ParseLocationIDInsensitively parses 'input' case-insensitively into a LocationId | ||
// note: this method should only be used for API response data and not user input | ||
func ParseLocationIDInsensitively(input string) (*LocationId, error) { | ||
parser := resourceids.NewParserFromResourceIdType(&LocationId{}) | ||
parsed, err := parser.Parse(input, true) | ||
if err != nil { | ||
return nil, fmt.Errorf("parsing %q: %+v", input, err) | ||
} | ||
|
||
id := LocationId{} | ||
if err := id.FromParseResult(*parsed); err != nil { | ||
return nil, err | ||
} | ||
|
||
return &id, nil | ||
} | ||
|
||
func (id *LocationId) FromParseResult(input resourceids.ParseResult) error { | ||
var ok bool | ||
|
||
if id.SubscriptionId, ok = input.Parsed["subscriptionId"]; !ok { | ||
return resourceids.NewSegmentNotSpecifiedError(id, "subscriptionId", input) | ||
} | ||
|
||
if id.LocationName, ok = input.Parsed["locationName"]; !ok { | ||
return resourceids.NewSegmentNotSpecifiedError(id, "locationName", input) | ||
} | ||
|
||
return nil | ||
} | ||
|
||
// ValidateLocationID checks that 'input' can be parsed as a Location ID | ||
func ValidateLocationID(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 := ParseLocationID(v); err != nil { | ||
errors = append(errors, err) | ||
} | ||
|
||
return | ||
} | ||
|
||
// ID returns the formatted Location ID | ||
func (id LocationId) ID() string { | ||
fmtString := "/subscriptions/%s/providers/Microsoft.App/locations/%s" | ||
return fmt.Sprintf(fmtString, id.SubscriptionId, id.LocationName) | ||
} | ||
|
||
// Segments returns a slice of Resource ID Segments which comprise this Location ID | ||
func (id LocationId) 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("staticMicrosoftApp", "Microsoft.App", "Microsoft.App"), | ||
resourceids.StaticSegment("staticLocations", "locations", "locations"), | ||
resourceids.UserSpecifiedSegment("locationName", "locationValue"), | ||
} | ||
} | ||
|
||
// String returns a human-readable description of this Location ID | ||
func (id LocationId) String() string { | ||
components := []string{ | ||
fmt.Sprintf("Subscription: %q", id.SubscriptionId), | ||
fmt.Sprintf("Location Name: %q", id.LocationName), | ||
} | ||
return fmt.Sprintf("Location (%s)", strings.Join(components, "\n")) | ||
} |
Oops, something went wrong.