Skip to content

Commit

Permalink
add labels support to floating ip creation
Browse files Browse the repository at this point in the history
  • Loading branch information
pellepelster committed Jan 25, 2019
1 parent ba48c6a commit 20cb2f6
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
import lombok.Data;
import lombok.Getter;

import java.util.HashMap;
import java.util.Map;

@Data
@Builder
@AllArgsConstructor
Expand All @@ -18,6 +21,7 @@ public class FloatingIPRequest {
private String homeLocation;
private Long server;
private String description;
private Map<String, String> labels = new HashMap<>();

@Getter
@AllArgsConstructor
Expand Down

0 comments on commit 20cb2f6

Please sign in to comment.