com.pulumi.azurenative.desktopvirtualization.outputs.MsixPackageDependenciesResponse 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.desktopvirtualization.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 MsixPackageDependenciesResponse {
/**
* @return Name of package dependency.
*
*/
private @Nullable String dependencyName;
/**
* @return Dependency version required.
*
*/
private @Nullable String minVersion;
/**
* @return Name of dependency publisher.
*
*/
private @Nullable String publisher;
private MsixPackageDependenciesResponse() {}
/**
* @return Name of package dependency.
*
*/
public Optional dependencyName() {
return Optional.ofNullable(this.dependencyName);
}
/**
* @return Dependency version required.
*
*/
public Optional minVersion() {
return Optional.ofNullable(this.minVersion);
}
/**
* @return Name of dependency publisher.
*
*/
public Optional publisher() {
return Optional.ofNullable(this.publisher);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(MsixPackageDependenciesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String dependencyName;
private @Nullable String minVersion;
private @Nullable String publisher;
public Builder() {}
public Builder(MsixPackageDependenciesResponse defaults) {
Objects.requireNonNull(defaults);
this.dependencyName = defaults.dependencyName;
this.minVersion = defaults.minVersion;
this.publisher = defaults.publisher;
}
@CustomType.Setter
public Builder dependencyName(@Nullable String dependencyName) {
this.dependencyName = dependencyName;
return this;
}
@CustomType.Setter
public Builder minVersion(@Nullable String minVersion) {
this.minVersion = minVersion;
return this;
}
@CustomType.Setter
public Builder publisher(@Nullable String publisher) {
this.publisher = publisher;
return this;
}
public MsixPackageDependenciesResponse build() {
final var _resultValue = new MsixPackageDependenciesResponse();
_resultValue.dependencyName = dependencyName;
_resultValue.minVersion = minVersion;
_resultValue.publisher = publisher;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy