-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy pathazure.batch.models.BatchPoolResourceStatistics.yml
219 lines (202 loc) · 7.46 KB
/
azure.batch.models.BatchPoolResourceStatistics.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
### YamlMime:PythonClass
uid: azure.batch.models.BatchPoolResourceStatistics
name: BatchPoolResourceStatistics
fullName: azure.batch.models.BatchPoolResourceStatistics
module: azure.batch.models
summary: 'Statistics related to resource consumption by Compute Nodes in a Pool.
All required parameters must be populated in order to send to server.'
constructor:
syntax: 'BatchPoolResourceStatistics(*args: Any, **kwargs: Any)'
variables:
- description: The start time of the time range covered by the statistics. Required.
name: start_time
types:
- <xref:datetime.datetime>
- description: 'The time at which the statistics were last updated. All statistics
are
limited to the range between startTime and lastUpdateTime. Required.'
name: last_update_time
types:
- <xref:datetime.datetime>
- description: 'The average CPU usage across all Compute Nodes in the Pool
(percentage per node). Required.'
name: avg_cpu_percentage
types:
- <xref:float>
- description: 'The average memory usage in GiB across all Compute Nodes in the Pool.
Required.'
name: avg_memory_gi_b
types:
- <xref:float>
- description: 'The peak memory usage in GiB across all Compute Nodes in the Pool.
Required.'
name: peak_memory_gi_b
types:
- <xref:float>
- description: 'The average used disk space in GiB across all Compute Nodes in the
Pool.
Required.'
name: avg_disk_gi_b
types:
- <xref:float>
- description: 'The peak used disk space in GiB across all Compute Nodes in the Pool.
Required.'
name: peak_disk_gi_b
types:
- <xref:float>
- description: 'The total number of disk read operations across all Compute Nodes
in the
Pool. Required.'
name: disk_read_i_ops
types:
- <xref:int>
- description: 'The total number of disk write operations across all Compute Nodes
in
the Pool. Required.'
name: disk_write_i_ops
types:
- <xref:int>
- description: 'The total amount of data in GiB of disk reads across all Compute Nodes
in
the Pool. Required.'
name: disk_read_gi_b
types:
- <xref:float>
- description: 'The total amount of data in GiB of disk writes across all Compute
Nodes
in the Pool. Required.'
name: disk_write_gi_b
types:
- <xref:float>
- description: 'The total amount of data in GiB of network reads across all Compute
Nodes in the Pool. Required.'
name: network_read_gi_b
types:
- <xref:float>
- description: 'The total amount of data in GiB of network writes across all Compute
Nodes in the Pool. Required.'
name: network_write_gi_b
types:
- <xref:float>
methods:
- uid: azure.batch.models.BatchPoolResourceStatistics.as_dict
name: as_dict
summary: Return a dict that can be JSONify using json.dump.
signature: 'as_dict(*, exclude_readonly: bool = False) -> Dict[str, Any]'
keywordOnlyParameters:
- name: exclude_readonly
description: Whether to remove the readonly properties.
types:
- <xref:bool>
return:
description: A dict JSON compatible object
types:
- <xref:dict>
- uid: azure.batch.models.BatchPoolResourceStatistics.clear
name: clear
signature: clear() -> None
- uid: azure.batch.models.BatchPoolResourceStatistics.copy
name: copy
signature: copy() -> Model
- uid: azure.batch.models.BatchPoolResourceStatistics.get
name: get
signature: 'get(key: str, default: Any = None) -> Any'
parameters:
- name: key
isRequired: true
- name: default
defaultValue: None
- uid: azure.batch.models.BatchPoolResourceStatistics.items
name: items
signature: items() -> ItemsView[str, Any]
- uid: azure.batch.models.BatchPoolResourceStatistics.keys
name: keys
signature: keys() -> KeysView[str]
- uid: azure.batch.models.BatchPoolResourceStatistics.pop
name: pop
signature: 'pop(key: str, default: ~typing.Any = <object object>) -> Any'
parameters:
- name: key
isRequired: true
- name: default
- uid: azure.batch.models.BatchPoolResourceStatistics.popitem
name: popitem
signature: popitem() -> Tuple[str, Any]
- uid: azure.batch.models.BatchPoolResourceStatistics.setdefault
name: setdefault
signature: 'setdefault(key: str, default: ~typing.Any = <object object>) -> Any'
parameters:
- name: key
isRequired: true
- name: default
- uid: azure.batch.models.BatchPoolResourceStatistics.update
name: update
signature: 'update(*args: Any, **kwargs: Any) -> None'
- uid: azure.batch.models.BatchPoolResourceStatistics.values
name: values
signature: values() -> ValuesView[Any]
attributes:
- uid: azure.batch.models.BatchPoolResourceStatistics.avg_cpu_percentage
name: avg_cpu_percentage
summary: The average CPU usage across all Compute Nodes in the Pool (percentage
per node). Required.
signature: 'avg_cpu_percentage: float'
- uid: azure.batch.models.BatchPoolResourceStatistics.avg_disk_gi_b
name: avg_disk_gi_b
summary: The average used disk space in GiB across all Compute Nodes in the Pool.
Required.
signature: 'avg_disk_gi_b: float'
- uid: azure.batch.models.BatchPoolResourceStatistics.avg_memory_gi_b
name: avg_memory_gi_b
summary: The average memory usage in GiB across all Compute Nodes in the Pool. Required.
signature: 'avg_memory_gi_b: float'
- uid: azure.batch.models.BatchPoolResourceStatistics.disk_read_gi_b
name: disk_read_gi_b
summary: The total amount of data in GiB of disk reads across all Compute Nodes
in the Pool. Required.
signature: 'disk_read_gi_b: float'
- uid: azure.batch.models.BatchPoolResourceStatistics.disk_read_i_ops
name: disk_read_i_ops
summary: The total number of disk read operations across all Compute Nodes in the
Pool. Required.
signature: 'disk_read_i_ops: int'
- uid: azure.batch.models.BatchPoolResourceStatistics.disk_write_gi_b
name: disk_write_gi_b
summary: The total amount of data in GiB of disk writes across all Compute Nodes
in the Pool. Required.
signature: 'disk_write_gi_b: float'
- uid: azure.batch.models.BatchPoolResourceStatistics.disk_write_i_ops
name: disk_write_i_ops
summary: The total number of disk write operations across all Compute Nodes in the
Pool. Required.
signature: 'disk_write_i_ops: int'
- uid: azure.batch.models.BatchPoolResourceStatistics.last_update_time
name: last_update_time
summary: 'The time at which the statistics were last updated. All statistics are
limited to the range
between startTime and lastUpdateTime. Required.'
signature: 'last_update_time: datetime'
- uid: azure.batch.models.BatchPoolResourceStatistics.network_read_gi_b
name: network_read_gi_b
summary: 'The total amount of data in GiB of network reads across all Compute Nodes
in the Pool.
Required.'
signature: 'network_read_gi_b: float'
- uid: azure.batch.models.BatchPoolResourceStatistics.network_write_gi_b
name: network_write_gi_b
summary: 'The total amount of data in GiB of network writes across all Compute Nodes
in the Pool.
Required.'
signature: 'network_write_gi_b: float'
- uid: azure.batch.models.BatchPoolResourceStatistics.peak_disk_gi_b
name: peak_disk_gi_b
summary: The peak used disk space in GiB across all Compute Nodes in the Pool. Required.
signature: 'peak_disk_gi_b: float'
- uid: azure.batch.models.BatchPoolResourceStatistics.peak_memory_gi_b
name: peak_memory_gi_b
summary: The peak memory usage in GiB across all Compute Nodes in the Pool. Required.
signature: 'peak_memory_gi_b: float'
- uid: azure.batch.models.BatchPoolResourceStatistics.start_time
name: start_time
summary: The start time of the time range covered by the statistics. Required.
signature: 'start_time: datetime'