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

com.pulumi.azurenative.networkcloud.outputs.SshPublicKeyResponse Maven / Gradle / Ivy

The 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.networkcloud.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;

@CustomType
public final class SshPublicKeyResponse {
    /**
     * @return The SSH public key data.
     * 
     */
    private String keyData;

    private SshPublicKeyResponse() {}
    /**
     * @return The SSH public key data.
     * 
     */
    public String keyData() {
        return this.keyData;
    }

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

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

        @CustomType.Setter
        public Builder keyData(String keyData) {
            if (keyData == null) {
              throw new MissingRequiredPropertyException("SshPublicKeyResponse", "keyData");
            }
            this.keyData = keyData;
            return this;
        }
        public SshPublicKeyResponse build() {
            final var _resultValue = new SshPublicKeyResponse();
            _resultValue.keyData = keyData;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy