io.k8s.api.resource.v1alpha2.NamedResourcesIntSlice 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.resource.v1alpha2;
import java.lang.Long;
import java.util.List;
/**
* NamedResourcesIntSlice contains a slice of 64-bit integers.
*/
public class NamedResourcesIntSlice {
public List ints;
/**
* Ints is the slice of 64-bit integers.
*/
public NamedResourcesIntSlice ints(List ints) {
this.ints = ints;
return this;
}
public static NamedResourcesIntSlice namedResourcesIntSlice() {
return new NamedResourcesIntSlice();
}
}