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

com.pulumi.azurenative.hybridcontainerservice.outputs.VirtualNetworksPropertiesResponseVmware Maven / Gradle / Ivy

There is a newer version: 2.89.2
Show newest version
// *** 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.azurenative.hybridcontainerservice.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class VirtualNetworksPropertiesResponseVmware {
    /**
     * @return Name of the network segment in VSphere
     * 
     */
    private @Nullable String segmentName;

    private VirtualNetworksPropertiesResponseVmware() {}
    /**
     * @return Name of the network segment in VSphere
     * 
     */
    public Optional segmentName() {
        return Optional.ofNullable(this.segmentName);
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(VirtualNetworksPropertiesResponseVmware defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String segmentName;
        public Builder() {}
        public Builder(VirtualNetworksPropertiesResponseVmware defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.segmentName = defaults.segmentName;
        }

        @CustomType.Setter
        public Builder segmentName(@Nullable String segmentName) {

            this.segmentName = segmentName;
            return this;
        }
        public VirtualNetworksPropertiesResponseVmware build() {
            final var _resultValue = new VirtualNetworksPropertiesResponseVmware();
            _resultValue.segmentName = segmentName;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy