com.pulumi.azure.servicefabric.outputs.ManagedClusterAuthenticationCertificate 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.servicefabric.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ManagedClusterAuthenticationCertificate {
/**
* @return The certificate's CN.
*
*/
private @Nullable String commonName;
/**
* @return The thumbprint of the certificate.
*
*/
private String thumbprint;
/**
* @return The type of the certificate. Can be `AdminClient` or `ReadOnlyClient`.
*
*/
private String type;
private ManagedClusterAuthenticationCertificate() {}
/**
* @return The certificate's CN.
*
*/
public Optional commonName() {
return Optional.ofNullable(this.commonName);
}
/**
* @return The thumbprint of the certificate.
*
*/
public String thumbprint() {
return this.thumbprint;
}
/**
* @return The type of the certificate. Can be `AdminClient` or `ReadOnlyClient`.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ManagedClusterAuthenticationCertificate defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String commonName;
private String thumbprint;
private String type;
public Builder() {}
public Builder(ManagedClusterAuthenticationCertificate defaults) {
Objects.requireNonNull(defaults);
this.commonName = defaults.commonName;
this.thumbprint = defaults.thumbprint;
this.type = defaults.type;
}
@CustomType.Setter
public Builder commonName(@Nullable String commonName) {
this.commonName = commonName;
return this;
}
@CustomType.Setter
public Builder thumbprint(String thumbprint) {
if (thumbprint == null) {
throw new MissingRequiredPropertyException("ManagedClusterAuthenticationCertificate", "thumbprint");
}
this.thumbprint = thumbprint;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("ManagedClusterAuthenticationCertificate", "type");
}
this.type = type;
return this;
}
public ManagedClusterAuthenticationCertificate build() {
final var _resultValue = new ManagedClusterAuthenticationCertificate();
_resultValue.commonName = commonName;
_resultValue.thumbprint = thumbprint;
_resultValue.type = type;
return _resultValue;
}
}
}