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

com.pulumi.alicloud.dfs.outputs.VscMountPointInstanceVsc Maven / Gradle / Ivy

There is a newer version: 3.63.0-alpha.1727424957
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.alicloud.dfs.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 VscMountPointInstanceVsc {
    /**
     * @return VSC Channel primary key representation, used to retrieve the specified VSC Channel.
     * 
     */
    private @Nullable String vscId;
    /**
     * @return VSC Mount status.
     * 
     */
    private @Nullable String vscStatus;
    /**
     * @return The VSC type.
     * 
     */
    private @Nullable String vscType;

    private VscMountPointInstanceVsc() {}
    /**
     * @return VSC Channel primary key representation, used to retrieve the specified VSC Channel.
     * 
     */
    public Optional vscId() {
        return Optional.ofNullable(this.vscId);
    }
    /**
     * @return VSC Mount status.
     * 
     */
    public Optional vscStatus() {
        return Optional.ofNullable(this.vscStatus);
    }
    /**
     * @return The VSC type.
     * 
     */
    public Optional vscType() {
        return Optional.ofNullable(this.vscType);
    }

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

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

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

            this.vscId = vscId;
            return this;
        }
        @CustomType.Setter
        public Builder vscStatus(@Nullable String vscStatus) {

            this.vscStatus = vscStatus;
            return this;
        }
        @CustomType.Setter
        public Builder vscType(@Nullable String vscType) {

            this.vscType = vscType;
            return this;
        }
        public VscMountPointInstanceVsc build() {
            final var _resultValue = new VscMountPointInstanceVsc();
            _resultValue.vscId = vscId;
            _resultValue.vscStatus = vscStatus;
            _resultValue.vscType = vscType;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy