All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.k8s.api.resource.v1alpha2.NamedResourcesIntSlice Maven / Gradle / Ivy

There is a newer version: 1.30.4
Show newest version
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();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy