Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*-
* -\-\-
* docker-client
* --
* Copyright (C) 2016 Spotify AB
* --
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* -/-/-
*/
package com.spotify.docker.client.messages;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.ANY;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.NONE;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonValue;
import com.google.auto.value.AutoValue;
import com.google.common.collect.ImmutableMap;
import java.util.Map;
import javax.annotation.Nullable;
@AutoValue
@JsonAutoDetect(fieldVisibility = ANY, getterVisibility = NONE, setterVisibility = NONE)
public abstract class Network {
@JsonProperty("Name")
public abstract String name();
@JsonProperty("Id")
public abstract String id();
@JsonProperty("Scope")
public abstract String scope();
@JsonProperty("Driver")
public abstract String driver();
@JsonProperty("IPAM")
public abstract Ipam ipam();
@Nullable
@JsonProperty("Containers")
public abstract ImmutableMap containers();
@Nullable
@JsonProperty("Options")
public abstract ImmutableMap options();
@Nullable
@JsonProperty("Internal")
public abstract Boolean internal();
@Nullable
@JsonProperty("EnableIPv6")
public abstract Boolean enableIPv6();
@Nullable
@JsonProperty("Labels")
public abstract ImmutableMap labels();
@Nullable
@JsonProperty("Attachable")
public abstract Boolean attachable();
@JsonCreator
static Network create(
@JsonProperty("Name") final String name,
@JsonProperty("Id") final String id,
@JsonProperty("Scope") final String scope,
@JsonProperty("Driver") final String driver,
@JsonProperty("IPAM") final Ipam ipam,
@JsonProperty("Containers") final Map containers,
@JsonProperty("Options") final Map options,
@JsonProperty("Internal") final Boolean internal,
@JsonProperty("EnableIPv6") final Boolean enableIPv6,
@JsonProperty("Labels") final Map labels,
@JsonProperty("Attachable") final Boolean attachable) {
final ImmutableMap containersCopy = containers == null
? null : ImmutableMap.copyOf(containers);
final ImmutableMap optionsCopy = options == null
? null : ImmutableMap.copyOf(options);
final ImmutableMap labelsCopy = labels == null
? null : ImmutableMap.copyOf(labels);
return new AutoValue_Network(name, id, scope, driver, ipam, containersCopy, optionsCopy,
internal, enableIPv6, labelsCopy, attachable);
}
@AutoValue
@JsonAutoDetect(fieldVisibility = ANY, getterVisibility = NONE, setterVisibility = NONE)
public abstract static class Container {
@Nullable
@JsonProperty("Name")
public abstract String name();
@JsonProperty("EndpointID")
public abstract String endpointId();
@JsonProperty("MacAddress")
public abstract String macAddress();
@JsonProperty("IPv4Address")
public abstract String ipv4Address();
@JsonProperty("IPv6Address")
public abstract String ipv6Address();
@JsonCreator
static Container create(
@JsonProperty("Name") final String name,
@JsonProperty("EndpointID") final String endpointId,
@JsonProperty("MacAddress") final String macAddress,
@JsonProperty("IPv4Address") final String ipv4Address,
@JsonProperty("IPv6Address") final String ipv6Address) {
return new AutoValue_Network_Container(
name, endpointId, macAddress, ipv4Address, ipv6Address);
}
}
/**
* Docker networks come in two kinds: built-in or custom.
*/
public enum Type {
/** Predefined networks that are built-in into Docker. */
BUILTIN("builtin"),
/** Custom networks that were created by users. */
CUSTOM("custom");
private final String name;
@JsonCreator
Type(final String name) {
this.name = name;
}
@JsonValue
public String getName() {
return name;
}
}
}