
com.pulumi.azurenative.scvmm.outputs.GuestCredentialResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure 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.azurenative.scvmm.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GuestCredentialResponse {
/**
* @return Gets or sets username to connect with the guest.
*
*/
private String username;
private GuestCredentialResponse() {}
/**
* @return Gets or sets username to connect with the guest.
*
*/
public String username() {
return this.username;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GuestCredentialResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String username;
public Builder() {}
public Builder(GuestCredentialResponse defaults) {
Objects.requireNonNull(defaults);
this.username = defaults.username;
}
@CustomType.Setter
public Builder username(String username) {
if (username == null) {
throw new MissingRequiredPropertyException("GuestCredentialResponse", "username");
}
this.username = username;
return this;
}
public GuestCredentialResponse build() {
final var _resultValue = new GuestCredentialResponse();
_resultValue.username = username;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy