com.pulumi.azure.apimanagement.outputs.GetServiceHostnameConfigurationProxy 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.apimanagement.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetServiceHostnameConfigurationProxy {
/**
* @return Is this the default SSL Binding?
*
*/
private Boolean defaultSslBinding;
/**
* @return The Hostname used for the SCM URL.
*
*/
private String hostName;
/**
* @return The ID of the Key Vault Secret which contains the SSL Certificate.
*
*/
private String keyVaultId;
/**
* @return Is Client Certificate Negotiation enabled?
*
*/
private Boolean negotiateClientCertificate;
private GetServiceHostnameConfigurationProxy() {}
/**
* @return Is this the default SSL Binding?
*
*/
public Boolean defaultSslBinding() {
return this.defaultSslBinding;
}
/**
* @return The Hostname used for the SCM URL.
*
*/
public String hostName() {
return this.hostName;
}
/**
* @return The ID of the Key Vault Secret which contains the SSL Certificate.
*
*/
public String keyVaultId() {
return this.keyVaultId;
}
/**
* @return Is Client Certificate Negotiation enabled?
*
*/
public Boolean negotiateClientCertificate() {
return this.negotiateClientCertificate;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetServiceHostnameConfigurationProxy defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Boolean defaultSslBinding;
private String hostName;
private String keyVaultId;
private Boolean negotiateClientCertificate;
public Builder() {}
public Builder(GetServiceHostnameConfigurationProxy defaults) {
Objects.requireNonNull(defaults);
this.defaultSslBinding = defaults.defaultSslBinding;
this.hostName = defaults.hostName;
this.keyVaultId = defaults.keyVaultId;
this.negotiateClientCertificate = defaults.negotiateClientCertificate;
}
@CustomType.Setter
public Builder defaultSslBinding(Boolean defaultSslBinding) {
if (defaultSslBinding == null) {
throw new MissingRequiredPropertyException("GetServiceHostnameConfigurationProxy", "defaultSslBinding");
}
this.defaultSslBinding = defaultSslBinding;
return this;
}
@CustomType.Setter
public Builder hostName(String hostName) {
if (hostName == null) {
throw new MissingRequiredPropertyException("GetServiceHostnameConfigurationProxy", "hostName");
}
this.hostName = hostName;
return this;
}
@CustomType.Setter
public Builder keyVaultId(String keyVaultId) {
if (keyVaultId == null) {
throw new MissingRequiredPropertyException("GetServiceHostnameConfigurationProxy", "keyVaultId");
}
this.keyVaultId = keyVaultId;
return this;
}
@CustomType.Setter
public Builder negotiateClientCertificate(Boolean negotiateClientCertificate) {
if (negotiateClientCertificate == null) {
throw new MissingRequiredPropertyException("GetServiceHostnameConfigurationProxy", "negotiateClientCertificate");
}
this.negotiateClientCertificate = negotiateClientCertificate;
return this;
}
public GetServiceHostnameConfigurationProxy build() {
final var _resultValue = new GetServiceHostnameConfigurationProxy();
_resultValue.defaultSslBinding = defaultSslBinding;
_resultValue.hostName = hostName;
_resultValue.keyVaultId = keyVaultId;
_resultValue.negotiateClientCertificate = negotiateClientCertificate;
return _resultValue;
}
}
}