forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
495 lines (454 loc) · 15.9 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
package consumption
// 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/date"
"github.com/Azure/go-autorest/autorest/to"
"github.com/shopspring/decimal"
"net/http"
)
// ErrorDetails the details of the error.
type ErrorDetails struct {
// Code - Error code.
Code *string `json:"code,omitempty"`
// Message - Error message indicating why the operation failed.
Message *string `json:"message,omitempty"`
// Target - The target of the particular error.
Target *string `json:"target,omitempty"`
}
// ErrorResponse error response indicates that the service is not able to process the incoming request. The reason
// is provided in the error message.
type ErrorResponse struct {
// Error - The details of the error.
Error *ErrorDetails `json:"error,omitempty"`
}
// MeterDetails the properties of the meter detail.
type MeterDetails struct {
// MeterName - The name of the meter, within the given meter category
MeterName *string `json:"meterName,omitempty"`
// MeterCategory - The category of the meter, for example, 'Cloud services', 'Networking', etc..
MeterCategory *string `json:"meterCategory,omitempty"`
// MeterSubCategory - The subcategory of the meter, for example, 'A6 Cloud services', 'ExpressRoute (IXP)', etc..
MeterSubCategory *string `json:"meterSubCategory,omitempty"`
// Unit - The unit in which the meter consumption is charged, for example, 'Hours', 'GB', etc.
Unit *string `json:"unit,omitempty"`
// MeterLocation - The location in which the Azure service is available.
MeterLocation *string `json:"meterLocation,omitempty"`
// TotalIncludedQuantity - The total included quantity associated with the offer.
TotalIncludedQuantity *decimal.Decimal `json:"totalIncludedQuantity,omitempty"`
// PretaxStandardRate - The pretax listing price.
PretaxStandardRate *decimal.Decimal `json:"pretaxStandardRate,omitempty"`
}
// Operation a Consumption REST API operation.
type Operation struct {
// Name - Operation name: {provider}/{resource}/{operation}.
Name *string `json:"name,omitempty"`
// Display - The object that represents the operation.
Display *OperationDisplay `json:"display,omitempty"`
}
// OperationDisplay the object that represents the operation.
type OperationDisplay struct {
// Provider - Service provider: Microsoft.Consumption.
Provider *string `json:"provider,omitempty"`
// Resource - Resource on which the operation is performed: UsageDetail, etc.
Resource *string `json:"resource,omitempty"`
// Operation - Operation type: Read, write, delete, etc.
Operation *string `json:"operation,omitempty"`
}
// OperationListResult result of listing consumption operations. It contains a list of operations and a URL link to
// get the next set of results.
type OperationListResult struct {
autorest.Response `json:"-"`
// Value - List of consumption operations supported by the Microsoft.Consumption resource provider.
Value *[]Operation `json:"value,omitempty"`
// NextLink - URL to get the next set of operation list results if there are any.
NextLink *string `json:"nextLink,omitempty"`
}
// OperationListResultIterator provides access to a complete listing of Operation values.
type OperationListResultIterator struct {
i int
page OperationListResultPage
}
// 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 *OperationListResultIterator) 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 OperationListResultIterator) 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 OperationListResultIterator) Response() OperationListResult {
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 OperationListResultIterator) Value() Operation {
if !iter.page.NotDone() {
return Operation{}
}
return iter.page.Values()[iter.i]
}
// IsEmpty returns true if the ListResult contains no values.
func (olr OperationListResult) IsEmpty() bool {
return olr.Value == nil || len(*olr.Value) == 0
}
// operationListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (olr OperationListResult) operationListResultPreparer() (*http.Request, error) {
if olr.NextLink == nil || len(to.String(olr.NextLink)) < 1 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(olr.NextLink)))
}
// OperationListResultPage contains a page of Operation values.
type OperationListResultPage struct {
fn func(OperationListResult) (OperationListResult, error)
olr OperationListResult
}
// 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 *OperationListResultPage) Next() error {
next, err := page.fn(page.olr)
if err != nil {
return err
}
page.olr = next
return nil
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page OperationListResultPage) NotDone() bool {
return !page.olr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page OperationListResultPage) Response() OperationListResult {
return page.olr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page OperationListResultPage) Values() []Operation {
if page.olr.IsEmpty() {
return nil
}
return *page.olr.Value
}
// Resource the Resource model definition.
type Resource struct {
// ID - Resource Id.
ID *string `json:"id,omitempty"`
// Name - Resource name.
Name *string `json:"name,omitempty"`
// Type - Resource type.
Type *string `json:"type,omitempty"`
// Tags - Resource tags.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for Resource.
func (r Resource) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if r.ID != nil {
objectMap["id"] = r.ID
}
if r.Name != nil {
objectMap["name"] = r.Name
}
if r.Type != nil {
objectMap["type"] = r.Type
}
if r.Tags != nil {
objectMap["tags"] = r.Tags
}
return json.Marshal(objectMap)
}
// UsageDetail an usage detail resource.
type UsageDetail struct {
*UsageDetailProperties `json:"properties,omitempty"`
// ID - Resource Id.
ID *string `json:"id,omitempty"`
// Name - Resource name.
Name *string `json:"name,omitempty"`
// Type - Resource type.
Type *string `json:"type,omitempty"`
// Tags - Resource tags.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for UsageDetail.
func (ud UsageDetail) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ud.UsageDetailProperties != nil {
objectMap["properties"] = ud.UsageDetailProperties
}
if ud.ID != nil {
objectMap["id"] = ud.ID
}
if ud.Name != nil {
objectMap["name"] = ud.Name
}
if ud.Type != nil {
objectMap["type"] = ud.Type
}
if ud.Tags != nil {
objectMap["tags"] = ud.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for UsageDetail struct.
func (ud *UsageDetail) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "properties":
if v != nil {
var usageDetailProperties UsageDetailProperties
err = json.Unmarshal(*v, &usageDetailProperties)
if err != nil {
return err
}
ud.UsageDetailProperties = &usageDetailProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
ud.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
ud.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
ud.Type = &typeVar
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
ud.Tags = tags
}
}
}
return nil
}
// UsageDetailProperties the properties of the usage detail.
type UsageDetailProperties struct {
// BillingPeriodID - The id of the billing period resource that the usage belongs to.
BillingPeriodID *string `json:"billingPeriodId,omitempty"`
// InvoiceID - The id of the invoice resource that the usage belongs to.
InvoiceID *string `json:"invoiceId,omitempty"`
// UsageStart - The start of the date time range covered by the usage detail.
UsageStart *date.Time `json:"usageStart,omitempty"`
// UsageEnd - The end of the date time range covered by the usage detail.
UsageEnd *date.Time `json:"usageEnd,omitempty"`
// InstanceName - The name of the resource instance that the usage is about.
InstanceName *string `json:"instanceName,omitempty"`
// InstanceID - The uri of the resource instance that the usage is about.
InstanceID *string `json:"instanceId,omitempty"`
// InstanceLocation - The location of the resource instance that the usage is about.
InstanceLocation *string `json:"instanceLocation,omitempty"`
// Currency - The ISO currency in which the meter is charged, for example, USD.
Currency *string `json:"currency,omitempty"`
// UsageQuantity - The quantity of usage.
UsageQuantity *decimal.Decimal `json:"usageQuantity,omitempty"`
// BillableQuantity - The billable usage quantity.
BillableQuantity *decimal.Decimal `json:"billableQuantity,omitempty"`
// PretaxCost - The amount of cost before tax.
PretaxCost *decimal.Decimal `json:"pretaxCost,omitempty"`
// IsEstimated - The estimated usage is subject to change.
IsEstimated *bool `json:"isEstimated,omitempty"`
// MeterID - The meter id.
MeterID *string `json:"meterId,omitempty"`
// MeterDetails - The details about the meter. By default this is not populated, unless it's specified in $expand.
MeterDetails *MeterDetails `json:"meterDetails,omitempty"`
// AdditionalProperties - The list of key/value pairs for the additional properties, in the format 'key':'value' where key = the field name, and value = the field value. By default this is not populated, unless it's specified in $expand.
AdditionalProperties map[string]*string `json:"additionalProperties"`
}
// MarshalJSON is the custom marshaler for UsageDetailProperties.
func (UDP UsageDetailProperties) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if UDP.BillingPeriodID != nil {
objectMap["billingPeriodId"] = UDP.BillingPeriodID
}
if UDP.InvoiceID != nil {
objectMap["invoiceId"] = UDP.InvoiceID
}
if UDP.UsageStart != nil {
objectMap["usageStart"] = UDP.UsageStart
}
if UDP.UsageEnd != nil {
objectMap["usageEnd"] = UDP.UsageEnd
}
if UDP.InstanceName != nil {
objectMap["instanceName"] = UDP.InstanceName
}
if UDP.InstanceID != nil {
objectMap["instanceId"] = UDP.InstanceID
}
if UDP.InstanceLocation != nil {
objectMap["instanceLocation"] = UDP.InstanceLocation
}
if UDP.Currency != nil {
objectMap["currency"] = UDP.Currency
}
if UDP.UsageQuantity != nil {
objectMap["usageQuantity"] = UDP.UsageQuantity
}
if UDP.BillableQuantity != nil {
objectMap["billableQuantity"] = UDP.BillableQuantity
}
if UDP.PretaxCost != nil {
objectMap["pretaxCost"] = UDP.PretaxCost
}
if UDP.IsEstimated != nil {
objectMap["isEstimated"] = UDP.IsEstimated
}
if UDP.MeterID != nil {
objectMap["meterId"] = UDP.MeterID
}
if UDP.MeterDetails != nil {
objectMap["meterDetails"] = UDP.MeterDetails
}
if UDP.AdditionalProperties != nil {
objectMap["additionalProperties"] = UDP.AdditionalProperties
}
return json.Marshal(objectMap)
}
// UsageDetailsListResult result of listing usage details. It contains a list of available usage details in reverse
// chronological order by billing period.
type UsageDetailsListResult struct {
autorest.Response `json:"-"`
// Value - The list of usage details.
Value *[]UsageDetail `json:"value,omitempty"`
// NextLink - The link (url) to the next page of results.
NextLink *string `json:"nextLink,omitempty"`
}
// UsageDetailsListResultIterator provides access to a complete listing of UsageDetail values.
type UsageDetailsListResultIterator struct {
i int
page UsageDetailsListResultPage
}
// 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 *UsageDetailsListResultIterator) 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 UsageDetailsListResultIterator) 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 UsageDetailsListResultIterator) Response() UsageDetailsListResult {
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 UsageDetailsListResultIterator) Value() UsageDetail {
if !iter.page.NotDone() {
return UsageDetail{}
}
return iter.page.Values()[iter.i]
}
// IsEmpty returns true if the ListResult contains no values.
func (udlr UsageDetailsListResult) IsEmpty() bool {
return udlr.Value == nil || len(*udlr.Value) == 0
}
// usageDetailsListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (udlr UsageDetailsListResult) usageDetailsListResultPreparer() (*http.Request, error) {
if udlr.NextLink == nil || len(to.String(udlr.NextLink)) < 1 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(udlr.NextLink)))
}
// UsageDetailsListResultPage contains a page of UsageDetail values.
type UsageDetailsListResultPage struct {
fn func(UsageDetailsListResult) (UsageDetailsListResult, error)
udlr UsageDetailsListResult
}
// 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 *UsageDetailsListResultPage) Next() error {
next, err := page.fn(page.udlr)
if err != nil {
return err
}
page.udlr = next
return nil
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page UsageDetailsListResultPage) NotDone() bool {
return !page.udlr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page UsageDetailsListResultPage) Response() UsageDetailsListResult {
return page.udlr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page UsageDetailsListResultPage) Values() []UsageDetail {
if page.udlr.IsEmpty() {
return nil
}
return *page.udlr.Value
}