@@ -2585,7 +2585,9 @@ async def update_organization_metadata(self, org_id: str, metadata: Mapping[str,
25852585
25862586 ::
25872587
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+ })
25892591
25902592 Args:
25912593 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
26182620
26192621 ::
26202622
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+ })
26222626
26232627 Args:
26242628 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]
26512655
26522656 ::
26532657
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+ })
26552661
26562662 Args:
26572663 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
26842690
26852691 ::
26862692
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+ })
26882696
26892697 Args:
26902698 robot_id (str): The ID of the robot part with which to associate the user-defined metadata.
0 commit comments