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