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

io.k8s.api.core.v1.ResourceClaim Maven / Gradle / Ivy

There is a newer version: 1.30.4
Show newest version
package io.k8s.api.core.v1;

import java.lang.String;

/**
 * ResourceClaim references one entry in PodSpec.ResourceClaims.
 */
public class ResourceClaim {
  public String name;

  /**
   * Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.
   */
  public ResourceClaim name(String name) {
    this.name = name;
    return this;
  }

  public static ResourceClaim resourceClaim() {
    return new ResourceClaim();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy