-
Notifications
You must be signed in to change notification settings - Fork 46
/
method_createorupdate.go
85 lines (69 loc) · 1.91 KB
/
method_createorupdate.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
package graphqlapiresolverpolicy
import (
"context"
"fmt"
"net/http"
"github.com/hashicorp/go-azure-sdk/sdk/client"
"github.com/hashicorp/go-azure-sdk/sdk/odata"
)
// 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
OData *odata.OData
Model *PolicyContract
}
type CreateOrUpdateOperationOptions struct {
IfMatch *string
}
func DefaultCreateOrUpdateOperationOptions() CreateOrUpdateOperationOptions {
return CreateOrUpdateOperationOptions{}
}
func (o CreateOrUpdateOperationOptions) ToHeaders() *client.Headers {
out := client.Headers{}
if o.IfMatch != nil {
out.Append("If-Match", fmt.Sprintf("%v", *o.IfMatch))
}
return &out
}
func (o CreateOrUpdateOperationOptions) ToOData() *odata.Query {
out := odata.Query{}
return &out
}
func (o CreateOrUpdateOperationOptions) ToQuery() *client.QueryParams {
out := client.QueryParams{}
return &out
}
// CreateOrUpdate ...
func (c GraphQLApiResolverPolicyClient) CreateOrUpdate(ctx context.Context, id ResolverId, input PolicyContract, options CreateOrUpdateOperationOptions) (result CreateOrUpdateOperationResponse, err error) {
opts := client.RequestOptions{
ContentType: "application/json; charset=utf-8",
ExpectedStatusCodes: []int{
http.StatusCreated,
http.StatusOK,
},
HttpMethod: http.MethodPut,
Path: fmt.Sprintf("%s/policies/policy", id.ID()),
OptionsObject: options,
}
req, err := c.Client.NewRequest(ctx, opts)
if err != nil {
return
}
if err = req.Marshal(input); err != nil {
return
}
var resp *client.Response
resp, err = req.Execute(ctx)
if resp != nil {
result.OData = resp.OData
result.HttpResponse = resp.Response
}
if err != nil {
return
}
if err = resp.Unmarshal(&result.Model); err != nil {
return
}
return
}