1<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="vmmigration_v1.html">VM Migration API</a> . <a href="vmmigration_v1.projects.html">projects</a> . <a href="vmmigration_v1.projects.locations.html">locations</a> . <a href="vmmigration_v1.projects.locations.sources.html">sources</a> . <a href="vmmigration_v1.projects.locations.sources.migratingVms.html">migratingVms</a> . <a href="vmmigration_v1.projects.locations.sources.migratingVms.cloneJobs.html">cloneJobs</a></h1> 76<h2>Instance Methods</h2> 77<p class="toc_element"> 78 <code><a href="#cancel">cancel(name, body=None, x__xgafv=None)</a></code></p> 79<p class="firstline">Initiates the cancellation of a running clone job.</p> 80<p class="toc_element"> 81 <code><a href="#close">close()</a></code></p> 82<p class="firstline">Close httplib2 connections.</p> 83<p class="toc_element"> 84 <code><a href="#create">create(parent, body=None, cloneJobId=None, requestId=None, x__xgafv=None)</a></code></p> 85<p class="firstline">Initiates a Clone of a specific migrating VM.</p> 86<p class="toc_element"> 87 <code><a href="#get">get(name, x__xgafv=None)</a></code></p> 88<p class="firstline">Gets details of a single CloneJob.</p> 89<p class="toc_element"> 90 <code><a href="#list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p> 91<p class="firstline">Lists CloneJobs of a given migrating VM.</p> 92<p class="toc_element"> 93 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p> 94<p class="firstline">Retrieves the next page of results.</p> 95<h3>Method Details</h3> 96<div class="method"> 97 <code class="details" id="cancel">cancel(name, body=None, x__xgafv=None)</code> 98 <pre>Initiates the cancellation of a running clone job. 99 100Args: 101 name: string, Required. The clone job id (required) 102 body: object, The request body. 103 The object takes the form of: 104 105{ # Request message for 'CancelCloneJob' request. 106} 107 108 x__xgafv: string, V1 error format. 109 Allowed values 110 1 - v1 error format 111 2 - v2 error format 112 113Returns: 114 An object of the form: 115 116 { # This resource represents a long-running operation that is the result of a network API call. 117 "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. 118 "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation. 119 "code": 42, # The status code, which should be an enum value of google.rpc.Code. 120 "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use. 121 { 122 "a_key": "", # Properties of the object. Contains field @type with type URL. 123 }, 124 ], 125 "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. 126 }, 127 "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any. 128 "a_key": "", # Properties of the object. Contains field @type with type URL. 129 }, 130 "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`. 131 "response": { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. 132 "a_key": "", # Properties of the object. Contains field @type with type URL. 133 }, 134}</pre> 135</div> 136 137<div class="method"> 138 <code class="details" id="close">close()</code> 139 <pre>Close httplib2 connections.</pre> 140</div> 141 142<div class="method"> 143 <code class="details" id="create">create(parent, body=None, cloneJobId=None, requestId=None, x__xgafv=None)</code> 144 <pre>Initiates a Clone of a specific migrating VM. 145 146Args: 147 parent: string, Required. The Clone's parent. (required) 148 body: object, The request body. 149 The object takes the form of: 150 151{ # CloneJob describes the process of creating a clone of a MigratingVM to the requested target based on the latest successful uploaded snapshots. While the migration cycles of a MigratingVm take place, it is possible to verify the uploaded VM can be started in the cloud, by creating a clone. The clone can be created without any downtime, and it is created using the latest snapshots which are already in the cloud. The cloneJob is only responsible for its work, not its products, which means once it is finished, it will never touch the instance it created. It will only delete it in case of the CloneJob being cancelled or upon failure to clone. 152 "computeEngineTargetDetails": { # ComputeEngineTargetDetails is a collection of details for creating a VM in a target Compute Engine project. # Output only. Details of the target VM in Compute Engine. 153 "additionalLicenses": [ # Additional licenses to assign to the VM. 154 "A String", 155 ], 156 "appliedLicense": { # AppliedLicense holds the license data returned by adaptation module report. # The OS license returned from the adaptation module report. 157 "osLicense": "A String", # The OS license returned from the adaptation module's report. 158 "type": "A String", # The license type that was used in OS adaptation. 159 }, 160 "bootOption": "A String", # The VM Boot Option, as set in the source vm. 161 "computeScheduling": { # Scheduling information for VM on maintenance/restart behaviour and node allocation in sole tenant nodes. # Compute instance scheduling information (if empty default is used). 162 "minNodeCpus": 42, # The minimum number of virtual CPUs this instance will consume when running on a sole-tenant node. Ignored if no node_affinites are configured. 163 "nodeAffinities": [ # A set of node affinity and anti-affinity configurations for sole tenant nodes. 164 { # Node Affinity: the configuration of desired nodes onto which this Instance could be scheduled. Based on https://cloud.google.com/compute/docs/reference/rest/v1/instances/setScheduling 165 "key": "A String", # The label key of Node resource to reference. 166 "operator": "A String", # The operator to use for the node resources specified in the `values` parameter. 167 "values": [ # Corresponds to the label values of Node resource. 168 "A String", 169 ], 170 }, 171 ], 172 "onHostMaintenance": "A String", # How the instance should behave when the host machine undergoes maintenance that may temporarily impact instance performance. 173 "restartType": "A String", # Whether the Instance should be automatically restarted whenever it is terminated by Compute Engine (not terminated by user). This configuration is identical to `automaticRestart` field in Compute Engine create instance under scheduling. It was changed to an enum (instead of a boolean) to match the default value in Compute Engine which is automatic restart. 174 }, 175 "diskType": "A String", # The disk type to use in the VM. 176 "labels": { # A map of labels to associate with the VM. 177 "a_key": "A String", 178 }, 179 "licenseType": "A String", # The license type to use in OS adaptation. 180 "machineType": "A String", # The machine type to create the VM with. 181 "machineTypeSeries": "A String", # The machine type series to create the VM with. 182 "metadata": { # The metadata key/value pairs to assign to the VM. 183 "a_key": "A String", 184 }, 185 "networkInterfaces": [ # List of NICs connected to this VM. 186 { # NetworkInterface represents a NIC of a VM. 187 "externalIp": "A String", # The external IP to define in the NIC. 188 "internalIp": "A String", # The internal IP to define in the NIC. The formats accepted are: `ephemeral` \ ipv4 address \ a named address resource full path. 189 "network": "A String", # The network to connect the NIC to. 190 "subnetwork": "A String", # The subnetwork to connect the NIC to. 191 }, 192 ], 193 "networkTags": [ # A map of network tags to associate with the VM. 194 "A String", 195 ], 196 "project": "A String", # The GCP target project ID or project name. 197 "secureBoot": True or False, # Defines whether the instance has Secure Boot enabled. This can be set to true only if the vm boot option is EFI. 198 "serviceAccount": "A String", # The service account to associate the VM with. 199 "vmName": "A String", # The name of the VM to create. 200 "zone": "A String", # The zone in which to create the VM. 201 }, 202 "createTime": "A String", # Output only. The time the clone job was created (as an API call, not when it was actually created in the target). 203 "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # Output only. Provides details for the errors that led to the Clone Job's state. 204 "code": 42, # The status code, which should be an enum value of google.rpc.Code. 205 "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use. 206 { 207 "a_key": "", # Properties of the object. Contains field @type with type URL. 208 }, 209 ], 210 "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. 211 }, 212 "name": "A String", # The name of the clone. 213 "state": "A String", # Output only. State of the clone job. 214 "stateTime": "A String", # Output only. The time the state was last updated. 215} 216 217 cloneJobId: string, Required. The clone job identifier. 218 requestId: string, A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and t he request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). 219 x__xgafv: string, V1 error format. 220 Allowed values 221 1 - v1 error format 222 2 - v2 error format 223 224Returns: 225 An object of the form: 226 227 { # This resource represents a long-running operation that is the result of a network API call. 228 "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. 229 "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation. 230 "code": 42, # The status code, which should be an enum value of google.rpc.Code. 231 "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use. 232 { 233 "a_key": "", # Properties of the object. Contains field @type with type URL. 234 }, 235 ], 236 "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. 237 }, 238 "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any. 239 "a_key": "", # Properties of the object. Contains field @type with type URL. 240 }, 241 "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`. 242 "response": { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`. 243 "a_key": "", # Properties of the object. Contains field @type with type URL. 244 }, 245}</pre> 246</div> 247 248<div class="method"> 249 <code class="details" id="get">get(name, x__xgafv=None)</code> 250 <pre>Gets details of a single CloneJob. 251 252Args: 253 name: string, Required. The name of the CloneJob. (required) 254 x__xgafv: string, V1 error format. 255 Allowed values 256 1 - v1 error format 257 2 - v2 error format 258 259Returns: 260 An object of the form: 261 262 { # CloneJob describes the process of creating a clone of a MigratingVM to the requested target based on the latest successful uploaded snapshots. While the migration cycles of a MigratingVm take place, it is possible to verify the uploaded VM can be started in the cloud, by creating a clone. The clone can be created without any downtime, and it is created using the latest snapshots which are already in the cloud. The cloneJob is only responsible for its work, not its products, which means once it is finished, it will never touch the instance it created. It will only delete it in case of the CloneJob being cancelled or upon failure to clone. 263 "computeEngineTargetDetails": { # ComputeEngineTargetDetails is a collection of details for creating a VM in a target Compute Engine project. # Output only. Details of the target VM in Compute Engine. 264 "additionalLicenses": [ # Additional licenses to assign to the VM. 265 "A String", 266 ], 267 "appliedLicense": { # AppliedLicense holds the license data returned by adaptation module report. # The OS license returned from the adaptation module report. 268 "osLicense": "A String", # The OS license returned from the adaptation module's report. 269 "type": "A String", # The license type that was used in OS adaptation. 270 }, 271 "bootOption": "A String", # The VM Boot Option, as set in the source vm. 272 "computeScheduling": { # Scheduling information for VM on maintenance/restart behaviour and node allocation in sole tenant nodes. # Compute instance scheduling information (if empty default is used). 273 "minNodeCpus": 42, # The minimum number of virtual CPUs this instance will consume when running on a sole-tenant node. Ignored if no node_affinites are configured. 274 "nodeAffinities": [ # A set of node affinity and anti-affinity configurations for sole tenant nodes. 275 { # Node Affinity: the configuration of desired nodes onto which this Instance could be scheduled. Based on https://cloud.google.com/compute/docs/reference/rest/v1/instances/setScheduling 276 "key": "A String", # The label key of Node resource to reference. 277 "operator": "A String", # The operator to use for the node resources specified in the `values` parameter. 278 "values": [ # Corresponds to the label values of Node resource. 279 "A String", 280 ], 281 }, 282 ], 283 "onHostMaintenance": "A String", # How the instance should behave when the host machine undergoes maintenance that may temporarily impact instance performance. 284 "restartType": "A String", # Whether the Instance should be automatically restarted whenever it is terminated by Compute Engine (not terminated by user). This configuration is identical to `automaticRestart` field in Compute Engine create instance under scheduling. It was changed to an enum (instead of a boolean) to match the default value in Compute Engine which is automatic restart. 285 }, 286 "diskType": "A String", # The disk type to use in the VM. 287 "labels": { # A map of labels to associate with the VM. 288 "a_key": "A String", 289 }, 290 "licenseType": "A String", # The license type to use in OS adaptation. 291 "machineType": "A String", # The machine type to create the VM with. 292 "machineTypeSeries": "A String", # The machine type series to create the VM with. 293 "metadata": { # The metadata key/value pairs to assign to the VM. 294 "a_key": "A String", 295 }, 296 "networkInterfaces": [ # List of NICs connected to this VM. 297 { # NetworkInterface represents a NIC of a VM. 298 "externalIp": "A String", # The external IP to define in the NIC. 299 "internalIp": "A String", # The internal IP to define in the NIC. The formats accepted are: `ephemeral` \ ipv4 address \ a named address resource full path. 300 "network": "A String", # The network to connect the NIC to. 301 "subnetwork": "A String", # The subnetwork to connect the NIC to. 302 }, 303 ], 304 "networkTags": [ # A map of network tags to associate with the VM. 305 "A String", 306 ], 307 "project": "A String", # The GCP target project ID or project name. 308 "secureBoot": True or False, # Defines whether the instance has Secure Boot enabled. This can be set to true only if the vm boot option is EFI. 309 "serviceAccount": "A String", # The service account to associate the VM with. 310 "vmName": "A String", # The name of the VM to create. 311 "zone": "A String", # The zone in which to create the VM. 312 }, 313 "createTime": "A String", # Output only. The time the clone job was created (as an API call, not when it was actually created in the target). 314 "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # Output only. Provides details for the errors that led to the Clone Job's state. 315 "code": 42, # The status code, which should be an enum value of google.rpc.Code. 316 "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use. 317 { 318 "a_key": "", # Properties of the object. Contains field @type with type URL. 319 }, 320 ], 321 "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. 322 }, 323 "name": "A String", # The name of the clone. 324 "state": "A String", # Output only. State of the clone job. 325 "stateTime": "A String", # Output only. The time the state was last updated. 326}</pre> 327</div> 328 329<div class="method"> 330 <code class="details" id="list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code> 331 <pre>Lists CloneJobs of a given migrating VM. 332 333Args: 334 parent: string, Required. The parent, which owns this collection of source VMs. (required) 335 filter: string, Optional. The filter request. 336 orderBy: string, Optional. the order by fields for the result. 337 pageSize: integer, Optional. The maximum number of clone jobs to return. The service may return fewer than this value. If unspecified, at most 500 clone jobs will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. 338 pageToken: string, Required. A page token, received from a previous `ListCloneJobs` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListCloneJobs` must match the call that provided the page token. 339 x__xgafv: string, V1 error format. 340 Allowed values 341 1 - v1 error format 342 2 - v2 error format 343 344Returns: 345 An object of the form: 346 347 { # Response message for 'ListCloneJobs' request. 348 "cloneJobs": [ # Output only. The list of clone jobs response. 349 { # CloneJob describes the process of creating a clone of a MigratingVM to the requested target based on the latest successful uploaded snapshots. While the migration cycles of a MigratingVm take place, it is possible to verify the uploaded VM can be started in the cloud, by creating a clone. The clone can be created without any downtime, and it is created using the latest snapshots which are already in the cloud. The cloneJob is only responsible for its work, not its products, which means once it is finished, it will never touch the instance it created. It will only delete it in case of the CloneJob being cancelled or upon failure to clone. 350 "computeEngineTargetDetails": { # ComputeEngineTargetDetails is a collection of details for creating a VM in a target Compute Engine project. # Output only. Details of the target VM in Compute Engine. 351 "additionalLicenses": [ # Additional licenses to assign to the VM. 352 "A String", 353 ], 354 "appliedLicense": { # AppliedLicense holds the license data returned by adaptation module report. # The OS license returned from the adaptation module report. 355 "osLicense": "A String", # The OS license returned from the adaptation module's report. 356 "type": "A String", # The license type that was used in OS adaptation. 357 }, 358 "bootOption": "A String", # The VM Boot Option, as set in the source vm. 359 "computeScheduling": { # Scheduling information for VM on maintenance/restart behaviour and node allocation in sole tenant nodes. # Compute instance scheduling information (if empty default is used). 360 "minNodeCpus": 42, # The minimum number of virtual CPUs this instance will consume when running on a sole-tenant node. Ignored if no node_affinites are configured. 361 "nodeAffinities": [ # A set of node affinity and anti-affinity configurations for sole tenant nodes. 362 { # Node Affinity: the configuration of desired nodes onto which this Instance could be scheduled. Based on https://cloud.google.com/compute/docs/reference/rest/v1/instances/setScheduling 363 "key": "A String", # The label key of Node resource to reference. 364 "operator": "A String", # The operator to use for the node resources specified in the `values` parameter. 365 "values": [ # Corresponds to the label values of Node resource. 366 "A String", 367 ], 368 }, 369 ], 370 "onHostMaintenance": "A String", # How the instance should behave when the host machine undergoes maintenance that may temporarily impact instance performance. 371 "restartType": "A String", # Whether the Instance should be automatically restarted whenever it is terminated by Compute Engine (not terminated by user). This configuration is identical to `automaticRestart` field in Compute Engine create instance under scheduling. It was changed to an enum (instead of a boolean) to match the default value in Compute Engine which is automatic restart. 372 }, 373 "diskType": "A String", # The disk type to use in the VM. 374 "labels": { # A map of labels to associate with the VM. 375 "a_key": "A String", 376 }, 377 "licenseType": "A String", # The license type to use in OS adaptation. 378 "machineType": "A String", # The machine type to create the VM with. 379 "machineTypeSeries": "A String", # The machine type series to create the VM with. 380 "metadata": { # The metadata key/value pairs to assign to the VM. 381 "a_key": "A String", 382 }, 383 "networkInterfaces": [ # List of NICs connected to this VM. 384 { # NetworkInterface represents a NIC of a VM. 385 "externalIp": "A String", # The external IP to define in the NIC. 386 "internalIp": "A String", # The internal IP to define in the NIC. The formats accepted are: `ephemeral` \ ipv4 address \ a named address resource full path. 387 "network": "A String", # The network to connect the NIC to. 388 "subnetwork": "A String", # The subnetwork to connect the NIC to. 389 }, 390 ], 391 "networkTags": [ # A map of network tags to associate with the VM. 392 "A String", 393 ], 394 "project": "A String", # The GCP target project ID or project name. 395 "secureBoot": True or False, # Defines whether the instance has Secure Boot enabled. This can be set to true only if the vm boot option is EFI. 396 "serviceAccount": "A String", # The service account to associate the VM with. 397 "vmName": "A String", # The name of the VM to create. 398 "zone": "A String", # The zone in which to create the VM. 399 }, 400 "createTime": "A String", # Output only. The time the clone job was created (as an API call, not when it was actually created in the target). 401 "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # Output only. Provides details for the errors that led to the Clone Job's state. 402 "code": 42, # The status code, which should be an enum value of google.rpc.Code. 403 "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use. 404 { 405 "a_key": "", # Properties of the object. Contains field @type with type URL. 406 }, 407 ], 408 "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. 409 }, 410 "name": "A String", # The name of the clone. 411 "state": "A String", # Output only. State of the clone job. 412 "stateTime": "A String", # Output only. The time the state was last updated. 413 }, 414 ], 415 "nextPageToken": "A String", # Output only. A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. 416 "unreachable": [ # Output only. Locations that could not be reached. 417 "A String", 418 ], 419}</pre> 420</div> 421 422<div class="method"> 423 <code class="details" id="list_next">list_next(previous_request, previous_response)</code> 424 <pre>Retrieves the next page of results. 425 426Args: 427 previous_request: The request for the previous page. (required) 428 previous_response: The response from the request for the previous page. (required) 429 430Returns: 431 A request object that you can call 'execute()' on to request the next 432 page. Returns None if there are no more items in the collection. 433 </pre> 434</div> 435 436</body></html>