
com.pulumi.azurenative.datafactory.inputs.WebAnonymousAuthenticationArgs 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.azurenative.datafactory.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
/**
* A WebLinkedService that uses anonymous authentication to communicate with an HTTP endpoint.
*
*/
public final class WebAnonymousAuthenticationArgs extends com.pulumi.resources.ResourceArgs {
public static final WebAnonymousAuthenticationArgs Empty = new WebAnonymousAuthenticationArgs();
/**
* Type of authentication used to connect to the web table source.
* Expected value is 'Anonymous'.
*
*/
@Import(name="authenticationType", required=true)
private Output authenticationType;
/**
* @return Type of authentication used to connect to the web table source.
* Expected value is 'Anonymous'.
*
*/
public Output authenticationType() {
return this.authenticationType;
}
/**
* The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).
*
*/
@Import(name="url", required=true)
private Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy