com.pulumi.azurenative.datafactory.outputs.WebAnonymousAuthenticationResponse 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.datafactory.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class WebAnonymousAuthenticationResponse {
/**
* @return Type of authentication used to connect to the web table source.
* Expected value is 'Anonymous'.
*
*/
private String authenticationType;
/**
* @return The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
*
*/
private Object url;
private WebAnonymousAuthenticationResponse() {}
/**
* @return Type of authentication used to connect to the web table source.
* Expected value is 'Anonymous'.
*
*/
public String authenticationType() {
return this.authenticationType;
}
/**
* @return The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
*
*/
public Object url() {
return this.url;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WebAnonymousAuthenticationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String authenticationType;
private Object url;
public Builder() {}
public Builder(WebAnonymousAuthenticationResponse defaults) {
Objects.requireNonNull(defaults);
this.authenticationType = defaults.authenticationType;
this.url = defaults.url;
}
@CustomType.Setter
public Builder authenticationType(String authenticationType) {
if (authenticationType == null) {
throw new MissingRequiredPropertyException("WebAnonymousAuthenticationResponse", "authenticationType");
}
this.authenticationType = authenticationType;
return this;
}
@CustomType.Setter
public Builder url(Object url) {
if (url == null) {
throw new MissingRequiredPropertyException("WebAnonymousAuthenticationResponse", "url");
}
this.url = url;
return this;
}
public WebAnonymousAuthenticationResponse build() {
final var _resultValue = new WebAnonymousAuthenticationResponse();
_resultValue.authenticationType = authenticationType;
_resultValue.url = url;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy