com.pulumi.azurenative.connectedvmwarevsphere.outputs.OsProfileResponseWindowsConfiguration 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.connectedvmwarevsphere.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 OsProfileResponseWindowsConfiguration {
/**
* @return Specifies the assessment mode.
*
*/
private @Nullable String assessmentMode;
/**
* @return Specifies the patch mode.
*
*/
private @Nullable String patchMode;
private OsProfileResponseWindowsConfiguration() {}
/**
* @return Specifies the assessment mode.
*
*/
public Optional assessmentMode() {
return Optional.ofNullable(this.assessmentMode);
}
/**
* @return Specifies the patch mode.
*
*/
public Optional patchMode() {
return Optional.ofNullable(this.patchMode);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(OsProfileResponseWindowsConfiguration defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String assessmentMode;
private @Nullable String patchMode;
public Builder() {}
public Builder(OsProfileResponseWindowsConfiguration defaults) {
Objects.requireNonNull(defaults);
this.assessmentMode = defaults.assessmentMode;
this.patchMode = defaults.patchMode;
}
@CustomType.Setter
public Builder assessmentMode(@Nullable String assessmentMode) {
this.assessmentMode = assessmentMode;
return this;
}
@CustomType.Setter
public Builder patchMode(@Nullable String patchMode) {
this.patchMode = patchMode;
return this;
}
public OsProfileResponseWindowsConfiguration build() {
final var _resultValue = new OsProfileResponseWindowsConfiguration();
_resultValue.assessmentMode = assessmentMode;
_resultValue.patchMode = patchMode;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy