
com.azure.resourcemanager.datafactory.models.AzureTableDataset 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.AzureTableDatasetTypeProperties;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* The Azure Table storage dataset.
*/
@Fluent
public final class AzureTableDataset extends Dataset {
/*
* Type of dataset.
*/
private String type = "AzureTable";
/*
* Azure Table dataset properties.
*/
private AzureTableDatasetTypeProperties innerTypeProperties = new AzureTableDatasetTypeProperties();
/**
* Creates an instance of AzureTableDataset class.
*/
public AzureTableDataset() {
}
/**
* Get the type property: Type of dataset.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the innerTypeProperties property: Azure Table dataset properties.
*
* @return the innerTypeProperties value.
*/
private AzureTableDatasetTypeProperties innerTypeProperties() {
return this.innerTypeProperties;
}
/**
* {@inheritDoc}
*/
@Override
public AzureTableDataset withDescription(String description) {
super.withDescription(description);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureTableDataset withStructure(Object structure) {
super.withStructure(structure);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureTableDataset withSchema(Object schema) {
super.withSchema(schema);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureTableDataset withLinkedServiceName(LinkedServiceReference linkedServiceName) {
super.withLinkedServiceName(linkedServiceName);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureTableDataset withParameters(Map parameters) {
super.withParameters(parameters);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureTableDataset withAnnotations(List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy