File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class TargetStatuses(Enum):
4141 Constants representing VWS target statuses.
4242
4343 See the 'status' field in
44- https://library.vuforia.com/articles/Solution/How-To-Use-the-Vuforia-Web-Services-API.html#How-To-Retrieve-a-Target-Record
44+ https://library.vuforia.com/web-api/cloud-targets-web-services-api#target-record
4545 """
4646
4747 PROCESSING = "processing"
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ def get_target(target_id: str) -> Response:
217217 Get details of a target.
218218
219219 Fake implementation of
220- https://library.vuforia.com/articles/Solution/How-To-Use-the-Vuforia-Web-Services-API.html#How-To-Retrieve-a-Target-Record
220+ https://library.vuforia.com/web-api/cloud-targets-web-services-api#target-record
221221 """
222222 databases = get_all_databases ()
223223 database = get_database_matching_server_keys (
@@ -428,7 +428,7 @@ def get_duplicates(target_id: str) -> Response:
428428 Get targets which may be considered duplicates of a given target.
429429
430430 Fake implementation of
431- https://library.vuforia.com/articles/Solution/How-To-Use-the-Vuforia-Web-Services-API.html#How-To-Check-for-Duplicate-Targets
431+ https://library.vuforia.com/web-api/cloud-targets-web-services-api#check
432432 """
433433 databases = get_all_databases ()
434434 settings = VWSSettings .model_validate (obj = {})
@@ -529,7 +529,7 @@ def update_target(target_id: str) -> Response:
529529 Update a target.
530530
531531 Fake implementation of
532- https://library.vuforia.com/articles/Solution/How-To-Use-the-Vuforia-Web-Services-API.html#How-To-Update-a-Target
532+ https://library.vuforia.com/web-api/cloud-targets-web-services-api#update
533533 """
534534 settings = VWSSettings .model_validate (obj = {})
535535 # We do not use ``request.get_json(force=True)`` because this only works
Original file line number Diff line number Diff line change @@ -398,7 +398,7 @@ def get_target(
398398 Get details of a target.
399399
400400 Fake implementation of
401- https://library.vuforia.com/articles/Solution/How-To-Use-the-Vuforia-Web-Services-API.html#How-To-Retrieve-a-Target-Record
401+ https://library.vuforia.com/web-api/cloud-targets-web-services-api#target-record
402402 """
403403 try :
404404 run_services_validators (
@@ -466,7 +466,7 @@ def get_duplicates(
466466 Get targets which may be considered duplicates of a given target.
467467
468468 Fake implementation of
469- https://library.vuforia.com/articles/Solution/How-To-Use-the-Vuforia-Web-Services-API.html#How-To-Check-for-Duplicate-Targets
469+ https://library.vuforia.com/web-api/cloud-targets-web-services-api#check
470470 """
471471 try :
472472 run_services_validators (
Original file line number Diff line number Diff line change 11"""
22Tests for getting a target record.
33
4- https://library.vuforia.com/articles/Solution/How-To-Use-the-Vuforia-Web-Services-API.html#How-To-Retrieve-a-Target-Record
4+ https://library.vuforia.com/web-api/cloud-targets-web-services-api#target-record
55"""
66from __future__ import annotations
77
You can’t perform that action at this time.
0 commit comments