-
Notifications
You must be signed in to change notification settings - Fork 0
/
ucscentralsdk.mometa.power.html
1350 lines (1037 loc) · 114 KB
/
ucscentralsdk.mometa.power.html
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
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ucscentralsdk.mometa.power package — ucscentralsdk 0.9.0.0 documentation</title>
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="top" title="ucscentralsdk 0.9.0.0 documentation" href="index.html"/>
<link rel="up" title="ucscentralsdk.mometa package" href="ucscentralsdk.mometa.html"/>
<link rel="next" title="ucscentralsdk.mometa.proc package" href="ucscentralsdk.mometa.proc.html"/>
<link rel="prev" title="ucscentralsdk.mometa.port package" href="ucscentralsdk.mometa.port.html"/>
<script src="_static/js/modernizr.min.js"></script>
</head>
<body class="wy-body-for-nav" role="document">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search">
<a href="index.html" class="icon icon-home"> ucscentralsdk
</a>
<div class="version">
0.9.0.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
<input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
<ul class="current">
<li class="toctree-l1 current"><a class="reference internal" href="ucscentralsdk.html">ucscentralsdk package</a><ul class="current">
<li class="toctree-l2 current"><a class="reference internal" href="ucscentralsdk.html#subpackages">Subpackages</a><ul class="current">
<li class="toctree-l3"><a class="reference internal" href="ucscentralsdk.methodmeta.html">ucscentralsdk.methodmeta package</a></li>
<li class="toctree-l3 current"><a class="reference internal" href="ucscentralsdk.mometa.html">ucscentralsdk.mometa package</a><ul class="current">
<li class="toctree-l4 current"><a class="reference internal" href="ucscentralsdk.mometa.html#subpackages">Subpackages</a></li>
<li class="toctree-l4"><a class="reference internal" href="ucscentralsdk.mometa.html#module-ucscentralsdk.mometa">Module contents</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#submodules">Submodules</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralbasetype">ucscentralsdk.ucscentralbasetype module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralconstants">ucscentralsdk.ucscentralconstants module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralcore">ucscentralsdk.ucscentralcore module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralcoremeta">ucscentralsdk.ucscentralcoremeta module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralcoreutils">ucscentralsdk.ucscentralcoreutils module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentraldriver">ucscentralsdk.ucscentraldriver module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentraleventhandler">ucscentralsdk.ucscentraleventhandler module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralexception">ucscentralsdk.ucscentralexception module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralfilter">ucscentralsdk.ucscentralfilter module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralfiltertype">ucscentralsdk.ucscentralfiltertype module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralgenutils">ucscentralsdk.ucscentralgenutils module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralhandle">ucscentralsdk.ucscentralhandle module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralmeta">ucscentralsdk.ucscentralmeta module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralmethod">ucscentralsdk.ucscentralmethod module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralmethodfactory">ucscentralsdk.ucscentralmethodfactory module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralmo">ucscentralsdk.ucscentralmo module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralsession">ucscentralsdk.ucscentralsession module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk.ucscentralxmlcodec">ucscentralsdk.ucscentralxmlcodec module</a></li>
<li class="toctree-l2"><a class="reference internal" href="ucscentralsdk.html#module-ucscentralsdk">Module contents</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
<li class="toctree-l1"><a class="reference internal" href="usage.html">Usage</a></li>
<li class="toctree-l1"><a class="reference internal" href="contributing.html">Contributing</a></li>
<li class="toctree-l1"><a class="reference internal" href="authors.html">Credits</a></li>
<li class="toctree-l1"><a class="reference internal" href="history.html">History</a></li>
<li class="toctree-l1"><a class="reference internal" href="history.html#id1">0.9.4.0 (2016-04-21)</a></li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
<nav class="wy-nav-top" role="navigation" aria-label="top navigation">
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="index.html">ucscentralsdk</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="index.html">Docs</a> »</li>
<li><a href="ucscentralsdk.html">ucscentralsdk package</a> »</li>
<li><a href="ucscentralsdk.mometa.html">ucscentralsdk.mometa package</a> »</li>
<li>ucscentralsdk.mometa.power package</li>
<li class="wy-breadcrumbs-aside">
<a href="_sources/ucscentralsdk.mometa.power.txt" rel="nofollow"> View page source</a>
</li>
</ul>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<div class="section" id="ucscentralsdk-mometa-power-package">
<h1>ucscentralsdk.mometa.power package<a class="headerlink" href="#ucscentralsdk-mometa-power-package" title="Permalink to this headline">¶</a></h1>
<div class="section" id="submodules">
<h2>Submodules<a class="headerlink" href="#submodules" title="Permalink to this headline">¶</a></h2>
</div>
<div class="section" id="module-ucscentralsdk.mometa.power.PowerBudget">
<span id="ucscentralsdk-mometa-power-powerbudget-module"></span><h2>ucscentralsdk.mometa.power.PowerBudget module<a class="headerlink" href="#module-ucscentralsdk.mometa.power.PowerBudget" title="Permalink to this headline">¶</a></h2>
<p>This module contains the general information for PowerBudget ManagedObject.</p>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudget">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerBudget.</code><code class="descname">PowerBudget</code><span class="sig-paren">(</span><em>parent_mo_or_dn</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerBudget.html#PowerBudget"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudget" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <a class="reference internal" href="ucscentralsdk.html#ucscentralsdk.ucscentralmo.ManagedObject" title="ucscentralsdk.ucscentralmo.ManagedObject"><code class="xref py py-class docutils literal"><span class="pre">ucscentralsdk.ucscentralmo.ManagedObject</span></code></a></p>
<p>This is PowerBudget class.</p>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudget.consts">
<code class="descname">consts</code><em class="property"> = <ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts instance></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudget.consts" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudget.mo_meta">
<code class="descname">mo_meta</code><em class="property"> = <ucscentralsdk.ucscentralcoremeta.MoMeta object></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudget.mo_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudget.naming_props">
<code class="descname">naming_props</code><em class="property"> = set([])</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudget.naming_props" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudget.prop_map">
<code class="descname">prop_map</code><em class="property"> = {'dn': 'dn', 'status': 'status', 'operState': 'oper_state', 'profiling': 'profiling', 'psuLineMode': 'psu_line_mode', 'prio': 'prio', 'weight': 'weight', 'operProfMethod': 'oper_prof_method', 'dynRealloc': 'dyn_realloc', 'style': 'style', 'currentPower': 'current_power', 'operCommitted': 'oper_committed', 'powerOnDeploy': 'power_on_deploy', 'updateTime': 'update_time', 'scaledWt': 'scaled_wt', 'powerAvailState': 'power_avail_state', 'operMin': 'oper_min', 'profMethod': 'prof_method', 'adminCommitted': 'admin_committed', 'maxPower': 'max_power', 'capAction': 'cap_action', 'adminPeak': 'admin_peak', 'bootPower': 'boot_power', 'chRsrvdPower': 'ch_rsrvd_power', 'psuCapacity': 'psu_capacity', 'idlePower': 'idle_power', 'psuState': 'psu_state', 'adminPeakNew': 'admin_peak_new', 'groupName': 'group_name', 'operPeak': 'oper_peak', 'adminFPLockState': 'admin_fp_lock_state', 'rn': 'rn', 'childAction': 'child_action', 'catalogPower': 'catalog_power', 'operFPLockState': 'oper_fp_lock_state', 'minPower': 'min_power'}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudget.prop_map" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudget.prop_meta">
<code class="descname">prop_meta</code><em class="property"> = {'dn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf761284d0>, 'oper_committed': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf761281d0>, 'update_time': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe76d0>, 'oper_peak': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe72d0>, 'oper_fp_lock_state': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7e50>, 'prio': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7d50>, 'psu_line_mode': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe73d0>, 'admin_committed': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf761282d0>, 'psu_capacity': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7c10>, 'group_name': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf761283d0>, 'prof_method': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7d10>, 'profiling': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7890>, 'oper_state': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7690>, 'oper_prof_method': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7f50>, 'boot_power': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf76128dd0>, 'oper_min': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe79d0>, 'psu_state': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7210>, 'rn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7a10>, 'scaled_wt': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7250>, 'child_action': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf76128fd0>, 'admin_peak_new': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf76128d10>, 'style': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7410>, 'weight': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7810>, 'ch_rsrvd_power': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf76128c90>, 'current_power': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf76128350>, 'catalog_power': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf76128190>, 'cap_action': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf76128850>, 'status': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe71d0>, 'idle_power': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf76128a90>, 'admin_peak': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf76128490>, 'power_avail_state': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7fd0>, 'max_power': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf76128d90>, 'min_power': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf76128210>, 'dyn_realloc': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf76128990>, 'power_on_deploy': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75fe7c90>, 'admin_fp_lock_state': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf76128690>}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudget.prop_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerBudget.</code><code class="descname">PowerBudgetConsts</code><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerBudget.html#PowerBudgetConsts"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts" title="Permalink to this definition">¶</a></dt>
<dd><dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.ADMIN_COMMITTED_UNBOUNDED">
<code class="descname">ADMIN_COMMITTED_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.ADMIN_COMMITTED_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.ADMIN_FPLOCK_STATE_LOCKED">
<code class="descname">ADMIN_FPLOCK_STATE_LOCKED</code><em class="property"> = 'locked'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.ADMIN_FPLOCK_STATE_LOCKED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.ADMIN_FPLOCK_STATE_UNKNOWN">
<code class="descname">ADMIN_FPLOCK_STATE_UNKNOWN</code><em class="property"> = 'unknown'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.ADMIN_FPLOCK_STATE_UNKNOWN" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.ADMIN_FPLOCK_STATE_UNLOCKED">
<code class="descname">ADMIN_FPLOCK_STATE_UNLOCKED</code><em class="property"> = 'unlocked'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.ADMIN_FPLOCK_STATE_UNLOCKED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.ADMIN_PEAK_NEW_UNBOUNDED">
<code class="descname">ADMIN_PEAK_NEW_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.ADMIN_PEAK_NEW_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.ADMIN_PEAK_UNBOUNDED">
<code class="descname">ADMIN_PEAK_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.ADMIN_PEAK_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.BOOT_POWER_UNBOUNDED">
<code class="descname">BOOT_POWER_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.BOOT_POWER_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.CAP_ACTION_CLOCK_DOWN">
<code class="descname">CAP_ACTION_CLOCK_DOWN</code><em class="property"> = 'clock-down'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.CAP_ACTION_CLOCK_DOWN" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.CAP_ACTION_NOTHING">
<code class="descname">CAP_ACTION_NOTHING</code><em class="property"> = 'nothing'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.CAP_ACTION_NOTHING" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.CAP_ACTION_THROTTLED">
<code class="descname">CAP_ACTION_THROTTLED</code><em class="property"> = 'throttled'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.CAP_ACTION_THROTTLED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.CATALOG_POWER_UNBOUNDED">
<code class="descname">CATALOG_POWER_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.CATALOG_POWER_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.CH_RSRVD_POWER_UNBOUNDED">
<code class="descname">CH_RSRVD_POWER_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.CH_RSRVD_POWER_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.CURRENT_POWER_UNBOUNDED">
<code class="descname">CURRENT_POWER_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.CURRENT_POWER_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.DYN_REALLOC_CHASSIS">
<code class="descname">DYN_REALLOC_CHASSIS</code><em class="property"> = 'chassis'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.DYN_REALLOC_CHASSIS" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.DYN_REALLOC_NONE">
<code class="descname">DYN_REALLOC_NONE</code><em class="property"> = 'none'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.DYN_REALLOC_NONE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.IDLE_POWER_UNBOUNDED">
<code class="descname">IDLE_POWER_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.IDLE_POWER_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.MAX_POWER_UNBOUNDED">
<code class="descname">MAX_POWER_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.MAX_POWER_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.MIN_POWER_UNBOUNDED">
<code class="descname">MIN_POWER_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.MIN_POWER_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_COMMITTED_UNBOUNDED">
<code class="descname">OPER_COMMITTED_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_COMMITTED_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_FPLOCK_STATE_LOCKED">
<code class="descname">OPER_FPLOCK_STATE_LOCKED</code><em class="property"> = 'locked'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_FPLOCK_STATE_LOCKED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_FPLOCK_STATE_UNKNOWN">
<code class="descname">OPER_FPLOCK_STATE_UNKNOWN</code><em class="property"> = 'unknown'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_FPLOCK_STATE_UNKNOWN" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_FPLOCK_STATE_UNLOCKED">
<code class="descname">OPER_FPLOCK_STATE_UNLOCKED</code><em class="property"> = 'unlocked'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_FPLOCK_STATE_UNLOCKED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_MIN_UNBOUNDED">
<code class="descname">OPER_MIN_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_MIN_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_PEAK_UNBOUNDED">
<code class="descname">OPER_PEAK_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_PEAK_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_PROF_METHOD_DEFAULT">
<code class="descname">OPER_PROF_METHOD_DEFAULT</code><em class="property"> = 'default'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_PROF_METHOD_DEFAULT" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_PROF_METHOD_NODEMGR">
<code class="descname">OPER_PROF_METHOD_NODEMGR</code><em class="property"> = 'nodemgr'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_PROF_METHOD_NODEMGR" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_PROF_METHOD_PNUOS">
<code class="descname">OPER_PROF_METHOD_PNUOS</code><em class="property"> = 'pnuos'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_PROF_METHOD_PNUOS" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_PROF_METHOD_STATIC">
<code class="descname">OPER_PROF_METHOD_STATIC</code><em class="property"> = 'static'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_PROF_METHOD_STATIC" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_PROF_METHOD_UNKNOWN">
<code class="descname">OPER_PROF_METHOD_UNKNOWN</code><em class="property"> = 'unknown'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_PROF_METHOD_UNKNOWN" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_BUDGETED">
<code class="descname">OPER_STATE_BUDGETED</code><em class="property"> = 'budgeted'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_BUDGETED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_BUDGETING">
<code class="descname">OPER_STATE_BUDGETING</code><em class="property"> = 'budgeting'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_BUDGETING" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_DEPLOYED">
<code class="descname">OPER_STATE_DEPLOYED</code><em class="property"> = 'deployed'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_DEPLOYED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_DEPLOYING">
<code class="descname">OPER_STATE_DEPLOYING</code><em class="property"> = 'deploying'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_DEPLOYING" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_DISCOVERY_BUDGETED">
<code class="descname">OPER_STATE_DISCOVERY_BUDGETED</code><em class="property"> = 'discovery-budgeted'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_DISCOVERY_BUDGETED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_DISCOVERY_RETRY">
<code class="descname">OPER_STATE_DISCOVERY_RETRY</code><em class="property"> = 'discovery-retry'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_DISCOVERY_RETRY" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_FIRMWARE_MISMATCH">
<code class="descname">OPER_STATE_FIRMWARE_MISMATCH</code><em class="property"> = 'firmware-mismatch'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_FIRMWARE_MISMATCH" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_NON_COMPLIANT">
<code class="descname">OPER_STATE_NON_COMPLIANT</code><em class="property"> = 'non-compliant'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_NON_COMPLIANT" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_NOT_CAPPED">
<code class="descname">OPER_STATE_NOT_CAPPED</code><em class="property"> = 'not-capped'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_NOT_CAPPED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_UNBUDGETED">
<code class="descname">OPER_STATE_UNBUDGETED</code><em class="property"> = 'unbudgeted'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.OPER_STATE_UNBUDGETED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_AVAIL_STATE_AVAILABLE">
<code class="descname">POWER_AVAIL_STATE_AVAILABLE</code><em class="property"> = 'available'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_AVAIL_STATE_AVAILABLE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_AVAIL_STATE_UNAVAILABLE">
<code class="descname">POWER_AVAIL_STATE_UNAVAILABLE</code><em class="property"> = 'unavailable'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_AVAIL_STATE_UNAVAILABLE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_AVAIL_STATE_UNKNOWN">
<code class="descname">POWER_AVAIL_STATE_UNKNOWN</code><em class="property"> = 'unknown'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_AVAIL_STATE_UNKNOWN" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_ON_DEPLOY_FALSE">
<code class="descname">POWER_ON_DEPLOY_FALSE</code><em class="property"> = 'false'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_ON_DEPLOY_FALSE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_ON_DEPLOY_NO">
<code class="descname">POWER_ON_DEPLOY_NO</code><em class="property"> = 'no'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_ON_DEPLOY_NO" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_ON_DEPLOY_TRUE">
<code class="descname">POWER_ON_DEPLOY_TRUE</code><em class="property"> = 'true'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_ON_DEPLOY_TRUE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_ON_DEPLOY_YES">
<code class="descname">POWER_ON_DEPLOY_YES</code><em class="property"> = 'yes'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.POWER_ON_DEPLOY_YES" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PRIO_NO_CAP">
<code class="descname">PRIO_NO_CAP</code><em class="property"> = 'no-cap'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PRIO_NO_CAP" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PRIO_UTILITY">
<code class="descname">PRIO_UTILITY</code><em class="property"> = 'utility'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PRIO_UTILITY" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROFILING_FALSE">
<code class="descname">PROFILING_FALSE</code><em class="property"> = 'false'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROFILING_FALSE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROFILING_NO">
<code class="descname">PROFILING_NO</code><em class="property"> = 'no'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROFILING_NO" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROFILING_TRUE">
<code class="descname">PROFILING_TRUE</code><em class="property"> = 'true'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROFILING_TRUE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROFILING_YES">
<code class="descname">PROFILING_YES</code><em class="property"> = 'yes'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROFILING_YES" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROF_METHOD_DEFAULT">
<code class="descname">PROF_METHOD_DEFAULT</code><em class="property"> = 'default'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROF_METHOD_DEFAULT" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROF_METHOD_NODEMGR">
<code class="descname">PROF_METHOD_NODEMGR</code><em class="property"> = 'nodemgr'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROF_METHOD_NODEMGR" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROF_METHOD_PNUOS">
<code class="descname">PROF_METHOD_PNUOS</code><em class="property"> = 'pnuos'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROF_METHOD_PNUOS" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROF_METHOD_STATIC">
<code class="descname">PROF_METHOD_STATIC</code><em class="property"> = 'static'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROF_METHOD_STATIC" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROF_METHOD_UNKNOWN">
<code class="descname">PROF_METHOD_UNKNOWN</code><em class="property"> = 'unknown'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PROF_METHOD_UNKNOWN" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_LINE_MODE_HIGH_LINE">
<code class="descname">PSU_LINE_MODE_HIGH_LINE</code><em class="property"> = 'high-line'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_LINE_MODE_HIGH_LINE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_LINE_MODE_LOW_LINE">
<code class="descname">PSU_LINE_MODE_LOW_LINE</code><em class="property"> = 'low-line'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_LINE_MODE_LOW_LINE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_LINE_MODE_MIXED_LINE">
<code class="descname">PSU_LINE_MODE_MIXED_LINE</code><em class="property"> = 'mixed-line'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_LINE_MODE_MIXED_LINE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_LINE_MODE_UNDETERMINED">
<code class="descname">PSU_LINE_MODE_UNDETERMINED</code><em class="property"> = 'undetermined'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_LINE_MODE_UNDETERMINED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_LINE_MODE_UNKNOWN">
<code class="descname">PSU_LINE_MODE_UNKNOWN</code><em class="property"> = 'unknown'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_LINE_MODE_UNKNOWN" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_STATE_INSUFFICIENT">
<code class="descname">PSU_STATE_INSUFFICIENT</code><em class="property"> = 'insufficient'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_STATE_INSUFFICIENT" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_STATE_OK">
<code class="descname">PSU_STATE_OK</code><em class="property"> = 'ok'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.PSU_STATE_OK" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.STYLE_INTELLIGENT_POLICY_DRIVEN">
<code class="descname">STYLE_INTELLIGENT_POLICY_DRIVEN</code><em class="property"> = 'intelligent-policy-driven'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.STYLE_INTELLIGENT_POLICY_DRIVEN" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.STYLE_MANUAL_PER_BLADE">
<code class="descname">STYLE_MANUAL_PER_BLADE</code><em class="property"> = 'manual-per-blade'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerBudget.PowerBudgetConsts.STYLE_MANUAL_PER_BLADE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
</div>
<div class="section" id="module-ucscentralsdk.mometa.power.PowerChassisMember">
<span id="ucscentralsdk-mometa-power-powerchassismember-module"></span><h2>ucscentralsdk.mometa.power.PowerChassisMember module<a class="headerlink" href="#module-ucscentralsdk.mometa.power.PowerChassisMember" title="Permalink to this headline">¶</a></h2>
<p>This module contains the general information for PowerChassisMember ManagedObject.</p>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMember">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerChassisMember.</code><code class="descname">PowerChassisMember</code><span class="sig-paren">(</span><em>parent_mo_or_dn</em>, <em>id</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerChassisMember.html#PowerChassisMember"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMember" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <a class="reference internal" href="ucscentralsdk.html#ucscentralsdk.ucscentralmo.ManagedObject" title="ucscentralsdk.ucscentralmo.ManagedObject"><code class="xref py py-class docutils literal"><span class="pre">ucscentralsdk.ucscentralmo.ManagedObject</span></code></a></p>
<p>This is PowerChassisMember class.</p>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMember.consts">
<code class="descname">consts</code><em class="property"> = <ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts instance></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMember.consts" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMember.mo_meta">
<code class="descname">mo_meta</code><em class="property"> = <ucscentralsdk.ucscentralcoremeta.MoMeta object></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMember.mo_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMember.naming_props">
<code class="descname">naming_props</code><em class="property"> = set([u'id'])</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMember.naming_props" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMember.prop_map">
<code class="descname">prop_map</code><em class="property"> = {'dn': 'dn', 'status': 'status', 'operState': 'oper_state', 'rn': 'rn', 'id': 'id', 'childAction': 'child_action'}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMember.prop_map" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMember.prop_meta">
<code class="descname">prop_meta</code><em class="property"> = {'dn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79acb210>, 'status': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79acb850>, 'oper_state': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79acb250>, 'rn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79acb810>, 'id': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79acb4d0>, 'child_action': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79acbbd0>}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMember.prop_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerChassisMember.</code><code class="descname">PowerChassisMemberConsts</code><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerChassisMember.html#PowerChassisMemberConsts"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts" title="Permalink to this definition">¶</a></dt>
<dd><dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts.OPER_STATE_CAP_INSUFFICIENT">
<code class="descname">OPER_STATE_CAP_INSUFFICIENT</code><em class="property"> = 'cap-insufficient'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts.OPER_STATE_CAP_INSUFFICIENT" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts.OPER_STATE_CAP_OK">
<code class="descname">OPER_STATE_CAP_OK</code><em class="property"> = 'cap-ok'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts.OPER_STATE_CAP_OK" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts.OPER_STATE_FW_MISMATCH">
<code class="descname">OPER_STATE_FW_MISMATCH</code><em class="property"> = 'fw-mismatch'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts.OPER_STATE_FW_MISMATCH" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts.OPER_STATE_PSU_INSUFFICIENT">
<code class="descname">OPER_STATE_PSU_INSUFFICIENT</code><em class="property"> = 'psu-insufficient'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts.OPER_STATE_PSU_INSUFFICIENT" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts.OPER_STATE_PSU_REDUNDANCY_FAILED">
<code class="descname">OPER_STATE_PSU_REDUNDANCY_FAILED</code><em class="property"> = 'psu-redundancy-failed'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts.OPER_STATE_PSU_REDUNDANCY_FAILED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts.OPER_STATE_UNINITIALIZED">
<code class="descname">OPER_STATE_UNINITIALIZED</code><em class="property"> = 'uninitialized'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerChassisMember.PowerChassisMemberConsts.OPER_STATE_UNINITIALIZED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
</div>
<div class="section" id="module-ucscentralsdk.mometa.power.PowerEp">
<span id="ucscentralsdk-mometa-power-powerep-module"></span><h2>ucscentralsdk.mometa.power.PowerEp module<a class="headerlink" href="#module-ucscentralsdk.mometa.power.PowerEp" title="Permalink to this headline">¶</a></h2>
<p>This module contains the general information for PowerEp ManagedObject.</p>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerEp.PowerEp">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerEp.</code><code class="descname">PowerEp</code><span class="sig-paren">(</span><em>parent_mo_or_dn</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerEp.html#PowerEp"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerEp.PowerEp" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <a class="reference internal" href="ucscentralsdk.html#ucscentralsdk.ucscentralmo.ManagedObject" title="ucscentralsdk.ucscentralmo.ManagedObject"><code class="xref py py-class docutils literal"><span class="pre">ucscentralsdk.ucscentralmo.ManagedObject</span></code></a></p>
<p>This is PowerEp class.</p>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerEp.PowerEp.consts">
<code class="descname">consts</code><em class="property"> = <ucscentralsdk.mometa.power.PowerEp.PowerEpConsts instance></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerEp.PowerEp.consts" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerEp.PowerEp.mo_meta">
<code class="descname">mo_meta</code><em class="property"> = <ucscentralsdk.ucscentralcoremeta.MoMeta object></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerEp.PowerEp.mo_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerEp.PowerEp.naming_props">
<code class="descname">naming_props</code><em class="property"> = set([])</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerEp.PowerEp.naming_props" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerEp.PowerEp.prop_map">
<code class="descname">prop_map</code><em class="property"> = {'dn': 'dn', 'status': 'status', 'rn': 'rn', 'childAction': 'child_action'}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerEp.PowerEp.prop_map" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerEp.PowerEp.prop_meta">
<code class="descname">prop_meta</code><em class="property"> = {'dn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79b96f90>, 'status': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79b96dd0>, 'rn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79b96910>, 'child_action': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79b96fd0>}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerEp.PowerEp.prop_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerEp.PowerEpConsts">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerEp.</code><code class="descname">PowerEpConsts</code><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerEp.html#PowerEpConsts"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerEp.PowerEpConsts" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</div>
<div class="section" id="module-ucscentralsdk.mometa.power.PowerGroup">
<span id="ucscentralsdk-mometa-power-powergroup-module"></span><h2>ucscentralsdk.mometa.power.PowerGroup module<a class="headerlink" href="#module-ucscentralsdk.mometa.power.PowerGroup" title="Permalink to this headline">¶</a></h2>
<p>This module contains the general information for PowerGroup ManagedObject.</p>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroup">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerGroup.</code><code class="descname">PowerGroup</code><span class="sig-paren">(</span><em>parent_mo_or_dn</em>, <em>name</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerGroup.html#PowerGroup"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroup" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <a class="reference internal" href="ucscentralsdk.html#ucscentralsdk.ucscentralmo.ManagedObject" title="ucscentralsdk.ucscentralmo.ManagedObject"><code class="xref py py-class docutils literal"><span class="pre">ucscentralsdk.ucscentralmo.ManagedObject</span></code></a></p>
<p>This is PowerGroup class.</p>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroup.consts">
<code class="descname">consts</code><em class="property"> = <ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts instance></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroup.consts" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroup.mo_meta">
<code class="descname">mo_meta</code><em class="property"> = <ucscentralsdk.ucscentralcoremeta.MoMeta object></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroup.mo_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroup.naming_props">
<code class="descname">naming_props</code><em class="property"> = set([u'name'])</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroup.naming_props" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroup.prop_map">
<code class="descname">prop_map</code><em class="property"> = {'dn': 'dn', 'adminPeak': 'admin_peak', 'curReqPower': 'cur_req_power', 'policyLevel': 'policy_level', 'name': 'name', 'descr': 'descr', 'qualifier': 'qualifier', 'realloc': 'realloc', 'fltAggr': 'flt_aggr', 'policyOwner': 'policy_owner', 'operState': 'oper_state', 'currentPower': 'current_power', 'operCommitted': 'oper_committed', 'status': 'status', 'minReqPower': 'min_req_power', 'operPeak': 'oper_peak', 'intId': 'int_id', 'rn': 'rn', 'adminCommitted': 'admin_committed', 'childAction': 'child_action'}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroup.prop_map" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroup.prop_meta">
<code class="descname">prop_meta</code><em class="property"> = {'cur_req_power': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79d24850>, 'dn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e50c10>, 'oper_peak': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e50150>, 'min_req_power': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e50690>, 'descr': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79d24990>, 'oper_committed': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e509d0>, 'current_power': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79d24810>, 'admin_committed': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79d24cd0>, 'flt_aggr': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e50a10>, 'qualifier': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e50590>, 'name': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e50f10>, 'status': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e50e50>, 'policy_owner': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e50350>, 'admin_peak': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79d24a10>, 'oper_state': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e505d0>, 'realloc': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e50110>, 'policy_level': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e50850>, 'rn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e50ad0>, 'int_id': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79e50810>, 'child_action': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79d24e50>}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroup.prop_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerGroup.</code><code class="descname">PowerGroupConsts</code><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerGroup.html#PowerGroupConsts"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts" title="Permalink to this definition">¶</a></dt>
<dd><dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.ADMIN_COMMITTED_UNBOUNDED">
<code class="descname">ADMIN_COMMITTED_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.ADMIN_COMMITTED_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.ADMIN_PEAK_UNBOUNDED">
<code class="descname">ADMIN_PEAK_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.ADMIN_PEAK_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.CURRENT_POWER_UNBOUNDED">
<code class="descname">CURRENT_POWER_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.CURRENT_POWER_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.CUR_REQ_POWER_UNBOUNDED">
<code class="descname">CUR_REQ_POWER_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.CUR_REQ_POWER_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.INT_ID_NONE">
<code class="descname">INT_ID_NONE</code><em class="property"> = 'none'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.INT_ID_NONE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.MIN_REQ_POWER_UNBOUNDED">
<code class="descname">MIN_REQ_POWER_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.MIN_REQ_POWER_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.OPER_COMMITTED_UNBOUNDED">
<code class="descname">OPER_COMMITTED_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.OPER_COMMITTED_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.OPER_PEAK_UNBOUNDED">
<code class="descname">OPER_PEAK_UNBOUNDED</code><em class="property"> = 'unbounded'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.OPER_PEAK_UNBOUNDED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.POLICY_OWNER_LOCAL">
<code class="descname">POLICY_OWNER_LOCAL</code><em class="property"> = 'local'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.POLICY_OWNER_LOCAL" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.POLICY_OWNER_PENDING_POLICY">
<code class="descname">POLICY_OWNER_PENDING_POLICY</code><em class="property"> = 'pending-policy'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.POLICY_OWNER_PENDING_POLICY" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.POLICY_OWNER_POLICY">
<code class="descname">POLICY_OWNER_POLICY</code><em class="property"> = 'policy'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.POLICY_OWNER_POLICY" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.POLICY_OWNER_UNSPECIFIED">
<code class="descname">POLICY_OWNER_UNSPECIFIED</code><em class="property"> = 'unspecified'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.POLICY_OWNER_UNSPECIFIED" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.REALLOC_CHASSIS">
<code class="descname">REALLOC_CHASSIS</code><em class="property"> = 'chassis'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.REALLOC_CHASSIS" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.REALLOC_NONE">
<code class="descname">REALLOC_NONE</code><em class="property"> = 'none'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroup.PowerGroupConsts.REALLOC_NONE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
</div>
<div class="section" id="module-ucscentralsdk.mometa.power.PowerGroupQual">
<span id="ucscentralsdk-mometa-power-powergroupqual-module"></span><h2>ucscentralsdk.mometa.power.PowerGroupQual module<a class="headerlink" href="#module-ucscentralsdk.mometa.power.PowerGroupQual" title="Permalink to this headline">¶</a></h2>
<p>This module contains the general information for PowerGroupQual ManagedObject.</p>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQual">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerGroupQual.</code><code class="descname">PowerGroupQual</code><span class="sig-paren">(</span><em>parent_mo_or_dn</em>, <em>group_name</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerGroupQual.html#PowerGroupQual"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQual" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <a class="reference internal" href="ucscentralsdk.html#ucscentralsdk.ucscentralmo.ManagedObject" title="ucscentralsdk.ucscentralmo.ManagedObject"><code class="xref py py-class docutils literal"><span class="pre">ucscentralsdk.ucscentralmo.ManagedObject</span></code></a></p>
<p>This is PowerGroupQual class.</p>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQual.consts">
<code class="descname">consts</code><em class="property"> = <ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQualConsts instance></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQual.consts" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQual.mo_meta">
<code class="descname">mo_meta</code><em class="property"> = <ucscentralsdk.ucscentralcoremeta.MoMeta object></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQual.mo_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQual.naming_props">
<code class="descname">naming_props</code><em class="property"> = set([u'groupName'])</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQual.naming_props" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQual.prop_map">
<code class="descname">prop_map</code><em class="property"> = {'dn': 'dn', 'groupName': 'group_name', 'rn': 'rn', 'status': 'status', 'childAction': 'child_action'}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQual.prop_map" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQual.prop_meta">
<code class="descname">prop_meta</code><em class="property"> = {'dn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75a4cb90>, 'status': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf2fd7b690>, 'rn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf2fd7b810>, 'group_name': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75a4cd90>, 'child_action': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf75a4c510>}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQual.prop_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQualConsts">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerGroupQual.</code><code class="descname">PowerGroupQualConsts</code><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerGroupQual.html#PowerGroupQualConsts"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupQual.PowerGroupQualConsts" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</div>
<div class="section" id="module-ucscentralsdk.mometa.power.PowerGroupStats">
<span id="ucscentralsdk-mometa-power-powergroupstats-module"></span><h2>ucscentralsdk.mometa.power.PowerGroupStats module<a class="headerlink" href="#module-ucscentralsdk.mometa.power.PowerGroupStats" title="Permalink to this headline">¶</a></h2>
<p>This module contains the general information for PowerGroupStats ManagedObject.</p>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStats">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerGroupStats.</code><code class="descname">PowerGroupStats</code><span class="sig-paren">(</span><em>parent_mo_or_dn</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerGroupStats.html#PowerGroupStats"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStats" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <a class="reference internal" href="ucscentralsdk.html#ucscentralsdk.ucscentralmo.ManagedObject" title="ucscentralsdk.ucscentralmo.ManagedObject"><code class="xref py py-class docutils literal"><span class="pre">ucscentralsdk.ucscentralmo.ManagedObject</span></code></a></p>
<p>This is PowerGroupStats class.</p>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStats.consts">
<code class="descname">consts</code><em class="property"> = <ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStatsConsts instance></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStats.consts" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStats.mo_meta">
<code class="descname">mo_meta</code><em class="property"> = <ucscentralsdk.ucscentralcoremeta.MoMeta object></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStats.mo_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStats.naming_props">
<code class="descname">naming_props</code><em class="property"> = set([])</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStats.naming_props" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStats.prop_map">
<code class="descname">prop_map</code><em class="property"> = {'dn': 'dn', 'statsReported': 'stats_reported', 'power': 'power', 'powerMin': 'power_min', 'normalizedTimeCol': 'normalized_time_col', 'update': 'update', 'intervals': 'intervals', 'timeCollected': 'time_collected', 'childAction': 'child_action', 'powerAvg': 'power_avg', 'thresholded': 'thresholded', 'status': 'status', 'powerMax': 'power_max', 'suspect': 'suspect', 'rn': 'rn'}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStats.prop_map" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStats.prop_meta">
<code class="descname">prop_meta</code><em class="property"> = {'dn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79ef9d10>, 'status': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf7a9452d0>, 'power': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79ef9610>, 'power_min': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf7a9459d0>, 'normalized_time_col': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79ef9710>, 'update': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf7a9455d0>, 'intervals': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79ef9cd0>, 'child_action': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79ef9c50>, 'power_avg': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf7a945450>, 'thresholded': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf7a9453d0>, 'stats_reported': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf7a945c90>, 'suspect': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf7a945290>, 'power_max': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf7a945190>, 'time_collected': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf7a945dd0>, 'rn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf7a9451d0>}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStats.prop_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStatsConsts">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerGroupStats.</code><code class="descname">PowerGroupStatsConsts</code><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerGroupStats.html#PowerGroupStatsConsts"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStatsConsts" title="Permalink to this definition">¶</a></dt>
<dd><dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStatsConsts.SUSPECT_FALSE">
<code class="descname">SUSPECT_FALSE</code><em class="property"> = 'false'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStatsConsts.SUSPECT_FALSE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStatsConsts.SUSPECT_NO">
<code class="descname">SUSPECT_NO</code><em class="property"> = 'no'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStatsConsts.SUSPECT_NO" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStatsConsts.SUSPECT_TRUE">
<code class="descname">SUSPECT_TRUE</code><em class="property"> = 'true'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStatsConsts.SUSPECT_TRUE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStatsConsts.SUSPECT_YES">
<code class="descname">SUSPECT_YES</code><em class="property"> = 'yes'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStats.PowerGroupStatsConsts.SUSPECT_YES" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
</div>
<div class="section" id="module-ucscentralsdk.mometa.power.PowerGroupStatsHist">
<span id="ucscentralsdk-mometa-power-powergroupstatshist-module"></span><h2>ucscentralsdk.mometa.power.PowerGroupStatsHist module<a class="headerlink" href="#module-ucscentralsdk.mometa.power.PowerGroupStatsHist" title="Permalink to this headline">¶</a></h2>
<p>This module contains the general information for PowerGroupStatsHist ManagedObject.</p>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHist">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerGroupStatsHist.</code><code class="descname">PowerGroupStatsHist</code><span class="sig-paren">(</span><em>parent_mo_or_dn</em>, <em>id</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerGroupStatsHist.html#PowerGroupStatsHist"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHist" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <a class="reference internal" href="ucscentralsdk.html#ucscentralsdk.ucscentralmo.ManagedObject" title="ucscentralsdk.ucscentralmo.ManagedObject"><code class="xref py py-class docutils literal"><span class="pre">ucscentralsdk.ucscentralmo.ManagedObject</span></code></a></p>
<p>This is PowerGroupStatsHist class.</p>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHist.consts">
<code class="descname">consts</code><em class="property"> = <ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts instance></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHist.consts" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHist.mo_meta">
<code class="descname">mo_meta</code><em class="property"> = <ucscentralsdk.ucscentralcoremeta.MoMeta object></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHist.mo_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHist.naming_props">
<code class="descname">naming_props</code><em class="property"> = set([u'id'])</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHist.naming_props" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHist.prop_map">
<code class="descname">prop_map</code><em class="property"> = {'dn': 'dn', 'status': 'status', 'power': 'power', 'powerMin': 'power_min', 'mostRecent': 'most_recent', 'id': 'id', 'childAction': 'child_action', 'powerAvg': 'power_avg', 'thresholded': 'thresholded', 'suspect': 'suspect', 'powerMax': 'power_max', 'timeCollected': 'time_collected', 'rn': 'rn'}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHist.prop_map" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHist.prop_meta">
<code class="descname">prop_meta</code><em class="property"> = {'dn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79c2fad0>, 'status': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79c2f710>, 'power': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79c2f150>, 'power_min': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79c2f5d0>, 'id': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79c2f990>, 'child_action': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79c2fd90>, 'thresholded': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79c2f650>, 'most_recent': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79c2f290>, 'power_avg': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79c2f0d0>, 'suspect': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79c2fc90>, 'power_max': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79c2ff50>, 'time_collected': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79c2f850>, 'rn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79c2ff10>}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHist.prop_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerGroupStatsHist.</code><code class="descname">PowerGroupStatsHistConsts</code><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerGroupStatsHist.html#PowerGroupStatsHistConsts"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts" title="Permalink to this definition">¶</a></dt>
<dd><dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.MOST_RECENT_FALSE">
<code class="descname">MOST_RECENT_FALSE</code><em class="property"> = 'false'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.MOST_RECENT_FALSE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.MOST_RECENT_NO">
<code class="descname">MOST_RECENT_NO</code><em class="property"> = 'no'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.MOST_RECENT_NO" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.MOST_RECENT_TRUE">
<code class="descname">MOST_RECENT_TRUE</code><em class="property"> = 'true'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.MOST_RECENT_TRUE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.MOST_RECENT_YES">
<code class="descname">MOST_RECENT_YES</code><em class="property"> = 'yes'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.MOST_RECENT_YES" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.SUSPECT_FALSE">
<code class="descname">SUSPECT_FALSE</code><em class="property"> = 'false'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.SUSPECT_FALSE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.SUSPECT_NO">
<code class="descname">SUSPECT_NO</code><em class="property"> = 'no'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.SUSPECT_NO" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.SUSPECT_TRUE">
<code class="descname">SUSPECT_TRUE</code><em class="property"> = 'true'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.SUSPECT_TRUE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.SUSPECT_YES">
<code class="descname">SUSPECT_YES</code><em class="property"> = 'yes'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerGroupStatsHist.PowerGroupStatsHistConsts.SUSPECT_YES" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
</div>
<div class="section" id="module-ucscentralsdk.mometa.power.PowerMgmtPolicy">
<span id="ucscentralsdk-mometa-power-powermgmtpolicy-module"></span><h2>ucscentralsdk.mometa.power.PowerMgmtPolicy module<a class="headerlink" href="#module-ucscentralsdk.mometa.power.PowerMgmtPolicy" title="Permalink to this headline">¶</a></h2>
<p>This module contains the general information for PowerMgmtPolicy ManagedObject.</p>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicy">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerMgmtPolicy.</code><code class="descname">PowerMgmtPolicy</code><span class="sig-paren">(</span><em>parent_mo_or_dn</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerMgmtPolicy.html#PowerMgmtPolicy"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicy" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <a class="reference internal" href="ucscentralsdk.html#ucscentralsdk.ucscentralmo.ManagedObject" title="ucscentralsdk.ucscentralmo.ManagedObject"><code class="xref py py-class docutils literal"><span class="pre">ucscentralsdk.ucscentralmo.ManagedObject</span></code></a></p>
<p>This is PowerMgmtPolicy class.</p>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicy.consts">
<code class="descname">consts</code><em class="property"> = <ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicyConsts instance></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicy.consts" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicy.mo_meta">
<code class="descname">mo_meta</code><em class="property"> = <ucscentralsdk.ucscentralcoremeta.MoMeta object></em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicy.mo_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicy.naming_props">
<code class="descname">naming_props</code><em class="property"> = set([])</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicy.naming_props" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicy.prop_map">
<code class="descname">prop_map</code><em class="property"> = {'dn': 'dn', 'status': 'status', 'style': 'style', 'policyLevel': 'policy_level', 'name': 'name', 'descr': 'descr', 'intId': 'int_id', 'rn': 'rn', 'policyOwner': 'policy_owner', 'childAction': 'child_action'}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicy.prop_map" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicy.prop_meta">
<code class="descname">prop_meta</code><em class="property"> = {'dn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79edfb90>, 'status': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79edfd50>, 'policy_owner': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79edf710>, 'name': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79edf290>, 'descr': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79edf9d0>, 'policy_level': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79edf550>, 'rn': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79edf450>, 'int_id': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79edf650>, 'style': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79edf990>, 'child_action': <ucscentralsdk.ucscentralcoremeta.MoPropertyMeta object at 0x2abf79edf3d0>}</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicy.prop_meta" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
<dl class="class">
<dt id="ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicyConsts">
<em class="property">class </em><code class="descclassname">ucscentralsdk.mometa.power.PowerMgmtPolicy.</code><code class="descname">PowerMgmtPolicyConsts</code><a class="reference internal" href="_modules/ucscentralsdk/mometa/power/PowerMgmtPolicy.html#PowerMgmtPolicyConsts"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicyConsts" title="Permalink to this definition">¶</a></dt>
<dd><dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicyConsts.INT_ID_NONE">
<code class="descname">INT_ID_NONE</code><em class="property"> = 'none'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicyConsts.INT_ID_NONE" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicyConsts.POLICY_OWNER_LOCAL">
<code class="descname">POLICY_OWNER_LOCAL</code><em class="property"> = 'local'</em><a class="headerlink" href="#ucscentralsdk.mometa.power.PowerMgmtPolicy.PowerMgmtPolicyConsts.POLICY_OWNER_LOCAL" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>