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 &#x27;CancelCloneJob&#x27; 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  &quot;done&quot;: 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  &quot;error&quot;: { # 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    &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
120    &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
121      {
122        &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
123      },
124    ],
125    &quot;message&quot;: &quot;A String&quot;, # 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  &quot;metadata&quot;: { # 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    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
129  },
130  &quot;name&quot;: &quot;A String&quot;, # 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  &quot;response&quot;: { # 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    &quot;a_key&quot;: &quot;&quot;, # 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&#x27;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  &quot;computeEngineTargetDetails&quot;: { # 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    &quot;additionalLicenses&quot;: [ # Additional licenses to assign to the VM.
154      &quot;A String&quot;,
155    ],
156    &quot;appliedLicense&quot;: { # AppliedLicense holds the license data returned by adaptation module report. # The OS license returned from the adaptation module report.
157      &quot;osLicense&quot;: &quot;A String&quot;, # The OS license returned from the adaptation module&#x27;s report.
158      &quot;type&quot;: &quot;A String&quot;, # The license type that was used in OS adaptation.
159    },
160    &quot;bootOption&quot;: &quot;A String&quot;, # The VM Boot Option, as set in the source vm.
161    &quot;computeScheduling&quot;: { # 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      &quot;minNodeCpus&quot;: 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      &quot;nodeAffinities&quot;: [ # 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          &quot;key&quot;: &quot;A String&quot;, # The label key of Node resource to reference.
166          &quot;operator&quot;: &quot;A String&quot;, # The operator to use for the node resources specified in the `values` parameter.
167          &quot;values&quot;: [ # Corresponds to the label values of Node resource.
168            &quot;A String&quot;,
169          ],
170        },
171      ],
172      &quot;onHostMaintenance&quot;: &quot;A String&quot;, # How the instance should behave when the host machine undergoes maintenance that may temporarily impact instance performance.
173      &quot;restartType&quot;: &quot;A String&quot;, # 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    &quot;diskType&quot;: &quot;A String&quot;, # The disk type to use in the VM.
176    &quot;labels&quot;: { # A map of labels to associate with the VM.
177      &quot;a_key&quot;: &quot;A String&quot;,
178    },
179    &quot;licenseType&quot;: &quot;A String&quot;, # The license type to use in OS adaptation.
180    &quot;machineType&quot;: &quot;A String&quot;, # The machine type to create the VM with.
181    &quot;machineTypeSeries&quot;: &quot;A String&quot;, # The machine type series to create the VM with.
182    &quot;metadata&quot;: { # The metadata key/value pairs to assign to the VM.
183      &quot;a_key&quot;: &quot;A String&quot;,
184    },
185    &quot;networkInterfaces&quot;: [ # List of NICs connected to this VM.
186      { # NetworkInterface represents a NIC of a VM.
187        &quot;externalIp&quot;: &quot;A String&quot;, # The external IP to define in the NIC.
188        &quot;internalIp&quot;: &quot;A String&quot;, # The internal IP to define in the NIC. The formats accepted are: `ephemeral` \ ipv4 address \ a named address resource full path.
189        &quot;network&quot;: &quot;A String&quot;, # The network to connect the NIC to.
190        &quot;subnetwork&quot;: &quot;A String&quot;, # The subnetwork to connect the NIC to.
191      },
192    ],
193    &quot;networkTags&quot;: [ # A map of network tags to associate with the VM.
194      &quot;A String&quot;,
195    ],
196    &quot;project&quot;: &quot;A String&quot;, # The GCP target project ID or project name.
197    &quot;secureBoot&quot;: 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    &quot;serviceAccount&quot;: &quot;A String&quot;, # The service account to associate the VM with.
199    &quot;vmName&quot;: &quot;A String&quot;, # The name of the VM to create.
200    &quot;zone&quot;: &quot;A String&quot;, # The zone in which to create the VM.
201  },
202  &quot;createTime&quot;: &quot;A String&quot;, # Output only. The time the clone job was created (as an API call, not when it was actually created in the target).
203  &quot;error&quot;: { # 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&#x27;s state.
204    &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
205    &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
206      {
207        &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
208      },
209    ],
210    &quot;message&quot;: &quot;A String&quot;, # 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  &quot;name&quot;: &quot;A String&quot;, # The name of the clone.
213  &quot;state&quot;: &quot;A String&quot;, # Output only. State of the clone job.
214  &quot;stateTime&quot;: &quot;A String&quot;, # 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  &quot;done&quot;: 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  &quot;error&quot;: { # 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    &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
231    &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
232      {
233        &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
234      },
235    ],
236    &quot;message&quot;: &quot;A String&quot;, # 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  &quot;metadata&quot;: { # 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    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
240  },
241  &quot;name&quot;: &quot;A String&quot;, # 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  &quot;response&quot;: { # 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    &quot;a_key&quot;: &quot;&quot;, # 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  &quot;computeEngineTargetDetails&quot;: { # 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    &quot;additionalLicenses&quot;: [ # Additional licenses to assign to the VM.
265      &quot;A String&quot;,
266    ],
267    &quot;appliedLicense&quot;: { # AppliedLicense holds the license data returned by adaptation module report. # The OS license returned from the adaptation module report.
268      &quot;osLicense&quot;: &quot;A String&quot;, # The OS license returned from the adaptation module&#x27;s report.
269      &quot;type&quot;: &quot;A String&quot;, # The license type that was used in OS adaptation.
270    },
271    &quot;bootOption&quot;: &quot;A String&quot;, # The VM Boot Option, as set in the source vm.
272    &quot;computeScheduling&quot;: { # 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      &quot;minNodeCpus&quot;: 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      &quot;nodeAffinities&quot;: [ # 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          &quot;key&quot;: &quot;A String&quot;, # The label key of Node resource to reference.
277          &quot;operator&quot;: &quot;A String&quot;, # The operator to use for the node resources specified in the `values` parameter.
278          &quot;values&quot;: [ # Corresponds to the label values of Node resource.
279            &quot;A String&quot;,
280          ],
281        },
282      ],
283      &quot;onHostMaintenance&quot;: &quot;A String&quot;, # How the instance should behave when the host machine undergoes maintenance that may temporarily impact instance performance.
284      &quot;restartType&quot;: &quot;A String&quot;, # 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    &quot;diskType&quot;: &quot;A String&quot;, # The disk type to use in the VM.
287    &quot;labels&quot;: { # A map of labels to associate with the VM.
288      &quot;a_key&quot;: &quot;A String&quot;,
289    },
290    &quot;licenseType&quot;: &quot;A String&quot;, # The license type to use in OS adaptation.
291    &quot;machineType&quot;: &quot;A String&quot;, # The machine type to create the VM with.
292    &quot;machineTypeSeries&quot;: &quot;A String&quot;, # The machine type series to create the VM with.
293    &quot;metadata&quot;: { # The metadata key/value pairs to assign to the VM.
294      &quot;a_key&quot;: &quot;A String&quot;,
295    },
296    &quot;networkInterfaces&quot;: [ # List of NICs connected to this VM.
297      { # NetworkInterface represents a NIC of a VM.
298        &quot;externalIp&quot;: &quot;A String&quot;, # The external IP to define in the NIC.
299        &quot;internalIp&quot;: &quot;A String&quot;, # The internal IP to define in the NIC. The formats accepted are: `ephemeral` \ ipv4 address \ a named address resource full path.
300        &quot;network&quot;: &quot;A String&quot;, # The network to connect the NIC to.
301        &quot;subnetwork&quot;: &quot;A String&quot;, # The subnetwork to connect the NIC to.
302      },
303    ],
304    &quot;networkTags&quot;: [ # A map of network tags to associate with the VM.
305      &quot;A String&quot;,
306    ],
307    &quot;project&quot;: &quot;A String&quot;, # The GCP target project ID or project name.
308    &quot;secureBoot&quot;: 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    &quot;serviceAccount&quot;: &quot;A String&quot;, # The service account to associate the VM with.
310    &quot;vmName&quot;: &quot;A String&quot;, # The name of the VM to create.
311    &quot;zone&quot;: &quot;A String&quot;, # The zone in which to create the VM.
312  },
313  &quot;createTime&quot;: &quot;A String&quot;, # Output only. The time the clone job was created (as an API call, not when it was actually created in the target).
314  &quot;error&quot;: { # 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&#x27;s state.
315    &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
316    &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
317      {
318        &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
319      },
320    ],
321    &quot;message&quot;: &quot;A String&quot;, # 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  &quot;name&quot;: &quot;A String&quot;, # The name of the clone.
324  &quot;state&quot;: &quot;A String&quot;, # Output only. State of the clone job.
325  &quot;stateTime&quot;: &quot;A String&quot;, # 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 &#x27;ListCloneJobs&#x27; request.
348  &quot;cloneJobs&quot;: [ # 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      &quot;computeEngineTargetDetails&quot;: { # 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        &quot;additionalLicenses&quot;: [ # Additional licenses to assign to the VM.
352          &quot;A String&quot;,
353        ],
354        &quot;appliedLicense&quot;: { # AppliedLicense holds the license data returned by adaptation module report. # The OS license returned from the adaptation module report.
355          &quot;osLicense&quot;: &quot;A String&quot;, # The OS license returned from the adaptation module&#x27;s report.
356          &quot;type&quot;: &quot;A String&quot;, # The license type that was used in OS adaptation.
357        },
358        &quot;bootOption&quot;: &quot;A String&quot;, # The VM Boot Option, as set in the source vm.
359        &quot;computeScheduling&quot;: { # 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          &quot;minNodeCpus&quot;: 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          &quot;nodeAffinities&quot;: [ # 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              &quot;key&quot;: &quot;A String&quot;, # The label key of Node resource to reference.
364              &quot;operator&quot;: &quot;A String&quot;, # The operator to use for the node resources specified in the `values` parameter.
365              &quot;values&quot;: [ # Corresponds to the label values of Node resource.
366                &quot;A String&quot;,
367              ],
368            },
369          ],
370          &quot;onHostMaintenance&quot;: &quot;A String&quot;, # How the instance should behave when the host machine undergoes maintenance that may temporarily impact instance performance.
371          &quot;restartType&quot;: &quot;A String&quot;, # 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        &quot;diskType&quot;: &quot;A String&quot;, # The disk type to use in the VM.
374        &quot;labels&quot;: { # A map of labels to associate with the VM.
375          &quot;a_key&quot;: &quot;A String&quot;,
376        },
377        &quot;licenseType&quot;: &quot;A String&quot;, # The license type to use in OS adaptation.
378        &quot;machineType&quot;: &quot;A String&quot;, # The machine type to create the VM with.
379        &quot;machineTypeSeries&quot;: &quot;A String&quot;, # The machine type series to create the VM with.
380        &quot;metadata&quot;: { # The metadata key/value pairs to assign to the VM.
381          &quot;a_key&quot;: &quot;A String&quot;,
382        },
383        &quot;networkInterfaces&quot;: [ # List of NICs connected to this VM.
384          { # NetworkInterface represents a NIC of a VM.
385            &quot;externalIp&quot;: &quot;A String&quot;, # The external IP to define in the NIC.
386            &quot;internalIp&quot;: &quot;A String&quot;, # The internal IP to define in the NIC. The formats accepted are: `ephemeral` \ ipv4 address \ a named address resource full path.
387            &quot;network&quot;: &quot;A String&quot;, # The network to connect the NIC to.
388            &quot;subnetwork&quot;: &quot;A String&quot;, # The subnetwork to connect the NIC to.
389          },
390        ],
391        &quot;networkTags&quot;: [ # A map of network tags to associate with the VM.
392          &quot;A String&quot;,
393        ],
394        &quot;project&quot;: &quot;A String&quot;, # The GCP target project ID or project name.
395        &quot;secureBoot&quot;: 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        &quot;serviceAccount&quot;: &quot;A String&quot;, # The service account to associate the VM with.
397        &quot;vmName&quot;: &quot;A String&quot;, # The name of the VM to create.
398        &quot;zone&quot;: &quot;A String&quot;, # The zone in which to create the VM.
399      },
400      &quot;createTime&quot;: &quot;A String&quot;, # Output only. The time the clone job was created (as an API call, not when it was actually created in the target).
401      &quot;error&quot;: { # 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&#x27;s state.
402        &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
403        &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
404          {
405            &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
406          },
407        ],
408        &quot;message&quot;: &quot;A String&quot;, # 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      &quot;name&quot;: &quot;A String&quot;, # The name of the clone.
411      &quot;state&quot;: &quot;A String&quot;, # Output only. State of the clone job.
412      &quot;stateTime&quot;: &quot;A String&quot;, # Output only. The time the state was last updated.
413    },
414  ],
415  &quot;nextPageToken&quot;: &quot;A String&quot;, # 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  &quot;unreachable&quot;: [ # Output only. Locations that could not be reached.
417    &quot;A String&quot;,
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 &#x27;execute()&#x27; 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>