
com.azure.resourcemanager.datafactory.models.MappingDataFlow 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.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.datafactory.fluent.models.MappingDataFlowTypeProperties;
import java.io.IOException;
import java.util.List;
/**
* Mapping data flow.
*/
@Fluent
public final class MappingDataFlow extends DataFlow {
/*
* Type of data flow.
*/
private String type = "MappingDataFlow";
/*
* Mapping data flow type properties.
*/
private MappingDataFlowTypeProperties innerTypeProperties;
/**
* Creates an instance of MappingDataFlow class.
*/
public MappingDataFlow() {
}
/**
* Get the type property: Type of data flow.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the innerTypeProperties property: Mapping data flow type properties.
*
* @return the innerTypeProperties value.
*/
private MappingDataFlowTypeProperties innerTypeProperties() {
return this.innerTypeProperties;
}
/**
* {@inheritDoc}
*/
@Override
public MappingDataFlow withDescription(String description) {
super.withDescription(description);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MappingDataFlow withAnnotations(List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy