com.pulumi.azurenative.solutions.outputs.ApplicationPackageSupportUrlsResponse 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.solutions.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 ApplicationPackageSupportUrlsResponse {
/**
* @return The government cloud support URL.
*
*/
private @Nullable String governmentCloud;
/**
* @return The public azure support URL.
*
*/
private @Nullable String publicAzure;
private ApplicationPackageSupportUrlsResponse() {}
/**
* @return The government cloud support URL.
*
*/
public Optional governmentCloud() {
return Optional.ofNullable(this.governmentCloud);
}
/**
* @return The public azure support URL.
*
*/
public Optional publicAzure() {
return Optional.ofNullable(this.publicAzure);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ApplicationPackageSupportUrlsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String governmentCloud;
private @Nullable String publicAzure;
public Builder() {}
public Builder(ApplicationPackageSupportUrlsResponse defaults) {
Objects.requireNonNull(defaults);
this.governmentCloud = defaults.governmentCloud;
this.publicAzure = defaults.publicAzure;
}
@CustomType.Setter
public Builder governmentCloud(@Nullable String governmentCloud) {
this.governmentCloud = governmentCloud;
return this;
}
@CustomType.Setter
public Builder publicAzure(@Nullable String publicAzure) {
this.publicAzure = publicAzure;
return this;
}
public ApplicationPackageSupportUrlsResponse build() {
final var _resultValue = new ApplicationPackageSupportUrlsResponse();
_resultValue.governmentCloud = governmentCloud;
_resultValue.publicAzure = publicAzure;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy