
com.pulumi.azurenative.labservices.outputs.ListGlobalUserLabsResult 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.labservices.outputs;
import com.pulumi.azurenative.labservices.outputs.LabDetailsResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class ListGlobalUserLabsResult {
/**
* @return List of all the labs
*
*/
private @Nullable List labs;
private ListGlobalUserLabsResult() {}
/**
* @return List of all the labs
*
*/
public List labs() {
return this.labs == null ? List.of() : this.labs;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListGlobalUserLabsResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List labs;
public Builder() {}
public Builder(ListGlobalUserLabsResult defaults) {
Objects.requireNonNull(defaults);
this.labs = defaults.labs;
}
@CustomType.Setter
public Builder labs(@Nullable List labs) {
this.labs = labs;
return this;
}
public Builder labs(LabDetailsResponse... labs) {
return labs(List.of(labs));
}
public ListGlobalUserLabsResult build() {
final var _resultValue = new ListGlobalUserLabsResult();
_resultValue.labs = labs;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy