forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
596 lines (529 loc) · 23 KB
/
models.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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
package account
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
"encoding/json"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/azure"
"github.com/Azure/go-autorest/autorest/date"
"github.com/Azure/go-autorest/autorest/to"
"github.com/satori/go.uuid"
"net/http"
)
// DataLakeStoreAccountState enumerates the values for data lake store account state.
type DataLakeStoreAccountState string
const (
// Active ...
Active DataLakeStoreAccountState = "active"
// Suspended ...
Suspended DataLakeStoreAccountState = "suspended"
)
// PossibleDataLakeStoreAccountStateValues returns an array of possible values for the DataLakeStoreAccountState const type.
func PossibleDataLakeStoreAccountStateValues() []DataLakeStoreAccountState {
return []DataLakeStoreAccountState{Active, Suspended}
}
// DataLakeStoreAccountStatus enumerates the values for data lake store account status.
type DataLakeStoreAccountStatus string
const (
// Creating ...
Creating DataLakeStoreAccountStatus = "Creating"
// Deleted ...
Deleted DataLakeStoreAccountStatus = "Deleted"
// Deleting ...
Deleting DataLakeStoreAccountStatus = "Deleting"
// Failed ...
Failed DataLakeStoreAccountStatus = "Failed"
// Patching ...
Patching DataLakeStoreAccountStatus = "Patching"
// Resuming ...
Resuming DataLakeStoreAccountStatus = "Resuming"
// Running ...
Running DataLakeStoreAccountStatus = "Running"
// Succeeded ...
Succeeded DataLakeStoreAccountStatus = "Succeeded"
// Suspending ...
Suspending DataLakeStoreAccountStatus = "Suspending"
)
// PossibleDataLakeStoreAccountStatusValues returns an array of possible values for the DataLakeStoreAccountStatus const type.
func PossibleDataLakeStoreAccountStatusValues() []DataLakeStoreAccountStatus {
return []DataLakeStoreAccountStatus{Creating, Deleted, Deleting, Failed, Patching, Resuming, Running, Succeeded, Suspending}
}
// EncryptionConfigType enumerates the values for encryption config type.
type EncryptionConfigType string
const (
// ServiceManaged ...
ServiceManaged EncryptionConfigType = "ServiceManaged"
// UserManaged ...
UserManaged EncryptionConfigType = "UserManaged"
)
// PossibleEncryptionConfigTypeValues returns an array of possible values for the EncryptionConfigType const type.
func PossibleEncryptionConfigTypeValues() []EncryptionConfigType {
return []EncryptionConfigType{ServiceManaged, UserManaged}
}
// EncryptionIdentityType enumerates the values for encryption identity type.
type EncryptionIdentityType string
const (
// SystemAssigned ...
SystemAssigned EncryptionIdentityType = "SystemAssigned"
)
// PossibleEncryptionIdentityTypeValues returns an array of possible values for the EncryptionIdentityType const type.
func PossibleEncryptionIdentityTypeValues() []EncryptionIdentityType {
return []EncryptionIdentityType{SystemAssigned}
}
// EncryptionProvisioningState enumerates the values for encryption provisioning state.
type EncryptionProvisioningState string
const (
// EncryptionProvisioningStateCreating ...
EncryptionProvisioningStateCreating EncryptionProvisioningState = "Creating"
// EncryptionProvisioningStateSucceeded ...
EncryptionProvisioningStateSucceeded EncryptionProvisioningState = "Succeeded"
)
// PossibleEncryptionProvisioningStateValues returns an array of possible values for the EncryptionProvisioningState const type.
func PossibleEncryptionProvisioningStateValues() []EncryptionProvisioningState {
return []EncryptionProvisioningState{EncryptionProvisioningStateCreating, EncryptionProvisioningStateSucceeded}
}
// EncryptionState enumerates the values for encryption state.
type EncryptionState string
const (
// Disabled ...
Disabled EncryptionState = "Disabled"
// Enabled ...
Enabled EncryptionState = "Enabled"
)
// PossibleEncryptionStateValues returns an array of possible values for the EncryptionState const type.
func PossibleEncryptionStateValues() []EncryptionState {
return []EncryptionState{Disabled, Enabled}
}
// OperationStatus enumerates the values for operation status.
type OperationStatus string
const (
// OperationStatusFailed ...
OperationStatusFailed OperationStatus = "Failed"
// OperationStatusInProgress ...
OperationStatusInProgress OperationStatus = "InProgress"
// OperationStatusSucceeded ...
OperationStatusSucceeded OperationStatus = "Succeeded"
)
// PossibleOperationStatusValues returns an array of possible values for the OperationStatus const type.
func PossibleOperationStatusValues() []OperationStatus {
return []OperationStatus{OperationStatusFailed, OperationStatusInProgress, OperationStatusSucceeded}
}
// AzureAsyncOperationResult the response body contains the status of the specified asynchronous operation,
// indicating whether it has succeeded, is in progress, or has failed. Note that this status is distinct from the
// HTTP status code returned for the Get Operation Status operation itself. If the asynchronous operation
// succeeded, the response body includes the HTTP status code for the successful request. If the asynchronous
// operation failed, the response body includes the HTTP status code for the failed request and error information
// regarding the failure.
type AzureAsyncOperationResult struct {
// Status - the status of the AzureAsuncOperation. Possible values include: 'OperationStatusInProgress', 'OperationStatusSucceeded', 'OperationStatusFailed'
Status OperationStatus `json:"status,omitempty"`
Error *Error `json:"error,omitempty"`
}
// CreateFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type CreateFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *CreateFuture) Result(client Client) (dlsa DataLakeStoreAccount, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "account.CreateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("account.CreateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if dlsa.Response.Response, err = future.GetResult(sender); err == nil && dlsa.Response.Response.StatusCode != http.StatusNoContent {
dlsa, err = client.CreateResponder(dlsa.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "account.CreateFuture", "Result", dlsa.Response.Response, "Failure responding to request")
}
}
return
}
// DataLakeStoreAccount data Lake Store account information
type DataLakeStoreAccount struct {
autorest.Response `json:"-"`
// Location - the account regional location.
Location *string `json:"location,omitempty"`
// Name - the account name.
Name *string `json:"name,omitempty"`
// Type - the namespace and type of the account.
Type *string `json:"type,omitempty"`
// ID - the account subscription ID.
ID *string `json:"id,omitempty"`
// Identity - The Key vault encryption identity, if any.
Identity *EncryptionIdentity `json:"identity,omitempty"`
// Tags - the value of custom properties.
Tags map[string]*string `json:"tags"`
// Properties - the Data Lake Store account properties.
Properties *DataLakeStoreAccountProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for DataLakeStoreAccount.
func (dlsa DataLakeStoreAccount) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if dlsa.Location != nil {
objectMap["location"] = dlsa.Location
}
if dlsa.Name != nil {
objectMap["name"] = dlsa.Name
}
if dlsa.Type != nil {
objectMap["type"] = dlsa.Type
}
if dlsa.ID != nil {
objectMap["id"] = dlsa.ID
}
if dlsa.Identity != nil {
objectMap["identity"] = dlsa.Identity
}
if dlsa.Tags != nil {
objectMap["tags"] = dlsa.Tags
}
if dlsa.Properties != nil {
objectMap["properties"] = dlsa.Properties
}
return json.Marshal(objectMap)
}
// DataLakeStoreAccountListResult data Lake Store account list information response.
type DataLakeStoreAccountListResult struct {
autorest.Response `json:"-"`
// Value - the results of the list operation
Value *[]DataLakeStoreAccount `json:"value,omitempty"`
// NextLink - the link (url) to the next page of results.
NextLink *string `json:"nextLink,omitempty"`
// Count - the total count of results that are available, but might not be returned in the current page.
Count *int64 `json:"count,omitempty"`
}
// DataLakeStoreAccountListResultIterator provides access to a complete listing of DataLakeStoreAccount values.
type DataLakeStoreAccountListResultIterator struct {
i int
page DataLakeStoreAccountListResultPage
}
// Next advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
func (iter *DataLakeStoreAccountListResultIterator) Next() error {
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err := iter.page.Next()
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter DataLakeStoreAccountListResultIterator) NotDone() bool {
return iter.page.NotDone() && iter.i < len(iter.page.Values())
}
// Response returns the raw server response from the last page request.
func (iter DataLakeStoreAccountListResultIterator) Response() DataLakeStoreAccountListResult {
return iter.page.Response()
}
// Value returns the current value or a zero-initialized value if the
// iterator has advanced beyond the end of the collection.
func (iter DataLakeStoreAccountListResultIterator) Value() DataLakeStoreAccount {
if !iter.page.NotDone() {
return DataLakeStoreAccount{}
}
return iter.page.Values()[iter.i]
}
// IsEmpty returns true if the ListResult contains no values.
func (dlsalr DataLakeStoreAccountListResult) IsEmpty() bool {
return dlsalr.Value == nil || len(*dlsalr.Value) == 0
}
// dataLakeStoreAccountListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (dlsalr DataLakeStoreAccountListResult) dataLakeStoreAccountListResultPreparer() (*http.Request, error) {
if dlsalr.NextLink == nil || len(to.String(dlsalr.NextLink)) < 1 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(dlsalr.NextLink)))
}
// DataLakeStoreAccountListResultPage contains a page of DataLakeStoreAccount values.
type DataLakeStoreAccountListResultPage struct {
fn func(DataLakeStoreAccountListResult) (DataLakeStoreAccountListResult, error)
dlsalr DataLakeStoreAccountListResult
}
// Next advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
func (page *DataLakeStoreAccountListResultPage) Next() error {
next, err := page.fn(page.dlsalr)
if err != nil {
return err
}
page.dlsalr = next
return nil
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page DataLakeStoreAccountListResultPage) NotDone() bool {
return !page.dlsalr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page DataLakeStoreAccountListResultPage) Response() DataLakeStoreAccountListResult {
return page.dlsalr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page DataLakeStoreAccountListResultPage) Values() []DataLakeStoreAccount {
if page.dlsalr.IsEmpty() {
return nil
}
return *page.dlsalr.Value
}
// DataLakeStoreAccountProperties data Lake Store account properties information
type DataLakeStoreAccountProperties struct {
// ProvisioningState - the status of the Data Lake Store account while being provisioned. Possible values include: 'Failed', 'Creating', 'Running', 'Succeeded', 'Patching', 'Suspending', 'Resuming', 'Deleting', 'Deleted'
ProvisioningState DataLakeStoreAccountStatus `json:"provisioningState,omitempty"`
// State - the status of the Data Lake Store account after provisioning has completed. Possible values include: 'Active', 'Suspended'
State DataLakeStoreAccountState `json:"state,omitempty"`
// CreationTime - the account creation time.
CreationTime *date.Time `json:"creationTime,omitempty"`
// EncryptionState - The current state of encryption for this Data Lake store account. Possible values include: 'Enabled', 'Disabled'
EncryptionState EncryptionState `json:"encryptionState,omitempty"`
// EncryptionProvisioningState - The current state of encryption provisioning for this Data Lake store account. Possible values include: 'EncryptionProvisioningStateCreating', 'EncryptionProvisioningStateSucceeded'
EncryptionProvisioningState EncryptionProvisioningState `json:"encryptionProvisioningState,omitempty"`
// EncryptionConfig - The Key vault encryption configuration.
EncryptionConfig *EncryptionConfig `json:"encryptionConfig,omitempty"`
// LastModifiedTime - the account last modified time.
LastModifiedTime *date.Time `json:"lastModifiedTime,omitempty"`
// Endpoint - the gateway host.
Endpoint *string `json:"endpoint,omitempty"`
// DefaultGroup - the default owner group for all new folders and files created in the Data Lake Store account.
DefaultGroup *string `json:"defaultGroup,omitempty"`
}
// DataLakeStoreFirewallRuleListResult data Lake Store firewall rule list information.
type DataLakeStoreFirewallRuleListResult struct {
autorest.Response `json:"-"`
// Value - the results of the list operation
Value *[]FirewallRule `json:"value,omitempty"`
// NextLink - the link (url) to the next page of results.
NextLink *string `json:"nextLink,omitempty"`
// Count - the total count of results that are available, but might not be returned in the current page.
Count *int64 `json:"count,omitempty"`
}
// DataLakeStoreFirewallRuleListResultIterator provides access to a complete listing of FirewallRule values.
type DataLakeStoreFirewallRuleListResultIterator struct {
i int
page DataLakeStoreFirewallRuleListResultPage
}
// Next advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
func (iter *DataLakeStoreFirewallRuleListResultIterator) Next() error {
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err := iter.page.Next()
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter DataLakeStoreFirewallRuleListResultIterator) NotDone() bool {
return iter.page.NotDone() && iter.i < len(iter.page.Values())
}
// Response returns the raw server response from the last page request.
func (iter DataLakeStoreFirewallRuleListResultIterator) Response() DataLakeStoreFirewallRuleListResult {
return iter.page.Response()
}
// Value returns the current value or a zero-initialized value if the
// iterator has advanced beyond the end of the collection.
func (iter DataLakeStoreFirewallRuleListResultIterator) Value() FirewallRule {
if !iter.page.NotDone() {
return FirewallRule{}
}
return iter.page.Values()[iter.i]
}
// IsEmpty returns true if the ListResult contains no values.
func (dlsfrlr DataLakeStoreFirewallRuleListResult) IsEmpty() bool {
return dlsfrlr.Value == nil || len(*dlsfrlr.Value) == 0
}
// dataLakeStoreFirewallRuleListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (dlsfrlr DataLakeStoreFirewallRuleListResult) dataLakeStoreFirewallRuleListResultPreparer() (*http.Request, error) {
if dlsfrlr.NextLink == nil || len(to.String(dlsfrlr.NextLink)) < 1 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(dlsfrlr.NextLink)))
}
// DataLakeStoreFirewallRuleListResultPage contains a page of FirewallRule values.
type DataLakeStoreFirewallRuleListResultPage struct {
fn func(DataLakeStoreFirewallRuleListResult) (DataLakeStoreFirewallRuleListResult, error)
dlsfrlr DataLakeStoreFirewallRuleListResult
}
// Next advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
func (page *DataLakeStoreFirewallRuleListResultPage) Next() error {
next, err := page.fn(page.dlsfrlr)
if err != nil {
return err
}
page.dlsfrlr = next
return nil
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page DataLakeStoreFirewallRuleListResultPage) NotDone() bool {
return !page.dlsfrlr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page DataLakeStoreFirewallRuleListResultPage) Response() DataLakeStoreFirewallRuleListResult {
return page.dlsfrlr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page DataLakeStoreFirewallRuleListResultPage) Values() []FirewallRule {
if page.dlsfrlr.IsEmpty() {
return nil
}
return *page.dlsfrlr.Value
}
// DeleteFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type DeleteFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *DeleteFuture) Result(client Client) (ar autorest.Response, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "account.DeleteFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("account.DeleteFuture")
return
}
ar.Response = future.Response()
return
}
// EncryptionConfig ...
type EncryptionConfig struct {
// Type - The type of encryption configuration being used. Currently the only supported types are 'UserManaged' and 'ServiceManaged'. Possible values include: 'UserManaged', 'ServiceManaged'
Type EncryptionConfigType `json:"type,omitempty"`
// KeyVaultMetaInfo - The Key vault information for connecting to user managed encryption keys.
KeyVaultMetaInfo *KeyVaultMetaInfo `json:"keyVaultMetaInfo,omitempty"`
}
// EncryptionIdentity ...
type EncryptionIdentity struct {
// Type - The type of encryption being used. Currently the only supported type is 'SystemAssigned'. Possible values include: 'SystemAssigned'
Type EncryptionIdentityType `json:"type,omitempty"`
// PrincipalID - The principal identifier associated with the encryption.
PrincipalID *uuid.UUID `json:"principalId,omitempty"`
// TenantID - The tenant identifier associated with the encryption.
TenantID *uuid.UUID `json:"tenantId,omitempty"`
}
// Error data Lake Store error information
type Error struct {
// Code - the HTTP status code or error code associated with this error
Code *string `json:"code,omitempty"`
// Message - the error message to display.
Message *string `json:"message,omitempty"`
// Target - the target of the error.
Target *string `json:"target,omitempty"`
// Details - the list of error details
Details *[]ErrorDetails `json:"details,omitempty"`
// InnerError - the inner exceptions or errors, if any
InnerError *InnerError `json:"innerError,omitempty"`
}
// ErrorDetails data Lake Store error details information
type ErrorDetails struct {
// Code - the HTTP status code or error code associated with this error
Code *string `json:"code,omitempty"`
// Message - the error message localized based on Accept-Language
Message *string `json:"message,omitempty"`
// Target - the target of the particular error (for example, the name of the property in error).
Target *string `json:"target,omitempty"`
}
// FirewallRule data Lake Store firewall rule information
type FirewallRule struct {
autorest.Response `json:"-"`
// Name - the firewall rule's name.
Name *string `json:"name,omitempty"`
// Type - the namespace and type of the firewall Rule.
Type *string `json:"type,omitempty"`
// ID - the firewall rule's subscription ID.
ID *string `json:"id,omitempty"`
// Location - the firewall rule's regional location.
Location *string `json:"location,omitempty"`
// Properties - the properties of the firewall rule.
Properties *FirewallRuleProperties `json:"properties,omitempty"`
}
// FirewallRuleProperties data Lake Store firewall rule properties information
type FirewallRuleProperties struct {
// StartIPAddress - the start IP address for the firewall rule.
StartIPAddress *string `json:"startIpAddress,omitempty"`
// EndIPAddress - the end IP address for the firewall rule.
EndIPAddress *string `json:"endIpAddress,omitempty"`
}
// InnerError data Lake Store inner error information
type InnerError struct {
// Trace - the stack trace for the error
Trace *string `json:"trace,omitempty"`
// Context - the context for the error message
Context *string `json:"context,omitempty"`
}
// KeyVaultMetaInfo ...
type KeyVaultMetaInfo struct {
// KeyVaultResourceID - The resource identifier for the user managed Key Vault being used to encrypt.
KeyVaultResourceID *string `json:"keyVaultResourceId,omitempty"`
// EncryptionKeyName - The name of the user managed encryption key.
EncryptionKeyName *string `json:"encryptionKeyName,omitempty"`
// EncryptionKeyVersion - The version of the user managed encryption key.
EncryptionKeyVersion *string `json:"encryptionKeyVersion,omitempty"`
}
// UpdateFuture an abstraction for monitoring and retrieving the results of a long-running operation.
type UpdateFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *UpdateFuture) Result(client Client) (dlsa DataLakeStoreAccount, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "account.UpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("account.UpdateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if dlsa.Response.Response, err = future.GetResult(sender); err == nil && dlsa.Response.Response.StatusCode != http.StatusNoContent {
dlsa, err = client.UpdateResponder(dlsa.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "account.UpdateFuture", "Result", dlsa.Response.Response, "Failure responding to request")
}
}
return
}