com.pulumi.azurenative.azurestack.outputs.IconUrisResponse 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.azurestack.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 IconUrisResponse {
/**
* @return URI to hero icon.
*
*/
private @Nullable String hero;
/**
* @return URI to large icon.
*
*/
private @Nullable String large;
/**
* @return URI to medium icon.
*
*/
private @Nullable String medium;
/**
* @return URI to small icon.
*
*/
private @Nullable String small;
/**
* @return URI to wide icon.
*
*/
private @Nullable String wide;
private IconUrisResponse() {}
/**
* @return URI to hero icon.
*
*/
public Optional hero() {
return Optional.ofNullable(this.hero);
}
/**
* @return URI to large icon.
*
*/
public Optional large() {
return Optional.ofNullable(this.large);
}
/**
* @return URI to medium icon.
*
*/
public Optional medium() {
return Optional.ofNullable(this.medium);
}
/**
* @return URI to small icon.
*
*/
public Optional small() {
return Optional.ofNullable(this.small);
}
/**
* @return URI to wide icon.
*
*/
public Optional wide() {
return Optional.ofNullable(this.wide);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IconUrisResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String hero;
private @Nullable String large;
private @Nullable String medium;
private @Nullable String small;
private @Nullable String wide;
public Builder() {}
public Builder(IconUrisResponse defaults) {
Objects.requireNonNull(defaults);
this.hero = defaults.hero;
this.large = defaults.large;
this.medium = defaults.medium;
this.small = defaults.small;
this.wide = defaults.wide;
}
@CustomType.Setter
public Builder hero(@Nullable String hero) {
this.hero = hero;
return this;
}
@CustomType.Setter
public Builder large(@Nullable String large) {
this.large = large;
return this;
}
@CustomType.Setter
public Builder medium(@Nullable String medium) {
this.medium = medium;
return this;
}
@CustomType.Setter
public Builder small(@Nullable String small) {
this.small = small;
return this;
}
@CustomType.Setter
public Builder wide(@Nullable String wide) {
this.wide = wide;
return this;
}
public IconUrisResponse build() {
final var _resultValue = new IconUrisResponse();
_resultValue.hero = hero;
_resultValue.large = large;
_resultValue.medium = medium;
_resultValue.small = small;
_resultValue.wide = wide;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy