Home
last modified time | relevance | path

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

/tools/acloud/internal/lib/
Dgcompute_client_test.py55 ZONE = "fake-zone" variable in ComputeClientTest
101 elif operation_scope == gcompute_client.OperationScope.ZONE:
125 {"status": "GOOD"}, gcompute_client.OperationScope.ZONE)
127 {"name": self.OPERATION_NAME}, gcompute_client.OperationScope.ZONE,
128 self.ZONE)
133 zone=self.ZONE)
475 result = self.compute_client.GetInstance(self.INSTANCE, self.ZONE)
478 project=PROJECT, zone=self.ZONE, instance=self.INSTANCE)
495 instances = self.compute_client.ListInstances(self.ZONE)
499 zone=self.ZONE,
[all …]
Dgcompute_client.py61 ZONE = "zone" variable in OperationScope
147 elif operation_scope == OperationScope.ZONE:
271 operation_scope=OperationScope.ZONE,
293 operation_scope=OperationScope.ZONE,
321 delete_requests, OperationScope.ZONE, scope_name=zone)
578 operation_scope=OperationScope.ZONE,
637 operation_scope=OperationScope.ZONE,
668 operation_scope=OperationScope.ZONE,
691 operation_scope=OperationScope.ZONE,
733 operation_scope=OperationScope.ZONE,
[all …]
Dandroid_compute_client_test.py40 ZONE = "fake-zone" variable in AndroidComputeClientTest
64 fake_cfg.zone = self.ZONE
140 expected_metadata, self.NETWORK, self.ZONE,
154 self.MACHINE_TYPE, self.MIN_MACHINE_SIZE, self.ZONE)
168 self.MACHINE_TYPE, self.MIN_MACHINE_SIZE, self.ZONE)
Dcvd_compute_client_test.py40 ZONE = "fake-zone" variable in CvdComputeClientTest
65 fake_cfg.zone = self.ZONE
128 zone=self.ZONE,
168 zone=self.ZONE,
Dcheeps_compute_client_test.py36 ZONE = "fake-zone" variable in CheepsComputeClientTest
55 fake_cfg.zone = self.ZONE
116 zone=self.ZONE,
Dgoldfish_compute_client_test.py34 ZONE = "fake-zone" variable in GoldfishComputeClientTest
59 fake_cfg.zone = self.ZONE
130 zone=self.ZONE,
/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/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.java524 String zone = config.getValueForKey(AcloudKeys.ZONE); in getInstanceSerialLog()