ListVehicles
메서드를 사용하여 특정 기준을 충족하는 모든 차량을 찾습니다.
요청 옵션을 제공합니다. ListVehicles
메서드는 페이지로 나눈 차량 목록을 반환합니다.
프로젝트에서 쿼리를 일치시킵니다.
차량 속성으로 필터링
또한 이 메서드를 사용하여 AND 역할을 하는 차량 속성을 필터링할 수도 있습니다. 연산자를 다른 필드 사양과 함께 사용할 수 있습니다. 자세히 알아보기 필터 쿼리 구문은 필터링: AIP-160을 참고하세요. 를 참조하세요. 차량 속성을 만드는 방법에 대한 자세한 내용은 차량을 참고하세요. 차량 필드 업데이트 가이드의 속성 필드를 참고하세요.
차량 예시 나열
이 예에서는 다음을 사용하여 vehicle_type
및 attributes
필드를 모두 필터링합니다.
filter
문자열: AUTO 유형 차량만 표시하고 LUXURY를 획득
맞춤 속성 class
의 값입니다.
자바
static final String PROJECT_ID = "project-id";
VehicleServiceBlockingStub vehicleService = VehicleService.newBlockingStub(channel);
String parent = "providers/" + PROJECT_ID;
ListVehiclesRequest listVehiclesRequest = ListVehiclesRequest.newBuilder()
.setParent(parent)
.addTripTypes(TripType.EXCLUSIVE)
.addVehicleTypes(VehicleType.newBuilder().setCategory(VehicleType.Category.AUTO))
.setFilter("attributes.on_trip=\"false\"")
.setIncludeBackToBack(true) // Fleet Engine includes vehicles that are en route.
.build();
// Error handling
// If matches are returned and the authentication passed, the request completed
// successfully
try {
ListVehiclesResponse listVehiclesResponse =
vehicleService.listVehicles(listVehiclesRequest);
} catch (StatusRuntimeException e) {
Status s = e.getStatus();
switch (s.getCode()) {
case NOT_FOUND:
break;
case PERMISSION_DENIED:
break;
}
return;
}
REST
curl -X POST \
"https://fleetengine.googleapis.com/v1/providers/project-id/vehicles:list" \
-H "Authorization: Bearer $JWT" \
-H "Content-Type: application/json" \
--data-binary @- << EOM
{
"vehicleTypes": [{"category": "AUTO"}],
"filter": "attributes.class=\"LUXURY\"",
}
EOM