Skip to content

Commit

Permalink
Updating based on ac70f8df
Browse files Browse the repository at this point in the history
  • Loading branch information
hc-github-team-tf-azure committed Feb 7, 2024
1 parent f996c79 commit 48a1c3a
Show file tree
Hide file tree
Showing 908 changed files with 65,048 additions and 0 deletions.
271 changes: 271 additions & 0 deletions resource-manager/recoveryservicessiterecovery/2023-08-01/client.go

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@

## `github.com/hashicorp/go-azure-sdk/resource-manager/recoveryservicessiterecovery/2023-08-01/migrationrecoverypoints` Documentation

The `migrationrecoverypoints` SDK allows for interaction with the Azure Resource Manager Service `recoveryservicessiterecovery` (API Version `2023-08-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/recoveryservicessiterecovery/2023-08-01/migrationrecoverypoints"
```


### Client Initialization

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


### Example Usage: `MigrationRecoveryPointsClient.Get`

```go
ctx := context.TODO()
id := migrationrecoverypoints.NewMigrationRecoveryPointID("12345678-1234-9876-4563-123456789012", "example-resource-group", "vaultValue", "replicationFabricValue", "replicationProtectionContainerValue", "replicationMigrationItemValue", "migrationRecoveryPointValue")

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: `MigrationRecoveryPointsClient.ListByReplicationMigrationItems`

```go
ctx := context.TODO()
id := migrationrecoverypoints.NewReplicationMigrationItemID("12345678-1234-9876-4563-123456789012", "example-resource-group", "vaultValue", "replicationFabricValue", "replicationProtectionContainerValue", "replicationMigrationItemValue")

// alternatively `client.ListByReplicationMigrationItems(ctx, id)` can be used to do batched pagination
items, err := client.ListByReplicationMigrationItemsComplete(ctx, id)
if err != nil {
// handle the error
}
for _, item := range items {
// do something
}
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package migrationrecoverypoints

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

func NewMigrationRecoveryPointsClientWithBaseURI(sdkApi sdkEnv.Api) (*MigrationRecoveryPointsClient, error) {
client, err := resourcemanager.NewResourceManagerClient(sdkApi, "migrationrecoverypoints", defaultApiVersion)
if err != nil {
return nil, fmt.Errorf("instantiating MigrationRecoveryPointsClient: %+v", err)
}

return &MigrationRecoveryPointsClient{
Client: client,
}, nil
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
package migrationrecoverypoints

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 MigrationRecoveryPointType string

const (
MigrationRecoveryPointTypeApplicationConsistent MigrationRecoveryPointType = "ApplicationConsistent"
MigrationRecoveryPointTypeCrashConsistent MigrationRecoveryPointType = "CrashConsistent"
MigrationRecoveryPointTypeNotSpecified MigrationRecoveryPointType = "NotSpecified"
)

func PossibleValuesForMigrationRecoveryPointType() []string {
return []string{
string(MigrationRecoveryPointTypeApplicationConsistent),
string(MigrationRecoveryPointTypeCrashConsistent),
string(MigrationRecoveryPointTypeNotSpecified),
}
}

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

func parseMigrationRecoveryPointType(input string) (*MigrationRecoveryPointType, error) {
vals := map[string]MigrationRecoveryPointType{
"applicationconsistent": MigrationRecoveryPointTypeApplicationConsistent,
"crashconsistent": MigrationRecoveryPointTypeCrashConsistent,
"notspecified": MigrationRecoveryPointTypeNotSpecified,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}

// otherwise presume it's an undefined value and best-effort it
out := MigrationRecoveryPointType(input)
return &out, nil
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,161 @@
package migrationrecoverypoints

import (
"fmt"
"strings"

"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.

var _ resourceids.ResourceId = &MigrationRecoveryPointId{}

// MigrationRecoveryPointId is a struct representing the Resource ID for a Migration Recovery Point
type MigrationRecoveryPointId struct {
SubscriptionId string
ResourceGroupName string
VaultName string
ReplicationFabricName string
ReplicationProtectionContainerName string
ReplicationMigrationItemName string
MigrationRecoveryPointName string
}

// NewMigrationRecoveryPointID returns a new MigrationRecoveryPointId struct
func NewMigrationRecoveryPointID(subscriptionId string, resourceGroupName string, vaultName string, replicationFabricName string, replicationProtectionContainerName string, replicationMigrationItemName string, migrationRecoveryPointName string) MigrationRecoveryPointId {
return MigrationRecoveryPointId{
SubscriptionId: subscriptionId,
ResourceGroupName: resourceGroupName,
VaultName: vaultName,
ReplicationFabricName: replicationFabricName,
ReplicationProtectionContainerName: replicationProtectionContainerName,
ReplicationMigrationItemName: replicationMigrationItemName,
MigrationRecoveryPointName: migrationRecoveryPointName,
}
}

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

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

return &id, nil
}

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

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

return &id, nil
}

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

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

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

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

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

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

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

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

return nil
}

// ValidateMigrationRecoveryPointID checks that 'input' can be parsed as a Migration Recovery Point ID
func ValidateMigrationRecoveryPointID(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 := ParseMigrationRecoveryPointID(v); err != nil {
errors = append(errors, err)
}

return
}

// ID returns the formatted Migration Recovery Point ID
func (id MigrationRecoveryPointId) ID() string {
fmtString := "/subscriptions/%s/resourceGroups/%s/providers/Microsoft.RecoveryServices/vaults/%s/replicationFabrics/%s/replicationProtectionContainers/%s/replicationMigrationItems/%s/migrationRecoveryPoints/%s"
return fmt.Sprintf(fmtString, id.SubscriptionId, id.ResourceGroupName, id.VaultName, id.ReplicationFabricName, id.ReplicationProtectionContainerName, id.ReplicationMigrationItemName, id.MigrationRecoveryPointName)
}

// Segments returns a slice of Resource ID Segments which comprise this Migration Recovery Point ID
func (id MigrationRecoveryPointId) Segments() []resourceids.Segment {
return []resourceids.Segment{
resourceids.StaticSegment("staticSubscriptions", "subscriptions", "subscriptions"),
resourceids.SubscriptionIdSegment("subscriptionId", "12345678-1234-9876-4563-123456789012"),
resourceids.StaticSegment("staticResourceGroups", "resourceGroups", "resourceGroups"),
resourceids.ResourceGroupSegment("resourceGroupName", "example-resource-group"),
resourceids.StaticSegment("staticProviders", "providers", "providers"),
resourceids.ResourceProviderSegment("staticMicrosoftRecoveryServices", "Microsoft.RecoveryServices", "Microsoft.RecoveryServices"),
resourceids.StaticSegment("staticVaults", "vaults", "vaults"),
resourceids.UserSpecifiedSegment("vaultName", "vaultValue"),
resourceids.StaticSegment("staticReplicationFabrics", "replicationFabrics", "replicationFabrics"),
resourceids.UserSpecifiedSegment("replicationFabricName", "replicationFabricValue"),
resourceids.StaticSegment("staticReplicationProtectionContainers", "replicationProtectionContainers", "replicationProtectionContainers"),
resourceids.UserSpecifiedSegment("replicationProtectionContainerName", "replicationProtectionContainerValue"),
resourceids.StaticSegment("staticReplicationMigrationItems", "replicationMigrationItems", "replicationMigrationItems"),
resourceids.UserSpecifiedSegment("replicationMigrationItemName", "replicationMigrationItemValue"),
resourceids.StaticSegment("staticMigrationRecoveryPoints", "migrationRecoveryPoints", "migrationRecoveryPoints"),
resourceids.UserSpecifiedSegment("migrationRecoveryPointName", "migrationRecoveryPointValue"),
}
}

// String returns a human-readable description of this Migration Recovery Point ID
func (id MigrationRecoveryPointId) String() string {
components := []string{
fmt.Sprintf("Subscription: %q", id.SubscriptionId),
fmt.Sprintf("Resource Group Name: %q", id.ResourceGroupName),
fmt.Sprintf("Vault Name: %q", id.VaultName),
fmt.Sprintf("Replication Fabric Name: %q", id.ReplicationFabricName),
fmt.Sprintf("Replication Protection Container Name: %q", id.ReplicationProtectionContainerName),
fmt.Sprintf("Replication Migration Item Name: %q", id.ReplicationMigrationItemName),
fmt.Sprintf("Migration Recovery Point Name: %q", id.MigrationRecoveryPointName),
}
return fmt.Sprintf("Migration Recovery Point (%s)", strings.Join(components, "\n"))
}
Loading

0 comments on commit 48a1c3a

Please sign in to comment.