
com.pulumi.azurenative.iotoperations.outputs.DataFlowEndpointAuthenticationX509Response 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.iotoperations.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class DataFlowEndpointAuthenticationX509Response {
/**
* @return Secret reference of the X.509 certificate.
*
*/
private String secretRef;
private DataFlowEndpointAuthenticationX509Response() {}
/**
* @return Secret reference of the X.509 certificate.
*
*/
public String secretRef() {
return this.secretRef;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DataFlowEndpointAuthenticationX509Response defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String secretRef;
public Builder() {}
public Builder(DataFlowEndpointAuthenticationX509Response defaults) {
Objects.requireNonNull(defaults);
this.secretRef = defaults.secretRef;
}
@CustomType.Setter
public Builder secretRef(String secretRef) {
if (secretRef == null) {
throw new MissingRequiredPropertyException("DataFlowEndpointAuthenticationX509Response", "secretRef");
}
this.secretRef = secretRef;
return this;
}
public DataFlowEndpointAuthenticationX509Response build() {
final var _resultValue = new DataFlowEndpointAuthenticationX509Response();
_resultValue.secretRef = secretRef;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy