@@ -263,6 +263,10 @@ def volumes(self) -> VolumesResource:
263263
264264 @cached_property
265265 def floating_ips (self ) -> FloatingIPsResource :
266+ """A floating IP is a static IP address that points to one of your Instances.
267+
268+ It allows you to redirect network traffic to any of your Instances in the same datacenter.
269+ """
266270 return FloatingIPsResource (self ._client )
267271
268272 @cached_property
@@ -388,6 +392,10 @@ def volumes(self) -> AsyncVolumesResource:
388392
389393 @cached_property
390394 def floating_ips (self ) -> AsyncFloatingIPsResource :
395+ """A floating IP is a static IP address that points to one of your Instances.
396+
397+ It allows you to redirect network traffic to any of your Instances in the same datacenter.
398+ """
391399 return AsyncFloatingIPsResource (self ._client )
392400
393401 @cached_property
@@ -516,6 +524,10 @@ def volumes(self) -> VolumesResourceWithRawResponse:
516524
517525 @cached_property
518526 def floating_ips (self ) -> FloatingIPsResourceWithRawResponse :
527+ """A floating IP is a static IP address that points to one of your Instances.
528+
529+ It allows you to redirect network traffic to any of your Instances in the same datacenter.
530+ """
519531 return FloatingIPsResourceWithRawResponse (self ._cloud .floating_ips )
520532
521533 @cached_property
@@ -625,6 +637,10 @@ def volumes(self) -> AsyncVolumesResourceWithRawResponse:
625637
626638 @cached_property
627639 def floating_ips (self ) -> AsyncFloatingIPsResourceWithRawResponse :
640+ """A floating IP is a static IP address that points to one of your Instances.
641+
642+ It allows you to redirect network traffic to any of your Instances in the same datacenter.
643+ """
628644 return AsyncFloatingIPsResourceWithRawResponse (self ._cloud .floating_ips )
629645
630646 @cached_property
@@ -734,6 +750,10 @@ def volumes(self) -> VolumesResourceWithStreamingResponse:
734750
735751 @cached_property
736752 def floating_ips (self ) -> FloatingIPsResourceWithStreamingResponse :
753+ """A floating IP is a static IP address that points to one of your Instances.
754+
755+ It allows you to redirect network traffic to any of your Instances in the same datacenter.
756+ """
737757 return FloatingIPsResourceWithStreamingResponse (self ._cloud .floating_ips )
738758
739759 @cached_property
@@ -843,6 +863,10 @@ def volumes(self) -> AsyncVolumesResourceWithStreamingResponse:
843863
844864 @cached_property
845865 def floating_ips (self ) -> AsyncFloatingIPsResourceWithStreamingResponse :
866+ """A floating IP is a static IP address that points to one of your Instances.
867+
868+ It allows you to redirect network traffic to any of your Instances in the same datacenter.
869+ """
846870 return AsyncFloatingIPsResourceWithStreamingResponse (self ._cloud .floating_ips )
847871
848872 @cached_property
0 commit comments