-
Notifications
You must be signed in to change notification settings - Fork 51
/
shareFile.go
408 lines (352 loc) · 16.3 KB
/
shareFile.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
// Code generated by the Pulumi Terraform Bridge (tfgen) Tool DO NOT EDIT.
// *** WARNING: Do not edit by hand unless you're certain you know what you are doing! ***
package storage
import (
"context"
"reflect"
"errors"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
// Manages a File within an Azure Storage File Share.
//
// ## Example Usage
//
// ```go
// package main
//
// import (
//
// "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
// "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
// "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
//
// )
//
// func main() {
// pulumi.Run(func(ctx *pulumi.Context) error {
// exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
// Location: pulumi.String("West Europe"),
// })
// if err != nil {
// return err
// }
// exampleAccount, err := storage.NewAccount(ctx, "exampleAccount", &storage.AccountArgs{
// ResourceGroupName: exampleResourceGroup.Name,
// Location: exampleResourceGroup.Location,
// AccountTier: pulumi.String("Standard"),
// AccountReplicationType: pulumi.String("LRS"),
// })
// if err != nil {
// return err
// }
// exampleShare, err := storage.NewShare(ctx, "exampleShare", &storage.ShareArgs{
// StorageAccountName: exampleAccount.Name,
// Quota: pulumi.Int(50),
// })
// if err != nil {
// return err
// }
// _, err = storage.NewShareFile(ctx, "exampleShareFile", &storage.ShareFileArgs{
// StorageShareId: exampleShare.ID(),
// Source: pulumi.String("some-local-file.zip"),
// })
// if err != nil {
// return err
// }
// return nil
// })
// }
//
// ```
//
// ## Import
//
// Directories within an Azure Storage File Share can be imported using the `resource id`, e.g.
//
// ```sh
//
// $ pulumi import azure:storage/shareFile:ShareFile example https://account1.file.core.windows.net/share1/file1
//
// ```
type ShareFile struct {
pulumi.CustomResourceState
// Sets the file’s Content-Disposition header.
ContentDisposition pulumi.StringPtrOutput `pulumi:"contentDisposition"`
// Specifies which content encodings have been applied to the file.
ContentEncoding pulumi.StringPtrOutput `pulumi:"contentEncoding"`
// The length in bytes of the file content
ContentLength pulumi.IntOutput `pulumi:"contentLength"`
// The MD5 sum of the file contents. Changing this forces a new resource to be created.
ContentMd5 pulumi.StringPtrOutput `pulumi:"contentMd5"`
// The content type of the share file. Defaults to `application/octet-stream`.
ContentType pulumi.StringPtrOutput `pulumi:"contentType"`
// A mapping of metadata to assign to this file.
Metadata pulumi.StringMapOutput `pulumi:"metadata"`
// The name (or path) of the File that should be created within this File Share. Changing this forces a new resource to be created.
Name pulumi.StringOutput `pulumi:"name"`
// The storage share directory that you would like the file placed into. Changing this forces a new resource to be created. Defaults to `""`.
Path pulumi.StringPtrOutput `pulumi:"path"`
// An absolute path to a file on the local system. Changing this forces a new resource to be created.
Source pulumi.StringPtrOutput `pulumi:"source"`
// The Storage Share ID in which this file will be placed into. Changing this forces a new resource to be created.
StorageShareId pulumi.StringOutput `pulumi:"storageShareId"`
}
// NewShareFile registers a new resource with the given unique name, arguments, and options.
func NewShareFile(ctx *pulumi.Context,
name string, args *ShareFileArgs, opts ...pulumi.ResourceOption) (*ShareFile, error) {
if args == nil {
return nil, errors.New("missing one or more required arguments")
}
if args.StorageShareId == nil {
return nil, errors.New("invalid value for required argument 'StorageShareId'")
}
var resource ShareFile
err := ctx.RegisterResource("azure:storage/shareFile:ShareFile", name, args, &resource, opts...)
if err != nil {
return nil, err
}
return &resource, nil
}
// GetShareFile gets an existing ShareFile resource's state with the given name, ID, and optional
// state properties that are used to uniquely qualify the lookup (nil if not required).
func GetShareFile(ctx *pulumi.Context,
name string, id pulumi.IDInput, state *ShareFileState, opts ...pulumi.ResourceOption) (*ShareFile, error) {
var resource ShareFile
err := ctx.ReadResource("azure:storage/shareFile:ShareFile", name, id, state, &resource, opts...)
if err != nil {
return nil, err
}
return &resource, nil
}
// Input properties used for looking up and filtering ShareFile resources.
type shareFileState struct {
// Sets the file’s Content-Disposition header.
ContentDisposition *string `pulumi:"contentDisposition"`
// Specifies which content encodings have been applied to the file.
ContentEncoding *string `pulumi:"contentEncoding"`
// The length in bytes of the file content
ContentLength *int `pulumi:"contentLength"`
// The MD5 sum of the file contents. Changing this forces a new resource to be created.
ContentMd5 *string `pulumi:"contentMd5"`
// The content type of the share file. Defaults to `application/octet-stream`.
ContentType *string `pulumi:"contentType"`
// A mapping of metadata to assign to this file.
Metadata map[string]string `pulumi:"metadata"`
// The name (or path) of the File that should be created within this File Share. Changing this forces a new resource to be created.
Name *string `pulumi:"name"`
// The storage share directory that you would like the file placed into. Changing this forces a new resource to be created. Defaults to `""`.
Path *string `pulumi:"path"`
// An absolute path to a file on the local system. Changing this forces a new resource to be created.
Source *string `pulumi:"source"`
// The Storage Share ID in which this file will be placed into. Changing this forces a new resource to be created.
StorageShareId *string `pulumi:"storageShareId"`
}
type ShareFileState struct {
// Sets the file’s Content-Disposition header.
ContentDisposition pulumi.StringPtrInput
// Specifies which content encodings have been applied to the file.
ContentEncoding pulumi.StringPtrInput
// The length in bytes of the file content
ContentLength pulumi.IntPtrInput
// The MD5 sum of the file contents. Changing this forces a new resource to be created.
ContentMd5 pulumi.StringPtrInput
// The content type of the share file. Defaults to `application/octet-stream`.
ContentType pulumi.StringPtrInput
// A mapping of metadata to assign to this file.
Metadata pulumi.StringMapInput
// The name (or path) of the File that should be created within this File Share. Changing this forces a new resource to be created.
Name pulumi.StringPtrInput
// The storage share directory that you would like the file placed into. Changing this forces a new resource to be created. Defaults to `""`.
Path pulumi.StringPtrInput
// An absolute path to a file on the local system. Changing this forces a new resource to be created.
Source pulumi.StringPtrInput
// The Storage Share ID in which this file will be placed into. Changing this forces a new resource to be created.
StorageShareId pulumi.StringPtrInput
}
func (ShareFileState) ElementType() reflect.Type {
return reflect.TypeOf((*shareFileState)(nil)).Elem()
}
type shareFileArgs struct {
// Sets the file’s Content-Disposition header.
ContentDisposition *string `pulumi:"contentDisposition"`
// Specifies which content encodings have been applied to the file.
ContentEncoding *string `pulumi:"contentEncoding"`
// The MD5 sum of the file contents. Changing this forces a new resource to be created.
ContentMd5 *string `pulumi:"contentMd5"`
// The content type of the share file. Defaults to `application/octet-stream`.
ContentType *string `pulumi:"contentType"`
// A mapping of metadata to assign to this file.
Metadata map[string]string `pulumi:"metadata"`
// The name (or path) of the File that should be created within this File Share. Changing this forces a new resource to be created.
Name *string `pulumi:"name"`
// The storage share directory that you would like the file placed into. Changing this forces a new resource to be created. Defaults to `""`.
Path *string `pulumi:"path"`
// An absolute path to a file on the local system. Changing this forces a new resource to be created.
Source *string `pulumi:"source"`
// The Storage Share ID in which this file will be placed into. Changing this forces a new resource to be created.
StorageShareId string `pulumi:"storageShareId"`
}
// The set of arguments for constructing a ShareFile resource.
type ShareFileArgs struct {
// Sets the file’s Content-Disposition header.
ContentDisposition pulumi.StringPtrInput
// Specifies which content encodings have been applied to the file.
ContentEncoding pulumi.StringPtrInput
// The MD5 sum of the file contents. Changing this forces a new resource to be created.
ContentMd5 pulumi.StringPtrInput
// The content type of the share file. Defaults to `application/octet-stream`.
ContentType pulumi.StringPtrInput
// A mapping of metadata to assign to this file.
Metadata pulumi.StringMapInput
// The name (or path) of the File that should be created within this File Share. Changing this forces a new resource to be created.
Name pulumi.StringPtrInput
// The storage share directory that you would like the file placed into. Changing this forces a new resource to be created. Defaults to `""`.
Path pulumi.StringPtrInput
// An absolute path to a file on the local system. Changing this forces a new resource to be created.
Source pulumi.StringPtrInput
// The Storage Share ID in which this file will be placed into. Changing this forces a new resource to be created.
StorageShareId pulumi.StringInput
}
func (ShareFileArgs) ElementType() reflect.Type {
return reflect.TypeOf((*shareFileArgs)(nil)).Elem()
}
type ShareFileInput interface {
pulumi.Input
ToShareFileOutput() ShareFileOutput
ToShareFileOutputWithContext(ctx context.Context) ShareFileOutput
}
func (*ShareFile) ElementType() reflect.Type {
return reflect.TypeOf((**ShareFile)(nil)).Elem()
}
func (i *ShareFile) ToShareFileOutput() ShareFileOutput {
return i.ToShareFileOutputWithContext(context.Background())
}
func (i *ShareFile) ToShareFileOutputWithContext(ctx context.Context) ShareFileOutput {
return pulumi.ToOutputWithContext(ctx, i).(ShareFileOutput)
}
// ShareFileArrayInput is an input type that accepts ShareFileArray and ShareFileArrayOutput values.
// You can construct a concrete instance of `ShareFileArrayInput` via:
//
// ShareFileArray{ ShareFileArgs{...} }
type ShareFileArrayInput interface {
pulumi.Input
ToShareFileArrayOutput() ShareFileArrayOutput
ToShareFileArrayOutputWithContext(context.Context) ShareFileArrayOutput
}
type ShareFileArray []ShareFileInput
func (ShareFileArray) ElementType() reflect.Type {
return reflect.TypeOf((*[]*ShareFile)(nil)).Elem()
}
func (i ShareFileArray) ToShareFileArrayOutput() ShareFileArrayOutput {
return i.ToShareFileArrayOutputWithContext(context.Background())
}
func (i ShareFileArray) ToShareFileArrayOutputWithContext(ctx context.Context) ShareFileArrayOutput {
return pulumi.ToOutputWithContext(ctx, i).(ShareFileArrayOutput)
}
// ShareFileMapInput is an input type that accepts ShareFileMap and ShareFileMapOutput values.
// You can construct a concrete instance of `ShareFileMapInput` via:
//
// ShareFileMap{ "key": ShareFileArgs{...} }
type ShareFileMapInput interface {
pulumi.Input
ToShareFileMapOutput() ShareFileMapOutput
ToShareFileMapOutputWithContext(context.Context) ShareFileMapOutput
}
type ShareFileMap map[string]ShareFileInput
func (ShareFileMap) ElementType() reflect.Type {
return reflect.TypeOf((*map[string]*ShareFile)(nil)).Elem()
}
func (i ShareFileMap) ToShareFileMapOutput() ShareFileMapOutput {
return i.ToShareFileMapOutputWithContext(context.Background())
}
func (i ShareFileMap) ToShareFileMapOutputWithContext(ctx context.Context) ShareFileMapOutput {
return pulumi.ToOutputWithContext(ctx, i).(ShareFileMapOutput)
}
type ShareFileOutput struct{ *pulumi.OutputState }
func (ShareFileOutput) ElementType() reflect.Type {
return reflect.TypeOf((**ShareFile)(nil)).Elem()
}
func (o ShareFileOutput) ToShareFileOutput() ShareFileOutput {
return o
}
func (o ShareFileOutput) ToShareFileOutputWithContext(ctx context.Context) ShareFileOutput {
return o
}
// Sets the file’s Content-Disposition header.
func (o ShareFileOutput) ContentDisposition() pulumi.StringPtrOutput {
return o.ApplyT(func(v *ShareFile) pulumi.StringPtrOutput { return v.ContentDisposition }).(pulumi.StringPtrOutput)
}
// Specifies which content encodings have been applied to the file.
func (o ShareFileOutput) ContentEncoding() pulumi.StringPtrOutput {
return o.ApplyT(func(v *ShareFile) pulumi.StringPtrOutput { return v.ContentEncoding }).(pulumi.StringPtrOutput)
}
// The length in bytes of the file content
func (o ShareFileOutput) ContentLength() pulumi.IntOutput {
return o.ApplyT(func(v *ShareFile) pulumi.IntOutput { return v.ContentLength }).(pulumi.IntOutput)
}
// The MD5 sum of the file contents. Changing this forces a new resource to be created.
func (o ShareFileOutput) ContentMd5() pulumi.StringPtrOutput {
return o.ApplyT(func(v *ShareFile) pulumi.StringPtrOutput { return v.ContentMd5 }).(pulumi.StringPtrOutput)
}
// The content type of the share file. Defaults to `application/octet-stream`.
func (o ShareFileOutput) ContentType() pulumi.StringPtrOutput {
return o.ApplyT(func(v *ShareFile) pulumi.StringPtrOutput { return v.ContentType }).(pulumi.StringPtrOutput)
}
// A mapping of metadata to assign to this file.
func (o ShareFileOutput) Metadata() pulumi.StringMapOutput {
return o.ApplyT(func(v *ShareFile) pulumi.StringMapOutput { return v.Metadata }).(pulumi.StringMapOutput)
}
// The name (or path) of the File that should be created within this File Share. Changing this forces a new resource to be created.
func (o ShareFileOutput) Name() pulumi.StringOutput {
return o.ApplyT(func(v *ShareFile) pulumi.StringOutput { return v.Name }).(pulumi.StringOutput)
}
// The storage share directory that you would like the file placed into. Changing this forces a new resource to be created. Defaults to `""`.
func (o ShareFileOutput) Path() pulumi.StringPtrOutput {
return o.ApplyT(func(v *ShareFile) pulumi.StringPtrOutput { return v.Path }).(pulumi.StringPtrOutput)
}
// An absolute path to a file on the local system. Changing this forces a new resource to be created.
func (o ShareFileOutput) Source() pulumi.StringPtrOutput {
return o.ApplyT(func(v *ShareFile) pulumi.StringPtrOutput { return v.Source }).(pulumi.StringPtrOutput)
}
// The Storage Share ID in which this file will be placed into. Changing this forces a new resource to be created.
func (o ShareFileOutput) StorageShareId() pulumi.StringOutput {
return o.ApplyT(func(v *ShareFile) pulumi.StringOutput { return v.StorageShareId }).(pulumi.StringOutput)
}
type ShareFileArrayOutput struct{ *pulumi.OutputState }
func (ShareFileArrayOutput) ElementType() reflect.Type {
return reflect.TypeOf((*[]*ShareFile)(nil)).Elem()
}
func (o ShareFileArrayOutput) ToShareFileArrayOutput() ShareFileArrayOutput {
return o
}
func (o ShareFileArrayOutput) ToShareFileArrayOutputWithContext(ctx context.Context) ShareFileArrayOutput {
return o
}
func (o ShareFileArrayOutput) Index(i pulumi.IntInput) ShareFileOutput {
return pulumi.All(o, i).ApplyT(func(vs []interface{}) *ShareFile {
return vs[0].([]*ShareFile)[vs[1].(int)]
}).(ShareFileOutput)
}
type ShareFileMapOutput struct{ *pulumi.OutputState }
func (ShareFileMapOutput) ElementType() reflect.Type {
return reflect.TypeOf((*map[string]*ShareFile)(nil)).Elem()
}
func (o ShareFileMapOutput) ToShareFileMapOutput() ShareFileMapOutput {
return o
}
func (o ShareFileMapOutput) ToShareFileMapOutputWithContext(ctx context.Context) ShareFileMapOutput {
return o
}
func (o ShareFileMapOutput) MapIndex(k pulumi.StringInput) ShareFileOutput {
return pulumi.All(o, k).ApplyT(func(vs []interface{}) *ShareFile {
return vs[0].(map[string]*ShareFile)[vs[1].(string)]
}).(ShareFileOutput)
}
func init() {
pulumi.RegisterInputType(reflect.TypeOf((*ShareFileInput)(nil)).Elem(), &ShareFile{})
pulumi.RegisterInputType(reflect.TypeOf((*ShareFileArrayInput)(nil)).Elem(), ShareFileArray{})
pulumi.RegisterInputType(reflect.TypeOf((*ShareFileMapInput)(nil)).Elem(), ShareFileMap{})
pulumi.RegisterOutputType(ShareFileOutput{})
pulumi.RegisterOutputType(ShareFileArrayOutput{})
pulumi.RegisterOutputType(ShareFileMapOutput{})
}