## Create `gpu_droplets.floating_ips.create(FloatingIPCreateParams**kwargs) -> FloatingIPCreateResponse` **post** `/v2/floating_ips` On creation, a floating IP must be either assigned to a Droplet or reserved to a region. * To create a new floating IP assigned to a Droplet, send a POST request to `/v2/floating_ips` with the `droplet_id` attribute. * To create a new floating IP reserved to a region, send a POST request to `/v2/floating_ips` with the `region` attribute. **Note**: In addition to the standard rate limiting, only 12 floating IPs may be created per 60 seconds. ### Parameters - **droplet\_id:** `int` The ID of the Droplet that the floating IP will be assigned to. ### Returns - `class FloatingIPCreateResponse` - **floating\_ip:** `Optional[FloatingIP]` - **links:** `Optional[Links]` - **actions:** `Optional[List[ActionLink]]` - **id:** `Optional[int]` A unique numeric ID that can be used to identify and reference an action. - **href:** `Optional[str]` A URL that can be used to access the action. - **rel:** `Optional[str]` A string specifying the type of the related action. - **droplets:** `Optional[List[ActionLink]]` - **id:** `Optional[int]` A unique numeric ID that can be used to identify and reference an action. - **href:** `Optional[str]` A URL that can be used to access the action. - **rel:** `Optional[str]` A string specifying the type of the related action. ### Example ```python from do_gradientai import GradientAI client = GradientAI() floating_ip = client.gpu_droplets.floating_ips.create( droplet_id=2457247, ) print(floating_ip.floating_ip) ```