
com.pulumi.azurenative.apicenter.outputs.OnboardingResponse 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.apicenter.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class OnboardingResponse {
/**
* @return The location of the development portal
*
*/
private @Nullable List developerPortalUri;
/**
* @return Onboarding guide.
*
*/
private @Nullable String instructions;
private OnboardingResponse() {}
/**
* @return The location of the development portal
*
*/
public List developerPortalUri() {
return this.developerPortalUri == null ? List.of() : this.developerPortalUri;
}
/**
* @return Onboarding guide.
*
*/
public Optional instructions() {
return Optional.ofNullable(this.instructions);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(OnboardingResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List developerPortalUri;
private @Nullable String instructions;
public Builder() {}
public Builder(OnboardingResponse defaults) {
Objects.requireNonNull(defaults);
this.developerPortalUri = defaults.developerPortalUri;
this.instructions = defaults.instructions;
}
@CustomType.Setter
public Builder developerPortalUri(@Nullable List developerPortalUri) {
this.developerPortalUri = developerPortalUri;
return this;
}
public Builder developerPortalUri(String... developerPortalUri) {
return developerPortalUri(List.of(developerPortalUri));
}
@CustomType.Setter
public Builder instructions(@Nullable String instructions) {
this.instructions = instructions;
return this;
}
public OnboardingResponse build() {
final var _resultValue = new OnboardingResponse();
_resultValue.developerPortalUri = developerPortalUri;
_resultValue.instructions = instructions;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy