com.pulumi.azurenative.azurefleet.outputs.ApplicationProfileResponse 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.azurefleet.outputs;
import com.pulumi.azurenative.azurefleet.outputs.VMGalleryApplicationResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class ApplicationProfileResponse {
/**
* @return Specifies the gallery applications that should be made available to the VM/VMSS
*
*/
private @Nullable List galleryApplications;
private ApplicationProfileResponse() {}
/**
* @return Specifies the gallery applications that should be made available to the VM/VMSS
*
*/
public List galleryApplications() {
return this.galleryApplications == null ? List.of() : this.galleryApplications;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ApplicationProfileResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List galleryApplications;
public Builder() {}
public Builder(ApplicationProfileResponse defaults) {
Objects.requireNonNull(defaults);
this.galleryApplications = defaults.galleryApplications;
}
@CustomType.Setter
public Builder galleryApplications(@Nullable List galleryApplications) {
this.galleryApplications = galleryApplications;
return this;
}
public Builder galleryApplications(VMGalleryApplicationResponse... galleryApplications) {
return galleryApplications(List.of(galleryApplications));
}
public ApplicationProfileResponse build() {
final var _resultValue = new ApplicationProfileResponse();
_resultValue.galleryApplications = galleryApplications;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy