
com.pulumi.azurenative.storage.outputs.ProtocolSettingsResponse Maven / Gradle / Ivy
// *** 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.storage.outputs;
import com.pulumi.azurenative.storage.outputs.SmbSettingResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ProtocolSettingsResponse {
/**
* @return Setting for SMB protocol
*
*/
private @Nullable SmbSettingResponse smb;
private ProtocolSettingsResponse() {}
/**
* @return Setting for SMB protocol
*
*/
public Optional smb() {
return Optional.ofNullable(this.smb);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ProtocolSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable SmbSettingResponse smb;
public Builder() {}
public Builder(ProtocolSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.smb = defaults.smb;
}
@CustomType.Setter
public Builder smb(@Nullable SmbSettingResponse smb) {
this.smb = smb;
return this;
}
public ProtocolSettingsResponse build() {
final var _resultValue = new ProtocolSettingsResponse();
_resultValue.smb = smb;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy