com.pulumi.kubernetes.networking.v1.outputs.ServiceBackendPortPatch 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.networking.v1.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ServiceBackendPortPatch {
/**
* @return name is the name of the port on the Service. This is a mutually exclusive setting with "Number".
*
*/
private @Nullable String name;
/**
* @return number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with "Name".
*
*/
private @Nullable Integer number;
private ServiceBackendPortPatch() {}
/**
* @return name is the name of the port on the Service. This is a mutually exclusive setting with "Number".
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* @return number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with "Name".
*
*/
public Optional number() {
return Optional.ofNullable(this.number);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ServiceBackendPortPatch defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String name;
private @Nullable Integer number;
public Builder() {}
public Builder(ServiceBackendPortPatch defaults) {
Objects.requireNonNull(defaults);
this.name = defaults.name;
this.number = defaults.number;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
@CustomType.Setter
public Builder number(@Nullable Integer number) {
this.number = number;
return this;
}
public ServiceBackendPortPatch build() {
final var _resultValue = new ServiceBackendPortPatch();
_resultValue.name = name;
_resultValue.number = number;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy