com.pulumi.azurenative.datafactory.outputs.AzureMLWebServiceFileResponse 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.azurenative.datafactory.outputs.LinkedServiceReferenceResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.util.Objects;
@CustomType
public final class AzureMLWebServiceFileResponse {
/**
* @return The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
*
*/
private Object filePath;
/**
* @return Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.
*
*/
private LinkedServiceReferenceResponse linkedServiceName;
private AzureMLWebServiceFileResponse() {}
/**
* @return The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
*
*/
public Object filePath() {
return this.filePath;
}
/**
* @return Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.
*
*/
public LinkedServiceReferenceResponse linkedServiceName() {
return this.linkedServiceName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AzureMLWebServiceFileResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Object filePath;
private LinkedServiceReferenceResponse linkedServiceName;
public Builder() {}
public Builder(AzureMLWebServiceFileResponse defaults) {
Objects.requireNonNull(defaults);
this.filePath = defaults.filePath;
this.linkedServiceName = defaults.linkedServiceName;
}
@CustomType.Setter
public Builder filePath(Object filePath) {
if (filePath == null) {
throw new MissingRequiredPropertyException("AzureMLWebServiceFileResponse", "filePath");
}
this.filePath = filePath;
return this;
}
@CustomType.Setter
public Builder linkedServiceName(LinkedServiceReferenceResponse linkedServiceName) {
if (linkedServiceName == null) {
throw new MissingRequiredPropertyException("AzureMLWebServiceFileResponse", "linkedServiceName");
}
this.linkedServiceName = linkedServiceName;
return this;
}
public AzureMLWebServiceFileResponse build() {
final var _resultValue = new AzureMLWebServiceFileResponse();
_resultValue.filePath = filePath;
_resultValue.linkedServiceName = linkedServiceName;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy