forked from hashicorp/go-azure-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
method_createorupdate_autorest.go
97 lines (77 loc) · 2.99 KB
/
method_createorupdate_autorest.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package notification
import (
"context"
"net/http"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/azure"
)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
type CreateOrUpdateOperationResponse struct {
HttpResponse *http.Response
Model *NotificationContract
}
type CreateOrUpdateOperationOptions struct {
IfMatch *string
}
func DefaultCreateOrUpdateOperationOptions() CreateOrUpdateOperationOptions {
return CreateOrUpdateOperationOptions{}
}
func (o CreateOrUpdateOperationOptions) toHeaders() map[string]interface{} {
out := make(map[string]interface{})
if o.IfMatch != nil {
out["If-Match"] = *o.IfMatch
}
return out
}
func (o CreateOrUpdateOperationOptions) toQueryString() map[string]interface{} {
out := make(map[string]interface{})
return out
}
// CreateOrUpdate ...
func (c NotificationClient) CreateOrUpdate(ctx context.Context, id NotificationId, options CreateOrUpdateOperationOptions) (result CreateOrUpdateOperationResponse, err error) {
req, err := c.preparerForCreateOrUpdate(ctx, id, options)
if err != nil {
err = autorest.NewErrorWithError(err, "notification.NotificationClient", "CreateOrUpdate", nil, "Failure preparing request")
return
}
result.HttpResponse, err = c.Client.Send(req, azure.DoRetryWithRegistration(c.Client))
if err != nil {
err = autorest.NewErrorWithError(err, "notification.NotificationClient", "CreateOrUpdate", result.HttpResponse, "Failure sending request")
return
}
result, err = c.responderForCreateOrUpdate(result.HttpResponse)
if err != nil {
err = autorest.NewErrorWithError(err, "notification.NotificationClient", "CreateOrUpdate", result.HttpResponse, "Failure responding to request")
return
}
return
}
// preparerForCreateOrUpdate prepares the CreateOrUpdate request.
func (c NotificationClient) preparerForCreateOrUpdate(ctx context.Context, id NotificationId, options CreateOrUpdateOperationOptions) (*http.Request, error) {
queryParameters := map[string]interface{}{
"api-version": defaultApiVersion,
}
for k, v := range options.toQueryString() {
queryParameters[k] = autorest.Encode("query", v)
}
preparer := autorest.CreatePreparer(
autorest.AsContentType("application/json; charset=utf-8"),
autorest.AsPut(),
autorest.WithBaseURL(c.baseUri),
autorest.WithHeaders(options.toHeaders()),
autorest.WithPath(id.ID()),
autorest.WithQueryParameters(queryParameters))
return preparer.Prepare((&http.Request{}).WithContext(ctx))
}
// responderForCreateOrUpdate handles the response to the CreateOrUpdate request. The method always
// closes the http.Response Body.
func (c NotificationClient) responderForCreateOrUpdate(resp *http.Response) (result CreateOrUpdateOperationResponse, err error) {
err = autorest.Respond(
resp,
azure.WithErrorUnlessStatusCode(http.StatusOK),
autorest.ByUnmarshallingJSON(&result.Model),
autorest.ByClosing())
result.HttpResponse = resp
return
}