Home
last modified time | relevance | path

Searched refs:ZONE (Results 1 – 11 of 11) sorted by relevance

/tools/acloud/internal/script/
Dcreate_extradisk.sh15 ZONE=us-central1-f
20 gcloud compute disks create "${DISK_NAME}" --zone=${ZONE} --project=${PROJECT} --size="${1}GB"
21 gcloud compute instances attach-disk instance-disk-creation --disk "${DISK_NAME}" --zone=${ZONE} --…
23 gcloud compute ssh instance-disk-creation --zone=${ZONE} --project=${PROJECT} --command "sudo mkfs.…
24 gcloud compute ssh instance-disk-creation --zone=${ZONE} --project=${PROJECT} --command "sudo mount…
25 gcloud compute ssh instance-disk-creation --zone=${ZONE} --project=${PROJECT} --command "ls /mnt"
26 gcloud compute ssh instance-disk-creation --zone=${ZONE} --project=${PROJECT} --command "sudo umoun…
28 gcloud compute instances detach-disk instance-disk-creation --disk "${DISK_NAME}" --zone=${ZONE} --…
29 gcloud compute images create "${IMAGE_NAME}" --source-disk-zone=${ZONE} --source-disk "${DISK_NAME}…
30 gcloud compute disks delete "${DISK_NAME}" --zone=${ZONE} --project=${PROJECT}
/tools/acloud/internal/lib/
Dgcompute_client_test.py59 ZONE = "fake-zone" variable in ComputeClientTest
105 elif operation_scope == gcompute_client.OperationScope.ZONE:
129 {"status": "GOOD"}, gcompute_client.OperationScope.ZONE)
131 {"name": self.OPERATION_NAME}, gcompute_client.OperationScope.ZONE,
132 self.ZONE)
137 zone=self.ZONE)
481 result = self.compute_client.GetInstance(self.INSTANCE, self.ZONE)
484 project=PROJECT, zone=self.ZONE, instance=self.INSTANCE)
612 zone=self.ZONE,
617 project=PROJECT, zone=self.ZONE, body=expected_body)
[all …]
Dandroid_compute_client_test.py39 ZONE = "fake-zone" variable in AndroidComputeClientTest
63 fake_cfg.zone = self.ZONE
138 expected_metadata, self.NETWORK, self.ZONE,
152 self.MACHINE_TYPE, self.MIN_MACHINE_SIZE, self.ZONE)
166 self.MACHINE_TYPE, self.MIN_MACHINE_SIZE, self.ZONE)
Dgcompute_client.py66 ZONE = "zone" variable in OperationScope
153 elif operation_scope == OperationScope.ZONE:
277 operation_scope=OperationScope.ZONE,
299 operation_scope=OperationScope.ZONE,
327 delete_requests, OperationScope.ZONE, scope_name=zone)
584 operation_scope=OperationScope.ZONE,
643 operation_scope=OperationScope.ZONE,
674 operation_scope=OperationScope.ZONE,
697 operation_scope=OperationScope.ZONE,
739 operation_scope=OperationScope.ZONE,
[all …]
Dcheeps_compute_client_test.py36 ZONE = "fake-zone" variable in CheepsComputeClientTest
58 fake_cfg.zone = self.ZONE
126 zone=self.ZONE)
Dgoldfish_compute_client_test.py34 ZONE = "fake-zone" variable in GoldfishComputeClientTest
64 fake_cfg.zone = self.ZONE
146 zone=self.ZONE,
Dcvd_compute_client_test.py41 ZONE = "fake-zone" variable in CvdComputeClientTest
67 fake_cfg.zone = self.ZONE
143 zone=self.ZONE,
182 zone=self.ZONE,
Dcvd_compute_client_multi_stage_test.py47 ZONE = "fake-zone" variable in CvdComputeClientTest
74 fake_cfg.zone = self.ZONE
184 zone=self.ZONE,
218 zone=self.ZONE,
/tools/tradefederation/core/tests/src/com/android/tradefed/device/cloud/
DAcloudConfigParserTest.java56 assertEquals("us-central1-c", res.getValueForKey(AcloudKeys.ZONE)); in testParse()
/tools/tradefederation/core/src/com/android/tradefed/device/cloud/
DAcloudConfigParser.java33 ZONE("zone"), enumConstant
DGceManager.java641 String zone = config.getValueForKey(AcloudKeys.ZONE); in getInstanceSerialLog()