-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy pathazure.batch.models.BatchNodeAgentInfo.yml
110 lines (100 loc) · 3.67 KB
/
azure.batch.models.BatchNodeAgentInfo.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
### YamlMime:PythonClass
uid: azure.batch.models.BatchNodeAgentInfo
name: BatchNodeAgentInfo
fullName: azure.batch.models.BatchNodeAgentInfo
module: azure.batch.models
summary: 'The Batch Compute Node agent is a program that runs on each Compute Node
in the
Pool and provides Batch capability on the Compute Node.
All required parameters must be populated in order to send to server.'
constructor:
syntax: 'BatchNodeAgentInfo(*args: Any, **kwargs: Any)'
variables:
- description: 'The version of the Batch Compute Node agent running on the Compute
Node. This
version number can be checked against the Compute Node agent release notes located
at
[https://github.com/Azure/Batch/blob/master/changelogs/nodeagent/CHANGELOG.md](https://github.com/Azure/Batch/blob/master/changelogs/nodeagent/CHANGELOG.md).
Required.'
name: version
types:
- <xref:str>
- description: 'The time when the Compute Node agent was updated on the Compute Node.
This is the most recent time that the Compute Node agent was updated to a new
version.
Required.'
name: last_update_time
types:
- <xref:datetime.datetime>
methods:
- uid: azure.batch.models.BatchNodeAgentInfo.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.BatchNodeAgentInfo.clear
name: clear
signature: clear() -> None
- uid: azure.batch.models.BatchNodeAgentInfo.copy
name: copy
signature: copy() -> Model
- uid: azure.batch.models.BatchNodeAgentInfo.get
name: get
signature: 'get(key: str, default: Any = None) -> Any'
parameters:
- name: key
isRequired: true
- name: default
defaultValue: None
- uid: azure.batch.models.BatchNodeAgentInfo.items
name: items
signature: items() -> ItemsView[str, Any]
- uid: azure.batch.models.BatchNodeAgentInfo.keys
name: keys
signature: keys() -> KeysView[str]
- uid: azure.batch.models.BatchNodeAgentInfo.pop
name: pop
signature: 'pop(key: str, default: ~typing.Any = <object object>) -> Any'
parameters:
- name: key
isRequired: true
- name: default
- uid: azure.batch.models.BatchNodeAgentInfo.popitem
name: popitem
signature: popitem() -> Tuple[str, Any]
- uid: azure.batch.models.BatchNodeAgentInfo.setdefault
name: setdefault
signature: 'setdefault(key: str, default: ~typing.Any = <object object>) -> Any'
parameters:
- name: key
isRequired: true
- name: default
- uid: azure.batch.models.BatchNodeAgentInfo.update
name: update
signature: 'update(*args: Any, **kwargs: Any) -> None'
- uid: azure.batch.models.BatchNodeAgentInfo.values
name: values
signature: values() -> ValuesView[Any]
attributes:
- uid: azure.batch.models.BatchNodeAgentInfo.last_update_time
name: last_update_time
summary: 'The time when the Compute Node agent was updated on the Compute Node.
This is the most recent
time that the Compute Node agent was updated to a new version. Required.'
signature: 'last_update_time: datetime'
- uid: azure.batch.models.BatchNodeAgentInfo.version
name: version
summary: 'The version of the Batch Compute Node agent running on the Compute Node.
This version number
can be checked against the Compute Node agent release notes located at
[https://github.com/Azure/Batch/blob/master/changelogs/nodeagent/CHANGELOG.md](https://github.com/Azure/Batch/blob/master/changelogs/nodeagent/CHANGELOG.md).
Required.'
signature: 'version: str'