
com.pulumi.azurenative.iotoperations.inputs.DataFlowEndpointAuthenticationX509Args 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.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
/**
* DataFlowEndpoint Authentication X509 properties
*
*/
public final class DataFlowEndpointAuthenticationX509Args extends com.pulumi.resources.ResourceArgs {
public static final DataFlowEndpointAuthenticationX509Args Empty = new DataFlowEndpointAuthenticationX509Args();
/**
* Secret reference of the X.509 certificate.
*
*/
@Import(name="secretRef", required=true)
private Output secretRef;
/**
* @return Secret reference of the X.509 certificate.
*
*/
public Output secretRef() {
return this.secretRef;
}
private DataFlowEndpointAuthenticationX509Args() {}
private DataFlowEndpointAuthenticationX509Args(DataFlowEndpointAuthenticationX509Args $) {
this.secretRef = $.secretRef;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DataFlowEndpointAuthenticationX509Args defaults) {
return new Builder(defaults);
}
public static final class Builder {
private DataFlowEndpointAuthenticationX509Args $;
public Builder() {
$ = new DataFlowEndpointAuthenticationX509Args();
}
public Builder(DataFlowEndpointAuthenticationX509Args defaults) {
$ = new DataFlowEndpointAuthenticationX509Args(Objects.requireNonNull(defaults));
}
/**
* @param secretRef Secret reference of the X.509 certificate.
*
* @return builder
*
*/
public Builder secretRef(Output secretRef) {
$.secretRef = secretRef;
return this;
}
/**
* @param secretRef Secret reference of the X.509 certificate.
*
* @return builder
*
*/
public Builder secretRef(String secretRef) {
return secretRef(Output.of(secretRef));
}
public DataFlowEndpointAuthenticationX509Args build() {
if ($.secretRef == null) {
throw new MissingRequiredPropertyException("DataFlowEndpointAuthenticationX509Args", "secretRef");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy