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