CmdbTypes Schema
ChunkRequest Complex Type
CmdbTypes Schema : ChunkRequest Complex Type

Glossary Item Box

Description

The data for a request to download a chunk
Namespace http://schemas.hp.com/ucmdb/1/types

Diagram

key2 Element key1 Element Sequence chunksKey Element numberOfChunks Element Sequence chunkInfo Element chunkNumber Element Sequence ChunkRequest Complex Type

Overview

ChunkRequest
The data for a request to download a chunk
Sequence
chunkNumber xs:int
Which chunk to bring, from 1 to the number of chunks
chunkInfo ChunkInfo Complex Type
The ChunkInfo data returned by the server in response to the query identifies the data from which the chunk is to be fetched
Sequence
numberOfChunks xs:int
How many chunks are there to be retrieved by the client
chunksKey ChunkKey Complex Type
The ID of the information stored on the server
Sequence
key1 xs:string
A string generated by the server
key2 xs:string
A string generated by the server

Used By

Source

<xs:complexType name="ChunkRequest" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>The data for a request to download a chunk</xs:documentation>
  </xs:annotation>
  <xs:sequence>
    <xs:element name="chunkNumber" type="xs:int">
      <xs:annotation>
        <xs:documentation>
                        Which chunk to bring, from 1 to the number of chunks
                    </xs:documentation>
      </xs:annotation>
    </xs:element>
    <xs:element name="chunkInfo" type="types:ChunkInfo">
      <xs:annotation>
        <xs:documentation>
                        The ChunkInfo data returned by the server in response to the query identifies the data from
                        which the chunk is to be fetched
                    </xs:documentation>
      </xs:annotation>
    </xs:element>
  </xs:sequence>
</xs:complexType>

See Also