Skip to content

Commit

Permalink
Merge pull request #998 from hashicorp/auto-pr/eb0ee640
Browse files Browse the repository at this point in the history
Auto PR: Regenerating the Go SDK (93ca19b)
  • Loading branch information
tombuildsstuff authored May 24, 2024
2 parents b9ca6a2 + 93ca19b commit 3e865f9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
package hdinsights

import (
"github.com/hashicorp/go-azure-helpers/resourcemanager/zones"
)

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

type ClusterPoolComputeProfile struct {
Count *int64 `json:"count,omitempty"`
VMSize string `json:"vmSize"`
AvailabilityZones *zones.Schema `json:"availabilityZones,omitempty"`
Count *int64 `json:"count,omitempty"`
VMSize string `json:"vmSize"`
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
package hdinsights

import (
"github.com/hashicorp/go-azure-helpers/resourcemanager/zones"
)

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

type ComputeProfile struct {
Nodes []NodeProfile `json:"nodes"`
AvailabilityZones *zones.Schema `json:"availabilityZones,omitempty"`
Nodes []NodeProfile `json:"nodes"`
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ func (c AssociationsInterfaceClient) Delete(ctx context.Context, id AssociationI
ExpectedStatusCodes: []int{
http.StatusAccepted,
http.StatusNoContent,
http.StatusOK,
},
HttpMethod: http.MethodDelete,
Path: id.ID(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ func (c FrontendsInterfaceClient) Delete(ctx context.Context, id FrontendId) (re
ExpectedStatusCodes: []int{
http.StatusAccepted,
http.StatusNoContent,
http.StatusOK,
},
HttpMethod: http.MethodDelete,
Path: id.ID(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ func (c TrafficControllerInterfaceClient) Delete(ctx context.Context, id Traffic
ExpectedStatusCodes: []int{
http.StatusAccepted,
http.StatusNoContent,
http.StatusOK,
},
HttpMethod: http.MethodDelete,
Path: id.ID(),
Expand Down

0 comments on commit 3e865f9

Please sign in to comment.