
com.azure.resourcemanager.datafactory.models.HttpDataset Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.datafactory.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.datafactory.fluent.models.HttpDatasetTypeProperties;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* A file in an HTTP web server.
*/
@Fluent
public final class HttpDataset extends Dataset {
/*
* Type of dataset.
*/
private String type = "HttpFile";
/*
* Properties specific to this dataset type.
*/
private HttpDatasetTypeProperties innerTypeProperties;
/**
* Creates an instance of HttpDataset class.
*/
public HttpDataset() {
}
/**
* Get the type property: Type of dataset.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the innerTypeProperties property: Properties specific to this dataset type.
*
* @return the innerTypeProperties value.
*/
private HttpDatasetTypeProperties innerTypeProperties() {
return this.innerTypeProperties;
}
/**
* {@inheritDoc}
*/
@Override
public HttpDataset withDescription(String description) {
super.withDescription(description);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public HttpDataset withStructure(Object structure) {
super.withStructure(structure);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public HttpDataset withSchema(Object schema) {
super.withSchema(schema);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public HttpDataset withLinkedServiceName(LinkedServiceReference linkedServiceName) {
super.withLinkedServiceName(linkedServiceName);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public HttpDataset withParameters(Map parameters) {
super.withParameters(parameters);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public HttpDataset withAnnotations(List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy