io.k8s.api.resource.v1alpha3.basicdevice.Attributes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s131 Show documentation
Show all versions of bl-k8s131 Show documentation
Programmatic resource management for Kubernetes
The newest version!
package io.k8s.api.resource.v1alpha3.basicdevice;
import io.k8s.api.resource.v1alpha3.DeviceAttribute;
import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.LinkedHashMap;
@SuppressWarnings("serial")
public class Attributes extends LinkedHashMap {
public Attributes kv(String key, DeviceAttribute value) {
put(key, value);
return this;
}
public static Attributes attributes() {
return new Attributes();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy