-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcreate.go
79 lines (63 loc) · 1.8 KB
/
create.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
package filesystems
import (
"context"
"fmt"
"net/http"
"github.com/hashicorp/go-azure-sdk/sdk/client"
"github.com/hashicorp/go-azure-sdk/sdk/odata"
)
type CreateInput struct {
// A map of base64-encoded strings to store as user-defined properties with the File System
// Note that items may only contain ASCII characters in the ISO-8859-1 character set.
// This automatically gets converted to a comma-separated list of name and
// value pairs before sending to the API
Properties map[string]string
}
type CreateResponse struct {
HttpResponse *client.Response
}
// Create creates a Data Lake Store Gen2 FileSystem within a Storage Account
func (c Client) Create(ctx context.Context, fileSystemName string, input CreateInput) (resp CreateResponse, err error) {
if fileSystemName == "" {
return resp, fmt.Errorf("`fileSystemName` cannot be an empty string")
}
opts := client.RequestOptions{
ContentType: "application/xml; charset=utf-8",
ExpectedStatusCodes: []int{
http.StatusCreated,
},
HttpMethod: http.MethodPut,
OptionsObject: createOptions{
properties: input.Properties,
},
Path: fmt.Sprintf("/%s", fileSystemName),
}
req, err := c.Client.NewRequest(ctx, opts)
if err != nil {
err = fmt.Errorf("building request: %+v", err)
return
}
resp.HttpResponse, err = req.Execute(ctx)
if err != nil {
err = fmt.Errorf("executing request: %+v", err)
return
}
return
}
type createOptions struct {
properties map[string]string
}
func (o createOptions) ToHeaders() *client.Headers {
headers := &client.Headers{}
props := buildProperties(o.properties)
if props != "" {
headers.Append("x-ms-properties", props)
}
return headers
}
func (createOptions) ToOData() *odata.Query {
return nil
}
func (createOptions) ToQuery() *client.QueryParams {
return fileSystemOptions{}.ToQuery()
}