![JAR search and dependency download from the Maven repository](/logo.png)
io.k8s.api.storage.v1.volumeattachmentstatus.AttachmentMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s130 Show documentation
Show all versions of bl-k8s130 Show documentation
Programmatic resource management for Kubernetes
package io.k8s.api.storage.v1.volumeattachmentstatus;
import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.LinkedHashMap;
@SuppressWarnings("serial")
public class AttachmentMetadata extends LinkedHashMap {
public AttachmentMetadata kv(String key, String value) {
put(key, value);
return this;
}
public static AttachmentMetadata attachmentMetadata() {
return new AttachmentMetadata();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy