
com.azure.resourcemanager.datafactory.models.DataworldLinkedService 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.DataworldLinkedServiceTypeProperties;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* Linked service for Dataworld.
*/
@Fluent
public final class DataworldLinkedService extends LinkedService {
/*
* Type of linked service.
*/
private String type = "Dataworld";
/*
* Dataworld linked service properties.
*/
private DataworldLinkedServiceTypeProperties innerTypeProperties = new DataworldLinkedServiceTypeProperties();
/**
* Creates an instance of DataworldLinkedService class.
*/
public DataworldLinkedService() {
}
/**
* Get the type property: Type of linked service.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the innerTypeProperties property: Dataworld linked service properties.
*
* @return the innerTypeProperties value.
*/
private DataworldLinkedServiceTypeProperties innerTypeProperties() {
return this.innerTypeProperties;
}
/**
* {@inheritDoc}
*/
@Override
public DataworldLinkedService withVersion(String version) {
super.withVersion(version);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public DataworldLinkedService withConnectVia(IntegrationRuntimeReference connectVia) {
super.withConnectVia(connectVia);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public DataworldLinkedService withDescription(String description) {
super.withDescription(description);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public DataworldLinkedService withParameters(Map parameters) {
super.withParameters(parameters);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public DataworldLinkedService withAnnotations(List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy