@@ -2585,7 +2585,9 @@ async def update_organization_metadata(self, org_id: str, metadata: Mapping[str,
2585
2585
2586
2586
::
2587
2587
2588
- await cloud.update_organization_metadata(org_id="<YOUR-ORG-ID>", metadata=)
2588
+ await cloud.update_organization_metadata(org_id="<YOUR-ORG-ID>", metadata={
2589
+ "TEST_API_KEY": "ABC123",
2590
+ })
2589
2591
2590
2592
Args:
2591
2593
organization_id (str): The ID of the organization with which to associate the user-defined metadata.
@@ -2618,7 +2620,9 @@ async def update_location_metadata(self, location_id: str, metadata: Mapping[str
2618
2620
2619
2621
::
2620
2622
2621
- await cloud.update_location_metadata(location_id="<YOUR-LOCATION-ID>", metadata=)
2623
+ await cloud.update_location_metadata(location_id="<YOUR-LOCATION-ID>", metadata={
2624
+ "TEST_API_KEY": "ABC123",
2625
+ })
2622
2626
2623
2627
Args:
2624
2628
location_id (str): The ID of the location with which to associate the user-defined metadata.
@@ -2651,7 +2655,9 @@ async def update_robot_metadata(self, robot_id: str, metadata: Mapping[str, Any]
2651
2655
2652
2656
::
2653
2657
2654
- await cloud.update_robot_metadata(robot_id="<YOUR-ROBOT-ID>", metadata=)
2658
+ await cloud.update_robot_metadata(robot_id="<YOUR-ROBOT-ID>", metadata={
2659
+ "TEST_API_KEY": "ABC123",
2660
+ })
2655
2661
2656
2662
Args:
2657
2663
robot_id (str): The ID of the robot with which to associate the user-defined metadata.
@@ -2684,7 +2690,9 @@ async def update_robot_part_metadata(self, robot_part_id: str, metadata: Mapping
2684
2690
2685
2691
::
2686
2692
2687
- await cloud.update_robot_part_metadata(robot_part_id="<YOUR-ROBOT-PART-ID>", metadata=)
2693
+ await cloud.update_robot_part_metadata(robot_part_id="<YOUR-ROBOT-PART-ID>", metadata={
2694
+ "TEST_API_KEY": "ABC123",
2695
+ })
2688
2696
2689
2697
Args:
2690
2698
robot_id (str): The ID of the robot part with which to associate the user-defined metadata.
0 commit comments