com.pulumi.kubernetes.resource.v1alpha3.outputs.PodSchedulingContextStatusPatch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kubernetes Show documentation
Show all versions of kubernetes Show documentation
A Pulumi package for creating and managing Kubernetes resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.kubernetes.resource.v1alpha3.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.kubernetes.resource.v1alpha3.outputs.ResourceClaimSchedulingStatusPatch;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class PodSchedulingContextStatusPatch {
/**
* @return ResourceClaims describes resource availability for each pod.spec.resourceClaim entry where the corresponding ResourceClaim uses "WaitForFirstConsumer" allocation mode.
*
*/
private @Nullable List resourceClaims;
private PodSchedulingContextStatusPatch() {}
/**
* @return ResourceClaims describes resource availability for each pod.spec.resourceClaim entry where the corresponding ResourceClaim uses "WaitForFirstConsumer" allocation mode.
*
*/
public List resourceClaims() {
return this.resourceClaims == null ? List.of() : this.resourceClaims;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(PodSchedulingContextStatusPatch defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List resourceClaims;
public Builder() {}
public Builder(PodSchedulingContextStatusPatch defaults) {
Objects.requireNonNull(defaults);
this.resourceClaims = defaults.resourceClaims;
}
@CustomType.Setter
public Builder resourceClaims(@Nullable List resourceClaims) {
this.resourceClaims = resourceClaims;
return this;
}
public Builder resourceClaims(ResourceClaimSchedulingStatusPatch... resourceClaims) {
return resourceClaims(List.of(resourceClaims));
}
public PodSchedulingContextStatusPatch build() {
final var _resultValue = new PodSchedulingContextStatusPatch();
_resultValue.resourceClaims = resourceClaims;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy