@@ -317,17 +317,14 @@ message AllocationPolicy {
317317 message Disk {
318318 // A data source from which a PD will be created.
319319 oneof data_source {
320- // Name of an image used as the data source.
320+ // URL for a VM image to use as the data source for this disk .
321321 // For example, the following are all valid URLs:
322322 //
323323 // * Specify the image by its family name:
324- // <pre><code>projects/<var
325- // class="apiparam">project</var>/global/images/family/<var
326- // class="apiparam">image_family</var></code></pre>
324+ // projects/{project}/global/images/family/{image_family}
327325 // * Specify the image version:
328- // <pre>projects/<var
329- // class="apiparam">project</var>/global/images/<var
330- // class="apiparam">image_version</var></code></pre>
326+ // projects/{project}/global/images/{image_version}
327+ //
331328 // You can also use Batch customized image in short names.
332329 // The following image values are supported for a boot disk:
333330 //
@@ -432,7 +429,7 @@ message AllocationPolicy {
432429
433430 // Non-boot disks to be attached for each VM created by this InstancePolicy.
434431 // New disks will be deleted when the VM is deleted.
435- // A non bootable disk is a disk that can be of a device with a
432+ // A non-boot disk is a disk that can be of a device with a
436433 // file system or a raw storage drive that is not ready for data
437434 // storage and accessing.
438435 repeated AttachedDisk disks = 6 ;
@@ -476,30 +473,20 @@ message AllocationPolicy {
476473 // You can specify the network as a full or partial URL.
477474 //
478475 // For example, the following are all valid URLs:
479- // <pre><code>https://www.googleapis.com/compute/v1/projects/<var
480- // class="apiparam">project</var>/global/networks/<var
481- // class="apiparam">network</var></code></pre>
482- // <pre><code>projects/<var
483- // class="apiparam">project</var>/global/networks/<var
484- // class="apiparam">network</var></code></pre>
485- // <pre><code>global/networks/<var
486- // class="apiparam">network</var></code></pre>
476+ //
477+ // * https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
478+ // * projects/{project}/global/networks/{network}
479+ // * global/networks/{network}
487480 string network = 1 ;
488481
489482 // The URL of an existing subnetwork resource in the network.
490483 // You can specify the subnetwork as a full or partial URL.
491484 //
492485 // For example, the following are all valid URLs:
493- // <pre><code>https://www.googleapis.com/compute/v1/projects/<var
494- // class="apiparam">project</var>/regions/<var
495- // class="apiparam">region</var>/subnetworks/<var
496- // class="apiparam">subnetwork</var></code></pre>
497- // <pre><code>projects/<var class="apiparam">project</var>/regions/<var
498- // class="apiparam">region</var>/subnetworks/<var
499- // class="apiparam">subnetwork</var></code></pre>
500- // <pre><code>regions/<var
501- // class="apiparam">region</var>/subnetworks/<var
502- // class="apiparam">subnetwork</var></code></pre>
486+ //
487+ // * https://www.googleapis.com/compute/v1/projects/{project}/regions/{region}/subnetworks/{subnetwork}
488+ // * projects/{project}/regions/{region}/subnetworks/{subnetwork}
489+ // * regions/{region}/subnetworks/{subnetwork}
503490 string subnetwork = 2 ;
504491
505492 // Default is false (with an external IP address). Required if
0 commit comments