com.pulumi.azure.containerapp.outputs.AppIngressCustomDomain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.containerapp.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 AppIngressCustomDomain {
/**
* @return The Binding type.
*
*/
private @Nullable String certificateBindingType;
/**
* @return The ID of the Container App Environment Certificate.
*
*/
private @Nullable String certificateId;
/**
* @return The name for this Container App. Changing this forces a new resource to be created.
*
*/
private @Nullable String name;
private AppIngressCustomDomain() {}
/**
* @return The Binding type.
*
*/
public Optional certificateBindingType() {
return Optional.ofNullable(this.certificateBindingType);
}
/**
* @return The ID of the Container App Environment Certificate.
*
*/
public Optional certificateId() {
return Optional.ofNullable(this.certificateId);
}
/**
* @return The name for this Container App. Changing this forces a new resource to be created.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AppIngressCustomDomain defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String certificateBindingType;
private @Nullable String certificateId;
private @Nullable String name;
public Builder() {}
public Builder(AppIngressCustomDomain defaults) {
Objects.requireNonNull(defaults);
this.certificateBindingType = defaults.certificateBindingType;
this.certificateId = defaults.certificateId;
this.name = defaults.name;
}
@CustomType.Setter
public Builder certificateBindingType(@Nullable String certificateBindingType) {
this.certificateBindingType = certificateBindingType;
return this;
}
@CustomType.Setter
public Builder certificateId(@Nullable String certificateId) {
this.certificateId = certificateId;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
public AppIngressCustomDomain build() {
final var _resultValue = new AppIngressCustomDomain();
_resultValue.certificateBindingType = certificateBindingType;
_resultValue.certificateId = certificateId;
_resultValue.name = name;
return _resultValue;
}
}
}