-
Notifications
You must be signed in to change notification settings - Fork 187
/
ModernUsageDetail.yml
1320 lines (1243 loc) · 40 KB
/
ModernUsageDetail.yml
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
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
### YamlMime:TSType
name: ModernUsageDetail
uid: '@azure/arm-consumption.ModernUsageDetail'
package: '@azure/arm-consumption'
summary: Modern usage detail.
fullName: ModernUsageDetail
remarks: ''
isDeprecated: false
type: interface
properties:
- name: additionalInfo
uid: '@azure/arm-consumption.ModernUsageDetail.additionalInfo'
package: '@azure/arm-consumption'
summary: >-
Additional details of this usage item. Use this field to get usage line
item specific details such as the actual VM Size (ServiceType) or the
ratio in which the reservation discount is applied.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: additionalInfo
remarks: ''
isDeprecated: false
syntax:
content: 'additionalInfo?: string'
return:
description: ''
type: string
- name: benefitId
uid: '@azure/arm-consumption.ModernUsageDetail.benefitId'
package: '@azure/arm-consumption'
summary: >-
Unique identifier for the applicable benefit.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: benefitId
remarks: ''
isDeprecated: false
syntax:
content: 'benefitId?: string'
return:
description: ''
type: string
- name: benefitName
uid: '@azure/arm-consumption.ModernUsageDetail.benefitName'
package: '@azure/arm-consumption'
summary: >-
Name of the applicable benefit.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: benefitName
remarks: ''
isDeprecated: false
syntax:
content: 'benefitName?: string'
return:
description: ''
type: string
- name: billingAccountId
uid: '@azure/arm-consumption.ModernUsageDetail.billingAccountId'
package: '@azure/arm-consumption'
summary: >-
Billing Account identifier.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: billingAccountId
remarks: ''
isDeprecated: false
syntax:
content: 'billingAccountId?: string'
return:
description: ''
type: string
- name: billingAccountName
uid: '@azure/arm-consumption.ModernUsageDetail.billingAccountName'
package: '@azure/arm-consumption'
summary: >-
Name of the Billing Account.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: billingAccountName
remarks: ''
isDeprecated: false
syntax:
content: 'billingAccountName?: string'
return:
description: ''
type: string
- name: billingCurrencyCode
uid: '@azure/arm-consumption.ModernUsageDetail.billingCurrencyCode'
package: '@azure/arm-consumption'
summary: >-
The currency defining the billed cost.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: billingCurrencyCode
remarks: ''
isDeprecated: false
syntax:
content: 'billingCurrencyCode?: string'
return:
description: ''
type: string
- name: billingPeriodEndDate
uid: '@azure/arm-consumption.ModernUsageDetail.billingPeriodEndDate'
package: '@azure/arm-consumption'
summary: >-
Billing Period End Date as in the invoice.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: billingPeriodEndDate
remarks: ''
isDeprecated: false
syntax:
content: 'billingPeriodEndDate?: Date'
return:
description: ''
type: Date
- name: billingPeriodStartDate
uid: '@azure/arm-consumption.ModernUsageDetail.billingPeriodStartDate'
package: '@azure/arm-consumption'
summary: >-
Billing Period Start Date as in the invoice.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: billingPeriodStartDate
remarks: ''
isDeprecated: false
syntax:
content: 'billingPeriodStartDate?: Date'
return:
description: ''
type: Date
- name: billingProfileId
uid: '@azure/arm-consumption.ModernUsageDetail.billingProfileId'
package: '@azure/arm-consumption'
summary: >-
Identifier for the billing profile that groups costs across invoices in
the a singular billing currency across across the customers who have
onboarded the Microsoft customer agreement and the customers in CSP who
have made entitlement purchases like SaaS, Marketplace, RI, etc.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: billingProfileId
remarks: ''
isDeprecated: false
syntax:
content: 'billingProfileId?: string'
return:
description: ''
type: string
- name: billingProfileName
uid: '@azure/arm-consumption.ModernUsageDetail.billingProfileName'
package: '@azure/arm-consumption'
summary: >-
Name of the billing profile that groups costs across invoices in the a
singular billing currency across across the customers who have onboarded
the Microsoft customer agreement and the customers in CSP who have made
entitlement purchases like SaaS, Marketplace, RI, etc.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: billingProfileName
remarks: ''
isDeprecated: false
syntax:
content: 'billingProfileName?: string'
return:
description: ''
type: string
- name: chargeType
uid: '@azure/arm-consumption.ModernUsageDetail.chargeType'
package: '@azure/arm-consumption'
summary: >-
Indicates a charge represents credits, usage, a Marketplace purchase, a
reservation fee, or a refund.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: chargeType
remarks: ''
isDeprecated: false
syntax:
content: 'chargeType?: string'
return:
description: ''
type: string
- name: consumedService
uid: '@azure/arm-consumption.ModernUsageDetail.consumedService'
package: '@azure/arm-consumption'
summary: >-
Consumed service name. Name of the azure resource provider that emits the
usage or was purchased. This value is not provided for marketplace usage.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: consumedService
remarks: ''
isDeprecated: false
syntax:
content: 'consumedService?: string'
return:
description: ''
type: string
- name: costAllocationRuleName
uid: '@azure/arm-consumption.ModernUsageDetail.costAllocationRuleName'
package: '@azure/arm-consumption'
summary: >-
Name for Cost Allocation Rule.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: costAllocationRuleName
remarks: ''
isDeprecated: false
syntax:
content: 'costAllocationRuleName?: string'
return:
description: ''
type: string
- name: costCenter
uid: '@azure/arm-consumption.ModernUsageDetail.costCenter'
package: '@azure/arm-consumption'
summary: >-
The cost center of this department if it is a department and a cost center
is provided.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: costCenter
remarks: ''
isDeprecated: false
syntax:
content: 'costCenter?: string'
return:
description: ''
type: string
- name: costInBillingCurrency
uid: '@azure/arm-consumption.ModernUsageDetail.costInBillingCurrency'
package: '@azure/arm-consumption'
summary: >-
ExtendedCost or blended cost before tax in billed currency.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: costInBillingCurrency
remarks: ''
isDeprecated: false
syntax:
content: 'costInBillingCurrency?: number'
return:
description: ''
type: number
- name: costInPricingCurrency
uid: '@azure/arm-consumption.ModernUsageDetail.costInPricingCurrency'
package: '@azure/arm-consumption'
summary: >-
ExtendedCost or blended cost before tax in pricing currency to correlate
with prices.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: costInPricingCurrency
remarks: ''
isDeprecated: false
syntax:
content: 'costInPricingCurrency?: number'
return:
description: ''
type: number
- name: costInUSD
uid: '@azure/arm-consumption.ModernUsageDetail.costInUSD'
package: '@azure/arm-consumption'
summary: >-
Estimated extendedCost or blended cost before tax in USD.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: costInUSD
remarks: ''
isDeprecated: false
syntax:
content: 'costInUSD?: number'
return:
description: ''
type: number
- name: customerName
uid: '@azure/arm-consumption.ModernUsageDetail.customerName'
package: '@azure/arm-consumption'
summary: >-
Name of the customer's AAD tenant.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: customerName
remarks: ''
isDeprecated: false
syntax:
content: 'customerName?: string'
return:
description: ''
type: string
- name: customerTenantId
uid: '@azure/arm-consumption.ModernUsageDetail.customerTenantId'
package: '@azure/arm-consumption'
summary: >-
Identifier of the customer's AAD tenant.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: customerTenantId
remarks: ''
isDeprecated: false
syntax:
content: 'customerTenantId?: string'
return:
description: ''
type: string
- name: date
uid: '@azure/arm-consumption.ModernUsageDetail.date'
package: '@azure/arm-consumption'
summary: >-
Date for the usage record.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: date
remarks: ''
isDeprecated: false
syntax:
content: 'date?: Date'
return:
description: ''
type: Date
- name: effectivePrice
uid: '@azure/arm-consumption.ModernUsageDetail.effectivePrice'
package: '@azure/arm-consumption'
summary: >-
Effective Price that's charged for the usage.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: effectivePrice
remarks: ''
isDeprecated: false
syntax:
content: 'effectivePrice?: number'
return:
description: ''
type: number
- name: exchangeRate
uid: '@azure/arm-consumption.ModernUsageDetail.exchangeRate'
package: '@azure/arm-consumption'
summary: >-
Exchange rate used in conversion from pricing currency to billing
currency.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: exchangeRate
remarks: ''
isDeprecated: false
syntax:
content: 'exchangeRate?: string'
return:
description: ''
type: string
- name: exchangeRateDate
uid: '@azure/arm-consumption.ModernUsageDetail.exchangeRateDate'
package: '@azure/arm-consumption'
summary: >-
Date on which exchange rate used in conversion from pricing currency to
billing currency.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: exchangeRateDate
remarks: ''
isDeprecated: false
syntax:
content: 'exchangeRateDate?: Date'
return:
description: ''
type: Date
- name: exchangeRatePricingToBilling
uid: '@azure/arm-consumption.ModernUsageDetail.exchangeRatePricingToBilling'
package: '@azure/arm-consumption'
summary: >-
Exchange Rate from pricing currency to billing currency.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: exchangeRatePricingToBilling
remarks: ''
isDeprecated: false
syntax:
content: 'exchangeRatePricingToBilling?: number'
return:
description: ''
type: number
- name: frequency
uid: '@azure/arm-consumption.ModernUsageDetail.frequency'
package: '@azure/arm-consumption'
summary: >-
Indicates how frequently this charge will occur. OneTime for purchases
which only happen once, Monthly for fees which recur every month, and
UsageBased for charges based on how much a service is used.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: frequency
remarks: ''
isDeprecated: false
syntax:
content: 'frequency?: string'
return:
description: ''
type: string
- name: instanceName
uid: '@azure/arm-consumption.ModernUsageDetail.instanceName'
package: '@azure/arm-consumption'
summary: >-
Instance Name.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: instanceName
remarks: ''
isDeprecated: false
syntax:
content: 'instanceName?: string'
return:
description: ''
type: string
- name: invoiceId
uid: '@azure/arm-consumption.ModernUsageDetail.invoiceId'
package: '@azure/arm-consumption'
summary: >-
Invoice ID as on the invoice where the specific transaction appears.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: invoiceId
remarks: ''
isDeprecated: false
syntax:
content: 'invoiceId?: string'
return:
description: ''
type: string
- name: invoiceSectionId
uid: '@azure/arm-consumption.ModernUsageDetail.invoiceSectionId'
package: '@azure/arm-consumption'
summary: >-
Identifier of the project that is being charged in the invoice. Not
applicable for Microsoft Customer Agreements onboarded by partners.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: invoiceSectionId
remarks: ''
isDeprecated: false
syntax:
content: 'invoiceSectionId?: string'
return:
description: ''
type: string
- name: invoiceSectionName
uid: '@azure/arm-consumption.ModernUsageDetail.invoiceSectionName'
package: '@azure/arm-consumption'
summary: >-
Name of the project that is being charged in the invoice. Not applicable
for Microsoft Customer Agreements onboarded by partners.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: invoiceSectionName
remarks: ''
isDeprecated: false
syntax:
content: 'invoiceSectionName?: string'
return:
description: ''
type: string
- name: isAzureCreditEligible
uid: '@azure/arm-consumption.ModernUsageDetail.isAzureCreditEligible'
package: '@azure/arm-consumption'
summary: >-
Determines if the cost is eligible to be paid for using Azure credits.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: isAzureCreditEligible
remarks: ''
isDeprecated: false
syntax:
content: 'isAzureCreditEligible?: boolean'
return:
description: ''
type: boolean
- name: kind
uid: '@azure/arm-consumption.ModernUsageDetail.kind'
package: '@azure/arm-consumption'
summary: >-
Polymorphic discriminator, which specifies the different types this object
can be
fullName: kind
remarks: ''
isDeprecated: false
syntax:
content: 'kind: "modern"'
return:
description: ''
type: '"modern"'
- name: marketPrice
uid: '@azure/arm-consumption.ModernUsageDetail.marketPrice'
package: '@azure/arm-consumption'
summary: >-
Market Price that's charged for the usage.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: marketPrice
remarks: ''
isDeprecated: false
syntax:
content: 'marketPrice?: number'
return:
description: ''
type: number
- name: meterCategory
uid: '@azure/arm-consumption.ModernUsageDetail.meterCategory'
package: '@azure/arm-consumption'
summary: >-
Identifies the top-level service for the usage.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: meterCategory
remarks: ''
isDeprecated: false
syntax:
content: 'meterCategory?: string'
return:
description: ''
type: string
- name: meterId
uid: '@azure/arm-consumption.ModernUsageDetail.meterId'
package: '@azure/arm-consumption'
summary: >-
The meter id (GUID). Not available for marketplace. For reserved instance
this represents the primary meter for which the reservation was purchased.
For the actual VM Size for which the reservation is purchased see
productOrderName.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: meterId
remarks: ''
isDeprecated: false
syntax:
content: 'meterId?: string'
return:
description: ''
type: string
- name: meterName
uid: '@azure/arm-consumption.ModernUsageDetail.meterName'
package: '@azure/arm-consumption'
summary: >-
Identifies the name of the meter against which consumption is measured.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: meterName
remarks: ''
isDeprecated: false
syntax:
content: 'meterName?: string'
return:
description: ''
type: string
- name: meterRegion
uid: '@azure/arm-consumption.ModernUsageDetail.meterRegion'
package: '@azure/arm-consumption'
summary: >-
Identifies the location of the datacenter for certain services that are
priced based on datacenter location.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: meterRegion
remarks: ''
isDeprecated: false
syntax:
content: 'meterRegion?: string'
return:
description: ''
type: string
- name: meterSubCategory
uid: '@azure/arm-consumption.ModernUsageDetail.meterSubCategory'
package: '@azure/arm-consumption'
summary: >-
Defines the type or sub-category of Azure service that can affect the
rate.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: meterSubCategory
remarks: ''
isDeprecated: false
syntax:
content: 'meterSubCategory?: string'
return:
description: ''
type: string
- name: partnerEarnedCreditApplied
uid: '@azure/arm-consumption.ModernUsageDetail.partnerEarnedCreditApplied'
package: '@azure/arm-consumption'
summary: >-
Flag to indicate if partner earned credit has been applied or not.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: partnerEarnedCreditApplied
remarks: ''
isDeprecated: false
syntax:
content: 'partnerEarnedCreditApplied?: string'
return:
description: ''
type: string
- name: partnerEarnedCreditRate
uid: '@azure/arm-consumption.ModernUsageDetail.partnerEarnedCreditRate'
package: '@azure/arm-consumption'
summary: >-
Rate of discount applied if there is a partner earned credit (PEC) based
on partner admin link access.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: partnerEarnedCreditRate
remarks: ''
isDeprecated: false
syntax:
content: 'partnerEarnedCreditRate?: number'
return:
description: ''
type: number
- name: partnerName
uid: '@azure/arm-consumption.ModernUsageDetail.partnerName'
package: '@azure/arm-consumption'
summary: >-
Name of the partner' AAD tenant.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: partnerName
remarks: ''
isDeprecated: false
syntax:
content: 'partnerName?: string'
return:
description: ''
type: string
- name: partnerTenantId
uid: '@azure/arm-consumption.ModernUsageDetail.partnerTenantId'
package: '@azure/arm-consumption'
summary: >-
Identifier for the partner's AAD tenant.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: partnerTenantId
remarks: ''
isDeprecated: false
syntax:
content: 'partnerTenantId?: string'
return:
description: ''
type: string
- name: paygCostInBillingCurrency
uid: '@azure/arm-consumption.ModernUsageDetail.paygCostInBillingCurrency'
package: '@azure/arm-consumption'
summary: >-
The amount of PayG cost before tax in billing currency.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: paygCostInBillingCurrency
remarks: ''
isDeprecated: false
syntax:
content: 'paygCostInBillingCurrency?: number'
return:
description: ''
type: number
- name: paygCostInUSD
uid: '@azure/arm-consumption.ModernUsageDetail.paygCostInUSD'
package: '@azure/arm-consumption'
summary: >-
The amount of PayG cost before tax in US Dollar currency.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: paygCostInUSD
remarks: ''
isDeprecated: false
syntax:
content: 'paygCostInUSD?: number'
return:
description: ''
type: number
- name: payGPrice
uid: '@azure/arm-consumption.ModernUsageDetail.payGPrice'
package: '@azure/arm-consumption'
summary: >-
Retail price for the resource.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: payGPrice
remarks: ''
isDeprecated: false
syntax:
content: 'payGPrice?: number'
return:
description: ''
type: number
- name: previousInvoiceId
uid: '@azure/arm-consumption.ModernUsageDetail.previousInvoiceId'
package: '@azure/arm-consumption'
summary: >-
Reference to an original invoice there is a refund (negative cost). This
is populated only when there is a refund.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: previousInvoiceId
remarks: ''
isDeprecated: false
syntax:
content: 'previousInvoiceId?: string'
return:
description: ''
type: string
- name: pricingCurrencyCode
uid: '@azure/arm-consumption.ModernUsageDetail.pricingCurrencyCode'
package: '@azure/arm-consumption'
summary: >-
Pricing Billing Currency.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: pricingCurrencyCode
remarks: ''
isDeprecated: false
syntax:
content: 'pricingCurrencyCode?: string'
return:
description: ''
type: string
- name: pricingModel
uid: '@azure/arm-consumption.ModernUsageDetail.pricingModel'
package: '@azure/arm-consumption'
summary: >-
Identifier that indicates how the meter is priced
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: pricingModel
remarks: ''
isDeprecated: false
syntax:
content: 'pricingModel?: string'
return:
description: ''
type: string
- name: product
uid: '@azure/arm-consumption.ModernUsageDetail.product'
package: '@azure/arm-consumption'
summary: >-
Name of the product that has accrued charges by consumption or purchase as
listed in the invoice. Not available for Marketplace.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: product
remarks: ''
isDeprecated: false
syntax:
content: 'product?: string'
return:
description: ''
type: string
- name: productIdentifier
uid: '@azure/arm-consumption.ModernUsageDetail.productIdentifier'
package: '@azure/arm-consumption'
summary: >-
Identifier for the product that has accrued charges by consumption or
purchase . This is the concatenated key of productId and SkuId in partner
center.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: productIdentifier
remarks: ''
isDeprecated: false
syntax:
content: 'productIdentifier?: string'
return:
description: ''
type: string
- name: productOrderId
uid: '@azure/arm-consumption.ModernUsageDetail.productOrderId'
package: '@azure/arm-consumption'
summary: >-
The identifier for the asset or Azure plan name that the subscription
belongs to. For example: Azure Plan. For reservations this is the
Reservation Order ID.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: productOrderId
remarks: ''
isDeprecated: false
syntax:
content: 'productOrderId?: string'
return:
description: ''
type: string
- name: productOrderName
uid: '@azure/arm-consumption.ModernUsageDetail.productOrderName'
package: '@azure/arm-consumption'
summary: >-
Product Order Name. For reservations this is the SKU that was purchased.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: productOrderName
remarks: ''
isDeprecated: false
syntax:
content: 'productOrderName?: string'
return:
description: ''
type: string
- name: provider
uid: '@azure/arm-consumption.ModernUsageDetail.provider'
package: '@azure/arm-consumption'
summary: >-
Identifier for Product Category or Line Of Business, Ex - Azure, Microsoft
365, AWS e.t.c
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: provider
remarks: ''
isDeprecated: false
syntax:
content: 'provider?: string'
return:
description: ''
type: string
- name: publisherId
uid: '@azure/arm-consumption.ModernUsageDetail.publisherId'
package: '@azure/arm-consumption'
summary: >-
Publisher Id.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: publisherId
remarks: ''
isDeprecated: false
syntax:
content: 'publisherId?: string'
return:
description: ''
type: string
- name: publisherName
uid: '@azure/arm-consumption.ModernUsageDetail.publisherName'
package: '@azure/arm-consumption'
summary: >-
Name of the publisher of the service including Microsoft or Third Party
publishers.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: publisherName
remarks: ''
isDeprecated: false
syntax:
content: 'publisherName?: string'
return:
description: ''
type: string
- name: publisherType
uid: '@azure/arm-consumption.ModernUsageDetail.publisherType'
package: '@azure/arm-consumption'
summary: >-
Type of publisher that identifies if the publisher is first party, third
party reseller or third party agency.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: publisherType
remarks: ''
isDeprecated: false
syntax:
content: 'publisherType?: string'
return:
description: ''
type: string
- name: quantity
uid: '@azure/arm-consumption.ModernUsageDetail.quantity'
package: '@azure/arm-consumption'
summary: >-
Measure the quantity purchased or consumed.The amount of the meter used
during the billing period.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: quantity
remarks: ''
isDeprecated: false
syntax:
content: 'quantity?: number'
return:
description: ''
type: number
- name: resellerMpnId
uid: '@azure/arm-consumption.ModernUsageDetail.resellerMpnId'
package: '@azure/arm-consumption'
summary: >-
MPNId for the reseller associated with the subscription.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: resellerMpnId
remarks: ''
isDeprecated: false
syntax:
content: 'resellerMpnId?: string'
return:
description: ''
type: string
- name: resellerName
uid: '@azure/arm-consumption.ModernUsageDetail.resellerName'
package: '@azure/arm-consumption'
summary: >-
Reseller Name.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: resellerName
remarks: ''
isDeprecated: false
syntax:
content: 'resellerName?: string'
return:
description: ''
type: string
- name: reservationId
uid: '@azure/arm-consumption.ModernUsageDetail.reservationId'
package: '@azure/arm-consumption'
summary: >-
ARM resource id of the reservation. Only applies to records relevant to
reservations.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: reservationId
remarks: ''
isDeprecated: false
syntax:
content: 'reservationId?: string'
return:
description: ''
type: string
- name: reservationName
uid: '@azure/arm-consumption.ModernUsageDetail.reservationName'
package: '@azure/arm-consumption'
summary: >-
User provided display name of the reservation. Last known name for a
particular day is populated in the daily data. Only applies to records
relevant to reservations.
NOTE: This property will not be serialized. It can only be populated by
the server.
fullName: reservationName
remarks: ''
isDeprecated: false