We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5873df commit 31d1418Copy full SHA for 31d1418
specification/ml/_types/DiscoveryNode.ts
@@ -20,11 +20,17 @@
20
import { Dictionary } from '@spec_utils/Dictionary'
21
import { Id, Name } from '@_types/common'
22
import { TransportAddress } from '@_types/Networking'
23
+import { integer } from '@_types/Numeric'
24
+import { VersionString } from '../../../output/typescript/types'
25
26
export class DiscoveryNode {
- attributes: Dictionary<string, string>
27
+ name?: Name
28
ephemeral_id: Id
- id: Id
- name: Name
29
transport_address: TransportAddress
30
+ external_id?: string
31
+ attributes?: Dictionary<string, string>
32
+ roles: string[]
33
+ version?: VersionString
34
+ min_index_version?: integer
35
+ max_index_version?: integer
36
}
0 commit comments