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