com.pulumi.googlenative.apigee.v1.outputs.GoogleCloudApigeeV1TlsInfoCommonNameResponse Maven / Gradle / Ivy
// *** 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.googlenative.apigee.v1.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GoogleCloudApigeeV1TlsInfoCommonNameResponse {
/**
* @return The TLS Common Name string of the certificate.
*
*/
private String value;
/**
* @return Indicates whether the cert should be matched against as a wildcard cert.
*
*/
private Boolean wildcardMatch;
private GoogleCloudApigeeV1TlsInfoCommonNameResponse() {}
/**
* @return The TLS Common Name string of the certificate.
*
*/
public String value() {
return this.value;
}
/**
* @return Indicates whether the cert should be matched against as a wildcard cert.
*
*/
public Boolean wildcardMatch() {
return this.wildcardMatch;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GoogleCloudApigeeV1TlsInfoCommonNameResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String value;
private Boolean wildcardMatch;
public Builder() {}
public Builder(GoogleCloudApigeeV1TlsInfoCommonNameResponse defaults) {
Objects.requireNonNull(defaults);
this.value = defaults.value;
this.wildcardMatch = defaults.wildcardMatch;
}
@CustomType.Setter
public Builder value(String value) {
this.value = Objects.requireNonNull(value);
return this;
}
@CustomType.Setter
public Builder wildcardMatch(Boolean wildcardMatch) {
this.wildcardMatch = Objects.requireNonNull(wildcardMatch);
return this;
}
public GoogleCloudApigeeV1TlsInfoCommonNameResponse build() {
final var o = new GoogleCloudApigeeV1TlsInfoCommonNameResponse();
o.value = value;
o.wildcardMatch = wildcardMatch;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy