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.cutoverJobs.html">cutoverJobs</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 cutover 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, cutoverJobId=None, requestId=None, x__xgafv=None)</a></code></p> 85<p class="firstline">Initiates a Cutover of a specific migrating VM. The returned LRO is completed when the cutover job resource is created and the job is initiated.</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 CutoverJob.</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 CutoverJobs 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 cutover job. 99 100Args: 101 name: string, Required. The cutover job id (required) 102 body: object, The request body. 103 The object takes the form of: 104 105{ # Request message for 'CancelCutoverJob' 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, cutoverJobId=None, requestId=None, x__xgafv=None)</code> 144 <pre>Initiates a Cutover of a specific migrating VM. The returned LRO is completed when the cutover job resource is created and the job is initiated. 145 146Args: 147 parent: string, Required. The Cutover's parent. (required) 148 body: object, The request body. 149 The object takes the form of: 150 151{ # CutoverJob message describes a cutover of a migrating VM. The CutoverJob is the operation of shutting down the VM, creating a snapshot and clonning the VM using the replicated snapshot. 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 cutover 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 Cutover 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", # Output only. The name of the cutover job. 213 "progressPercent": 42, # Output only. The current progress in percentage of the cutover job. 214 "state": "A String", # Output only. State of the cutover job. 215 "stateMessage": "A String", # Output only. A message providing possible extra details about the current state. 216 "stateTime": "A String", # Output only. The time the state was last updated. 217} 218 219 cutoverJobId: string, Required. The cutover job identifier. 220 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). 221 x__xgafv: string, V1 error format. 222 Allowed values 223 1 - v1 error format 224 2 - v2 error format 225 226Returns: 227 An object of the form: 228 229 { # This resource represents a long-running operation that is the result of a network API call. 230 "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. 231 "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. 232 "code": 42, # The status code, which should be an enum value of google.rpc.Code. 233 "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use. 234 { 235 "a_key": "", # Properties of the object. Contains field @type with type URL. 236 }, 237 ], 238 "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. 239 }, 240 "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. 241 "a_key": "", # Properties of the object. Contains field @type with type URL. 242 }, 243 "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}`. 244 "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`. 245 "a_key": "", # Properties of the object. Contains field @type with type URL. 246 }, 247}</pre> 248</div> 249 250<div class="method"> 251 <code class="details" id="get">get(name, x__xgafv=None)</code> 252 <pre>Gets details of a single CutoverJob. 253 254Args: 255 name: string, Required. The name of the CutoverJob. (required) 256 x__xgafv: string, V1 error format. 257 Allowed values 258 1 - v1 error format 259 2 - v2 error format 260 261Returns: 262 An object of the form: 263 264 { # CutoverJob message describes a cutover of a migrating VM. The CutoverJob is the operation of shutting down the VM, creating a snapshot and clonning the VM using the replicated snapshot. 265 "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. 266 "additionalLicenses": [ # Additional licenses to assign to the VM. 267 "A String", 268 ], 269 "appliedLicense": { # AppliedLicense holds the license data returned by adaptation module report. # The OS license returned from the adaptation module report. 270 "osLicense": "A String", # The OS license returned from the adaptation module's report. 271 "type": "A String", # The license type that was used in OS adaptation. 272 }, 273 "bootOption": "A String", # The VM Boot Option, as set in the source vm. 274 "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). 275 "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. 276 "nodeAffinities": [ # A set of node affinity and anti-affinity configurations for sole tenant nodes. 277 { # 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 278 "key": "A String", # The label key of Node resource to reference. 279 "operator": "A String", # The operator to use for the node resources specified in the `values` parameter. 280 "values": [ # Corresponds to the label values of Node resource. 281 "A String", 282 ], 283 }, 284 ], 285 "onHostMaintenance": "A String", # How the instance should behave when the host machine undergoes maintenance that may temporarily impact instance performance. 286 "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. 287 }, 288 "diskType": "A String", # The disk type to use in the VM. 289 "labels": { # A map of labels to associate with the VM. 290 "a_key": "A String", 291 }, 292 "licenseType": "A String", # The license type to use in OS adaptation. 293 "machineType": "A String", # The machine type to create the VM with. 294 "machineTypeSeries": "A String", # The machine type series to create the VM with. 295 "metadata": { # The metadata key/value pairs to assign to the VM. 296 "a_key": "A String", 297 }, 298 "networkInterfaces": [ # List of NICs connected to this VM. 299 { # NetworkInterface represents a NIC of a VM. 300 "externalIp": "A String", # The external IP to define in the NIC. 301 "internalIp": "A String", # The internal IP to define in the NIC. The formats accepted are: `ephemeral` \ ipv4 address \ a named address resource full path. 302 "network": "A String", # The network to connect the NIC to. 303 "subnetwork": "A String", # The subnetwork to connect the NIC to. 304 }, 305 ], 306 "networkTags": [ # A map of network tags to associate with the VM. 307 "A String", 308 ], 309 "project": "A String", # The GCP target project ID or project name. 310 "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. 311 "serviceAccount": "A String", # The service account to associate the VM with. 312 "vmName": "A String", # The name of the VM to create. 313 "zone": "A String", # The zone in which to create the VM. 314 }, 315 "createTime": "A String", # Output only. The time the cutover job was created (as an API call, not when it was actually created in the target). 316 "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 Cutover Job's state. 317 "code": 42, # The status code, which should be an enum value of google.rpc.Code. 318 "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use. 319 { 320 "a_key": "", # Properties of the object. Contains field @type with type URL. 321 }, 322 ], 323 "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. 324 }, 325 "name": "A String", # Output only. The name of the cutover job. 326 "progressPercent": 42, # Output only. The current progress in percentage of the cutover job. 327 "state": "A String", # Output only. State of the cutover job. 328 "stateMessage": "A String", # Output only. A message providing possible extra details about the current state. 329 "stateTime": "A String", # Output only. The time the state was last updated. 330}</pre> 331</div> 332 333<div class="method"> 334 <code class="details" id="list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code> 335 <pre>Lists CutoverJobs of a given migrating VM. 336 337Args: 338 parent: string, Required. The parent, which owns this collection of migrating VMs. (required) 339 filter: string, Optional. The filter request. 340 orderBy: string, Optional. the order by fields for the result. 341 pageSize: integer, Optional. The maximum number of cutover jobs to return. The service may return fewer than this value. If unspecified, at most 500 cutover jobs will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. 342 pageToken: string, Required. A page token, received from a previous `ListCutoverJobs` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListCutoverJobs` must match the call that provided the page token. 343 x__xgafv: string, V1 error format. 344 Allowed values 345 1 - v1 error format 346 2 - v2 error format 347 348Returns: 349 An object of the form: 350 351 { # Response message for 'ListCutoverJobs' request. 352 "cutoverJobs": [ # Output only. The list of cutover jobs response. 353 { # CutoverJob message describes a cutover of a migrating VM. The CutoverJob is the operation of shutting down the VM, creating a snapshot and clonning the VM using the replicated snapshot. 354 "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. 355 "additionalLicenses": [ # Additional licenses to assign to the VM. 356 "A String", 357 ], 358 "appliedLicense": { # AppliedLicense holds the license data returned by adaptation module report. # The OS license returned from the adaptation module report. 359 "osLicense": "A String", # The OS license returned from the adaptation module's report. 360 "type": "A String", # The license type that was used in OS adaptation. 361 }, 362 "bootOption": "A String", # The VM Boot Option, as set in the source vm. 363 "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). 364 "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. 365 "nodeAffinities": [ # A set of node affinity and anti-affinity configurations for sole tenant nodes. 366 { # 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 367 "key": "A String", # The label key of Node resource to reference. 368 "operator": "A String", # The operator to use for the node resources specified in the `values` parameter. 369 "values": [ # Corresponds to the label values of Node resource. 370 "A String", 371 ], 372 }, 373 ], 374 "onHostMaintenance": "A String", # How the instance should behave when the host machine undergoes maintenance that may temporarily impact instance performance. 375 "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. 376 }, 377 "diskType": "A String", # The disk type to use in the VM. 378 "labels": { # A map of labels to associate with the VM. 379 "a_key": "A String", 380 }, 381 "licenseType": "A String", # The license type to use in OS adaptation. 382 "machineType": "A String", # The machine type to create the VM with. 383 "machineTypeSeries": "A String", # The machine type series to create the VM with. 384 "metadata": { # The metadata key/value pairs to assign to the VM. 385 "a_key": "A String", 386 }, 387 "networkInterfaces": [ # List of NICs connected to this VM. 388 { # NetworkInterface represents a NIC of a VM. 389 "externalIp": "A String", # The external IP to define in the NIC. 390 "internalIp": "A String", # The internal IP to define in the NIC. The formats accepted are: `ephemeral` \ ipv4 address \ a named address resource full path. 391 "network": "A String", # The network to connect the NIC to. 392 "subnetwork": "A String", # The subnetwork to connect the NIC to. 393 }, 394 ], 395 "networkTags": [ # A map of network tags to associate with the VM. 396 "A String", 397 ], 398 "project": "A String", # The GCP target project ID or project name. 399 "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. 400 "serviceAccount": "A String", # The service account to associate the VM with. 401 "vmName": "A String", # The name of the VM to create. 402 "zone": "A String", # The zone in which to create the VM. 403 }, 404 "createTime": "A String", # Output only. The time the cutover job was created (as an API call, not when it was actually created in the target). 405 "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 Cutover Job's state. 406 "code": 42, # The status code, which should be an enum value of google.rpc.Code. 407 "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use. 408 { 409 "a_key": "", # Properties of the object. Contains field @type with type URL. 410 }, 411 ], 412 "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. 413 }, 414 "name": "A String", # Output only. The name of the cutover job. 415 "progressPercent": 42, # Output only. The current progress in percentage of the cutover job. 416 "state": "A String", # Output only. State of the cutover job. 417 "stateMessage": "A String", # Output only. A message providing possible extra details about the current state. 418 "stateTime": "A String", # Output only. The time the state was last updated. 419 }, 420 ], 421 "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. 422 "unreachable": [ # Output only. Locations that could not be reached. 423 "A String", 424 ], 425}</pre> 426</div> 427 428<div class="method"> 429 <code class="details" id="list_next">list_next(previous_request, previous_response)</code> 430 <pre>Retrieves the next page of results. 431 432Args: 433 previous_request: The request for the previous page. (required) 434 previous_response: The response from the request for the previous page. (required) 435 436Returns: 437 A request object that you can call 'execute()' on to request the next 438 page. Returns None if there are no more items in the collection. 439 </pre> 440</div> 441 442</body></html>