-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy pathazure.batch.models.BatchNodeError.yml
103 lines (99 loc) · 3.18 KB
/
azure.batch.models.BatchNodeError.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
### YamlMime:PythonClass
uid: azure.batch.models.BatchNodeError
name: BatchNodeError
fullName: azure.batch.models.BatchNodeError
module: azure.batch.models
summary: An error encountered by a Compute Node.
constructor:
syntax: 'BatchNodeError(*args: Any, **kwargs: Any)'
variables:
- description: 'An identifier for the Compute Node error. Codes are invariant and
are intended to
be consumed programmatically.'
name: code
types:
- <xref:str>
- description: 'A message describing the Compute Node error, intended to be suitable
for display
in a user interface.'
name: message
types:
- <xref:str>
- description: The list of additional error details related to the Compute Node error.
name: error_details
types:
- <xref:list>[<xref:azure.batch.models.NameValuePair>]
methods:
- uid: azure.batch.models.BatchNodeError.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.BatchNodeError.clear
name: clear
signature: clear() -> None
- uid: azure.batch.models.BatchNodeError.copy
name: copy
signature: copy() -> Model
- uid: azure.batch.models.BatchNodeError.get
name: get
signature: 'get(key: str, default: Any = None) -> Any'
parameters:
- name: key
isRequired: true
- name: default
defaultValue: None
- uid: azure.batch.models.BatchNodeError.items
name: items
signature: items() -> ItemsView[str, Any]
- uid: azure.batch.models.BatchNodeError.keys
name: keys
signature: keys() -> KeysView[str]
- uid: azure.batch.models.BatchNodeError.pop
name: pop
signature: 'pop(key: str, default: ~typing.Any = <object object>) -> Any'
parameters:
- name: key
isRequired: true
- name: default
- uid: azure.batch.models.BatchNodeError.popitem
name: popitem
signature: popitem() -> Tuple[str, Any]
- uid: azure.batch.models.BatchNodeError.setdefault
name: setdefault
signature: 'setdefault(key: str, default: ~typing.Any = <object object>) -> Any'
parameters:
- name: key
isRequired: true
- name: default
- uid: azure.batch.models.BatchNodeError.update
name: update
signature: 'update(*args: Any, **kwargs: Any) -> None'
- uid: azure.batch.models.BatchNodeError.values
name: values
signature: values() -> ValuesView[Any]
attributes:
- uid: azure.batch.models.BatchNodeError.code
name: code
summary: 'An identifier for the Compute Node error. Codes are invariant and are
intended to be consumed
programmatically.'
signature: 'code: str | None'
- uid: azure.batch.models.BatchNodeError.error_details
name: error_details
summary: The list of additional error details related to the Compute Node error.
signature: 'error_details: List[_models.NameValuePair] | None'
- uid: azure.batch.models.BatchNodeError.message
name: message
summary: 'A message describing the Compute Node error, intended to be suitable for
display in a user
interface.'
signature: 'message: str | None'