io.k8s.api.authorization.v1.subjectaccessreviewspec.Extra 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.authorization.v1.subjectaccessreviewspec;
import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.LinkedHashMap;
import java.util.List;
@SuppressWarnings("serial")
public class Extra extends LinkedHashMap> {
public Extra kv(String key, List value) {
put(key, value);
return this;
}
public static Extra extra() {
return new Extra();
}
}