
com.pulumi.azurenative.migrate.outputs.VsphereManagementSettingsResponse 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.migrate.outputs;
import com.pulumi.azurenative.migrate.outputs.VsphereManagementLicenseResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.List;
import java.util.Objects;
@CustomType
public final class VsphereManagementSettingsResponse {
/**
* @return Licence and support list.
*
*/
private List licenseAndSupportList;
private VsphereManagementSettingsResponse() {}
/**
* @return Licence and support list.
*
*/
public List licenseAndSupportList() {
return this.licenseAndSupportList;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VsphereManagementSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List licenseAndSupportList;
public Builder() {}
public Builder(VsphereManagementSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.licenseAndSupportList = defaults.licenseAndSupportList;
}
@CustomType.Setter
public Builder licenseAndSupportList(List licenseAndSupportList) {
if (licenseAndSupportList == null) {
throw new MissingRequiredPropertyException("VsphereManagementSettingsResponse", "licenseAndSupportList");
}
this.licenseAndSupportList = licenseAndSupportList;
return this;
}
public Builder licenseAndSupportList(VsphereManagementLicenseResponse... licenseAndSupportList) {
return licenseAndSupportList(List.of(licenseAndSupportList));
}
public VsphereManagementSettingsResponse build() {
final var _resultValue = new VsphereManagementSettingsResponse();
_resultValue.licenseAndSupportList = licenseAndSupportList;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy