Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Name to ContainerNetworkConfig #2052

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -97,6 +97,12 @@ public Map<String, String> getLabels() {
public static class ContainerNetworkConfig extends DockerObject implements Serializable {
private static final long serialVersionUID = 1L;

/**
* @since {@link RemoteApiVersion#VERSION_1_30}
albers marked this conversation as resolved.
Show resolved Hide resolved
*/
@JsonProperty("Name")
private String name;

@JsonProperty("EndpointID")
private String endpointId;

Expand All @@ -109,6 +115,10 @@ public static class ContainerNetworkConfig extends DockerObject implements Seria
@JsonProperty("IPv6Address")
private String ipv6Address;

public String getName() {
return name;
}

public String getEndpointId() {
return endpointId;
}
Expand Down