blob: 7be781c0bab75778634589011bbf2ae0bc3ddb06 [file] [log] [blame]
John Asmuth614db982014-04-24 15:46:26 -04001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="compute_v1.html">Compute Engine API</a> . <a href="compute_v1.addresses.html">addresses</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#aggregatedList">aggregatedList(project, maxResults=None, pageToken=None, filter=None)</a></code></p>
79<p class="firstline">Retrieves the list of addresses grouped by scope.</p>
80<p class="toc_element">
81 <code><a href="#aggregatedList_next">aggregatedList_next(previous_request, previous_response)</a></code></p>
82<p class="firstline">Retrieves the next page of results.</p>
83<p class="toc_element">
84 <code><a href="#delete">delete(project, region, address)</a></code></p>
85<p class="firstline">Deletes the specified address resource.</p>
86<p class="toc_element">
87 <code><a href="#get">get(project, region, address)</a></code></p>
88<p class="firstline">Returns the specified address resource.</p>
89<p class="toc_element">
90 <code><a href="#insert">insert(project, region, body)</a></code></p>
91<p class="firstline">Creates an address resource in the specified project using the data included in the request.</p>
92<p class="toc_element">
93 <code><a href="#list">list(project, region, maxResults=None, pageToken=None, filter=None)</a></code></p>
94<p class="firstline">Retrieves the list of address resources contained within the specified region.</p>
95<p class="toc_element">
96 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
97<p class="firstline">Retrieves the next page of results.</p>
98<h3>Method Details</h3>
99<div class="method">
100 <code class="details" id="aggregatedList">aggregatedList(project, maxResults=None, pageToken=None, filter=None)</code>
101 <pre>Retrieves the list of addresses grouped by scope.
102
103Args:
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000104 project: string, Project ID for this request. (required)
John Asmuth614db982014-04-24 15:46:26 -0400105 maxResults: integer, Optional. Maximum count of results to be returned. Maximum value is 500 and default value is 500.
106 pageToken: string, Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
107 filter: string, Optional. Filter expression for filtering listed resources.
108
109Returns:
110 An object of the form:
111
112 {
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000113 "nextPageToken": "A String", # [Output Only] A token used to continue a truncated list request.
114 "items": { # [Output Only] A map of scoped address lists.
115 "a_key": { # [Output Only] Name of the scope containing this set of addresses.
116 "warning": { # [Output Only] Informational warning which replaces the list of addresses when the list is empty.
117 "message": "A String", # [Output Only] Optional human-readable details for this warning.
118 "code": "A String", # [Output Only] The warning type identifier for this warning.
119 "data": [ # [Output Only] Metadata for this warning in key: value format.
John Asmuth614db982014-04-24 15:46:26 -0400120 {
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000121 "value": "A String", # [Output Only] A warning data value corresponding to the key.
122 "key": "A String", # [Output Only] A key for the warning data.
John Asmuth614db982014-04-24 15:46:26 -0400123 },
124 ],
125 },
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000126 "addresses": [ # [Output Only] List of addresses contained in this scope.
John Asmuth614db982014-04-24 15:46:26 -0400127 { # A reserved address resource.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000128 "status": "A String", # [Output Only] The status of the address, which can be either IN_USE or RESERVED. An address that is RESERVED is currently reserved and available to use. An IN_USE address is currently being used by another resource and is not available.
129 "kind": "compute#address", # [Output Only] Type of the resource. Always compute#address for addresses.
John Asmuth614db982014-04-24 15:46:26 -0400130 "description": "A String", # An optional textual description of the resource; provided by the client when the resource is created.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000131 "region": "A String", # [Output Only] URL of the region where the regional address resides. This field is not applicable to global addresses.
132 "address": "A String", # The static external IP address represented by this resource.
133 "users": [ # [Output Only] The URLs of the resources that are using this address.
John Asmuth614db982014-04-24 15:46:26 -0400134 "A String",
135 ],
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000136 "creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format.
137 "id": "A String", # [Output Only] Unique identifier for the resource; defined by the server.
138 "selfLink": "A String", # [Output Only] Server defined URL for the resource.
139 "name": "A String", # Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
John Asmuth614db982014-04-24 15:46:26 -0400140 },
141 ],
142 },
143 },
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000144 "kind": "compute#addressAggregatedList", # [Output Only] Type of resource. Always compute#addressAggregatedList for aggregated lists of addresses.
145 "id": "A String", # [Output Only] Unique identifier for the resource; defined by the server.
146 "selfLink": "A String", # [Output Only] Server defined URL for this resource.
John Asmuth614db982014-04-24 15:46:26 -0400147 }</pre>
148</div>
149
150<div class="method">
151 <code class="details" id="aggregatedList_next">aggregatedList_next(previous_request, previous_response)</code>
152 <pre>Retrieves the next page of results.
153
154Args:
155 previous_request: The request for the previous page. (required)
156 previous_response: The response from the request for the previous page. (required)
157
158Returns:
159 A request object that you can call 'execute()' on to request the next
160 page. Returns None if there are no more items in the collection.
161 </pre>
162</div>
163
164<div class="method">
165 <code class="details" id="delete">delete(project, region, address)</code>
166 <pre>Deletes the specified address resource.
167
168Args:
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000169 project: string, Project ID for this request. (required)
170 region: string, The name of the region for this request. (required)
John Asmuth614db982014-04-24 15:46:26 -0400171 address: string, Name of the address resource to delete. (required)
172
173Returns:
174 An object of the form:
175
176 { # An operation resource, used to manage asynchronous API requests.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000177 "targetId": "A String", # [Output Only] Unique target ID which identifies a particular incarnation of the target.
178 "clientOperationId": "A String", # [Output Only] An optional identifier specified by the client when the mutation was initiated. Must be unique for all operation resources in the project
179 "creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format.
Craig Citroe633be12015-03-02 13:40:36 -0800180 "id": "A String", # [Output Only] Unique identifier for the resource; defined by the server.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000181 "zone": "A String", # [Output Only] URL of the zone where the operation resides.
182 "operationType": "A String", # [Output Only] Type of the operation, such as insert, update, and delete.
183 "httpErrorMessage": "A String", # [Output Only] If the operation fails, this field contains the HTTP error message that was returned, such as NOT FOUND.
184 "progress": 42, # [Output Only] An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess at when the operation will be complete. This number should be monotonically increasing as the operation progresses.
185 "httpErrorStatusCode": 42, # [Output Only] If the operation fails, this field contains the HTTP error message that was returned, such as 404.
Craig Citroe633be12015-03-02 13:40:36 -0800186 "statusMessage": "A String", # [Output Only] An optional textual description of the current status of the operation.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000187 "status": "A String", # [Output Only] Status of the operation. Can be one of the following: PENDING, RUNNING, or DONE.
188 "insertTime": "A String", # [Output Only] The time that this operation was requested. This is in RFC3339 text format.
189 "warnings": [ # [Output Only] If warning messages are generated during processing of the operation, this field will be populated.
John Asmuth614db982014-04-24 15:46:26 -0400190 {
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000191 "message": "A String", # [Output Only] Optional human-readable details for this warning.
192 "code": "A String", # [Output Only] The warning type identifier for this warning.
193 "data": [ # [Output Only] Metadata for this warning in key: value format.
John Asmuth614db982014-04-24 15:46:26 -0400194 {
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000195 "value": "A String", # [Output Only] A warning data value corresponding to the key.
196 "key": "A String", # [Output Only] A key for the warning data.
John Asmuth614db982014-04-24 15:46:26 -0400197 },
198 ],
199 },
200 ],
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000201 "user": "A String", # [Output Only] User who requested the operation, for example: user@example.com.
202 "startTime": "A String", # [Output Only] The time that this operation was started by the server. This is in RFC3339 text format.
203 "kind": "compute#operation", # [Output Only] Type of the resource. Always compute#Operation for Operation resources.
204 "name": "A String", # [Output Only] Name of the resource.
205 "region": "A String", # [Output Only] URL of the region where the operation resides. Only applicable for regional resources.
206 "error": { # [Output Only] If errors are generated during processing of the operation, this field will be populated.
Craig Citroe633be12015-03-02 13:40:36 -0800207 "errors": [ # [Output Only] The array of errors encountered while processing this operation.
John Asmuth614db982014-04-24 15:46:26 -0400208 {
Craig Citroe633be12015-03-02 13:40:36 -0800209 "message": "A String", # [Output Only] An optional, human-readable error message.
210 "code": "A String", # [Output Only] The error type identifier for this error.
211 "location": "A String", # [Output Only] Indicates the field in the request which caused the error. This property is optional.
John Asmuth614db982014-04-24 15:46:26 -0400212 },
213 ],
214 },
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000215 "endTime": "A String", # [Output Only] The time that this operation was completed. This is in RFC3339 text format.
Craig Citroe633be12015-03-02 13:40:36 -0800216 "selfLink": "A String", # [Output Only] Server defined URL for the resource.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000217 "targetLink": "A String", # [Output Only] URL of the resource the operation is mutating.
John Asmuth614db982014-04-24 15:46:26 -0400218 }</pre>
219</div>
220
221<div class="method">
222 <code class="details" id="get">get(project, region, address)</code>
223 <pre>Returns the specified address resource.
224
225Args:
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000226 project: string, Project ID for this request. (required)
227 region: string, The name of the region for this request. (required)
John Asmuth614db982014-04-24 15:46:26 -0400228 address: string, Name of the address resource to return. (required)
229
230Returns:
231 An object of the form:
232
233 { # A reserved address resource.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000234 "status": "A String", # [Output Only] The status of the address, which can be either IN_USE or RESERVED. An address that is RESERVED is currently reserved and available to use. An IN_USE address is currently being used by another resource and is not available.
235 "kind": "compute#address", # [Output Only] Type of the resource. Always compute#address for addresses.
John Asmuth614db982014-04-24 15:46:26 -0400236 "description": "A String", # An optional textual description of the resource; provided by the client when the resource is created.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000237 "region": "A String", # [Output Only] URL of the region where the regional address resides. This field is not applicable to global addresses.
238 "address": "A String", # The static external IP address represented by this resource.
239 "users": [ # [Output Only] The URLs of the resources that are using this address.
John Asmuth614db982014-04-24 15:46:26 -0400240 "A String",
241 ],
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000242 "creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format.
243 "id": "A String", # [Output Only] Unique identifier for the resource; defined by the server.
244 "selfLink": "A String", # [Output Only] Server defined URL for the resource.
245 "name": "A String", # Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
John Asmuth614db982014-04-24 15:46:26 -0400246 }</pre>
247</div>
248
249<div class="method">
250 <code class="details" id="insert">insert(project, region, body)</code>
251 <pre>Creates an address resource in the specified project using the data included in the request.
252
253Args:
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000254 project: string, Project ID for this request. (required)
255 region: string, The name of the region for this request. (required)
John Asmuth614db982014-04-24 15:46:26 -0400256 body: object, The request body. (required)
257 The object takes the form of:
258
259{ # A reserved address resource.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000260 "status": "A String", # [Output Only] The status of the address, which can be either IN_USE or RESERVED. An address that is RESERVED is currently reserved and available to use. An IN_USE address is currently being used by another resource and is not available.
261 "kind": "compute#address", # [Output Only] Type of the resource. Always compute#address for addresses.
John Asmuth614db982014-04-24 15:46:26 -0400262 "description": "A String", # An optional textual description of the resource; provided by the client when the resource is created.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000263 "region": "A String", # [Output Only] URL of the region where the regional address resides. This field is not applicable to global addresses.
264 "address": "A String", # The static external IP address represented by this resource.
265 "users": [ # [Output Only] The URLs of the resources that are using this address.
John Asmuth614db982014-04-24 15:46:26 -0400266 "A String",
267 ],
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000268 "creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format.
269 "id": "A String", # [Output Only] Unique identifier for the resource; defined by the server.
270 "selfLink": "A String", # [Output Only] Server defined URL for the resource.
271 "name": "A String", # Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
John Asmuth614db982014-04-24 15:46:26 -0400272 }
273
274
275Returns:
276 An object of the form:
277
278 { # An operation resource, used to manage asynchronous API requests.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000279 "targetId": "A String", # [Output Only] Unique target ID which identifies a particular incarnation of the target.
280 "clientOperationId": "A String", # [Output Only] An optional identifier specified by the client when the mutation was initiated. Must be unique for all operation resources in the project
281 "creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format.
Craig Citroe633be12015-03-02 13:40:36 -0800282 "id": "A String", # [Output Only] Unique identifier for the resource; defined by the server.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000283 "zone": "A String", # [Output Only] URL of the zone where the operation resides.
284 "operationType": "A String", # [Output Only] Type of the operation, such as insert, update, and delete.
285 "httpErrorMessage": "A String", # [Output Only] If the operation fails, this field contains the HTTP error message that was returned, such as NOT FOUND.
286 "progress": 42, # [Output Only] An optional progress indicator that ranges from 0 to 100. There is no requirement that this be linear or support any granularity of operations. This should not be used to guess at when the operation will be complete. This number should be monotonically increasing as the operation progresses.
287 "httpErrorStatusCode": 42, # [Output Only] If the operation fails, this field contains the HTTP error message that was returned, such as 404.
Craig Citroe633be12015-03-02 13:40:36 -0800288 "statusMessage": "A String", # [Output Only] An optional textual description of the current status of the operation.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000289 "status": "A String", # [Output Only] Status of the operation. Can be one of the following: PENDING, RUNNING, or DONE.
290 "insertTime": "A String", # [Output Only] The time that this operation was requested. This is in RFC3339 text format.
291 "warnings": [ # [Output Only] If warning messages are generated during processing of the operation, this field will be populated.
John Asmuth614db982014-04-24 15:46:26 -0400292 {
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000293 "message": "A String", # [Output Only] Optional human-readable details for this warning.
294 "code": "A String", # [Output Only] The warning type identifier for this warning.
295 "data": [ # [Output Only] Metadata for this warning in key: value format.
John Asmuth614db982014-04-24 15:46:26 -0400296 {
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000297 "value": "A String", # [Output Only] A warning data value corresponding to the key.
298 "key": "A String", # [Output Only] A key for the warning data.
John Asmuth614db982014-04-24 15:46:26 -0400299 },
300 ],
301 },
302 ],
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000303 "user": "A String", # [Output Only] User who requested the operation, for example: user@example.com.
304 "startTime": "A String", # [Output Only] The time that this operation was started by the server. This is in RFC3339 text format.
305 "kind": "compute#operation", # [Output Only] Type of the resource. Always compute#Operation for Operation resources.
306 "name": "A String", # [Output Only] Name of the resource.
307 "region": "A String", # [Output Only] URL of the region where the operation resides. Only applicable for regional resources.
308 "error": { # [Output Only] If errors are generated during processing of the operation, this field will be populated.
Craig Citroe633be12015-03-02 13:40:36 -0800309 "errors": [ # [Output Only] The array of errors encountered while processing this operation.
John Asmuth614db982014-04-24 15:46:26 -0400310 {
Craig Citroe633be12015-03-02 13:40:36 -0800311 "message": "A String", # [Output Only] An optional, human-readable error message.
312 "code": "A String", # [Output Only] The error type identifier for this error.
313 "location": "A String", # [Output Only] Indicates the field in the request which caused the error. This property is optional.
John Asmuth614db982014-04-24 15:46:26 -0400314 },
315 ],
316 },
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000317 "endTime": "A String", # [Output Only] The time that this operation was completed. This is in RFC3339 text format.
Craig Citroe633be12015-03-02 13:40:36 -0800318 "selfLink": "A String", # [Output Only] Server defined URL for the resource.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000319 "targetLink": "A String", # [Output Only] URL of the resource the operation is mutating.
John Asmuth614db982014-04-24 15:46:26 -0400320 }</pre>
321</div>
322
323<div class="method">
324 <code class="details" id="list">list(project, region, maxResults=None, pageToken=None, filter=None)</code>
325 <pre>Retrieves the list of address resources contained within the specified region.
326
327Args:
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000328 project: string, Project ID for this request. (required)
329 region: string, The name of the region for this request. (required)
John Asmuth614db982014-04-24 15:46:26 -0400330 maxResults: integer, Optional. Maximum count of results to be returned. Maximum value is 500 and default value is 500.
331 pageToken: string, Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
332 filter: string, Optional. Filter expression for filtering listed resources.
333
334Returns:
335 An object of the form:
336
337 { # Contains a list of address resources.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000338 "nextPageToken": "A String", # [Output Only] A token used to continue a truncated list request.
339 "items": [ # [Output Only] A list of Address resources.
John Asmuth614db982014-04-24 15:46:26 -0400340 { # A reserved address resource.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000341 "status": "A String", # [Output Only] The status of the address, which can be either IN_USE or RESERVED. An address that is RESERVED is currently reserved and available to use. An IN_USE address is currently being used by another resource and is not available.
342 "kind": "compute#address", # [Output Only] Type of the resource. Always compute#address for addresses.
John Asmuth614db982014-04-24 15:46:26 -0400343 "description": "A String", # An optional textual description of the resource; provided by the client when the resource is created.
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000344 "region": "A String", # [Output Only] URL of the region where the regional address resides. This field is not applicable to global addresses.
345 "address": "A String", # The static external IP address represented by this resource.
346 "users": [ # [Output Only] The URLs of the resources that are using this address.
John Asmuth614db982014-04-24 15:46:26 -0400347 "A String",
348 ],
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000349 "creationTimestamp": "A String", # [Output Only] Creation timestamp in RFC3339 text format.
350 "id": "A String", # [Output Only] Unique identifier for the resource; defined by the server.
351 "selfLink": "A String", # [Output Only] Server defined URL for the resource.
352 "name": "A String", # Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
John Asmuth614db982014-04-24 15:46:26 -0400353 },
354 ],
Nathaniel Manista5cbe5ba2015-03-10 23:29:22 +0000355 "kind": "compute#addressList", # [Output Only] Type of resource. Always compute#addressList for lists of addresses.
356 "id": "A String", # [Output Only] Unique identifier for the resource; defined by the server.
357 "selfLink": "A String", # [Output Only] Server defined URL for the resource.
John Asmuth614db982014-04-24 15:46:26 -0400358 }</pre>
359</div>
360
361<div class="method">
362 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
363 <pre>Retrieves the next page of results.
364
365Args:
366 previous_request: The request for the previous page. (required)
367 previous_response: The response from the request for the previous page. (required)
368
369Returns:
370 A request object that you can call 'execute()' on to request the next
371 page. Returns None if there are no more items in the collection.
372 </pre>
373</div>
374
375</body></html>