Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR sdk/datafactory/mgmt-v2018_06_01] [DataFactory] Xero add connectionProperties property #3416

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sdk/datafactory/mgmt-v2018_06_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.3.1</version>
<relativePath>../../parents/azure-arm-parent/pom.xml</relativePath>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-datafactory</artifactId>
<version>1.0.0-beta-2</version>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for DataFactory Management</name>
<description>This package contains Microsoft DataFactory Management SDK.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,23 @@ public class SapOpenHubLinkedService extends LinkedServiceInner {
* Host name of the SAP BW instance where the open hub destination is
* located. Type: string (or Expression with resultType string).
*/
@JsonProperty(value = "typeProperties.server", required = true)
@JsonProperty(value = "typeProperties.server")
private Object server;

/**
* System number of the BW system where the open hub destination is
* located. (Usually a two-digit decimal number represented as a string.)
* Type: string (or Expression with resultType string).
*/
@JsonProperty(value = "typeProperties.systemNumber", required = true)
@JsonProperty(value = "typeProperties.systemNumber")
private Object systemNumber;

/**
* Client ID of the client on the BW system where the open hub destination
* is located. (Usually a three-digit decimal number represented as a
* string) Type: string (or Expression with resultType string).
*/
@JsonProperty(value = "typeProperties.clientId", required = true)
@JsonProperty(value = "typeProperties.clientId")
private Object clientId;

/**
Expand All @@ -52,6 +52,13 @@ public class SapOpenHubLinkedService extends LinkedServiceInner {
@JsonProperty(value = "typeProperties.language")
private Object language;

/**
* SystemID of the SAP system where the table is located. Type: string (or
* Expression with resultType string).
*/
@JsonProperty(value = "typeProperties.systemId")
private Object systemId;

/**
* Username to access the SAP BW server where the open hub destination is
* located. Type: string (or Expression with resultType string).
Expand All @@ -66,6 +73,27 @@ public class SapOpenHubLinkedService extends LinkedServiceInner {
@JsonProperty(value = "typeProperties.password")
private SecretBase password;

/**
* The hostname of the SAP Message Server. Type: string (or Expression with
* resultType string).
*/
@JsonProperty(value = "typeProperties.messageServer")
private Object messageServer;

/**
* The service name or port number of the Message Server. Type: string (or
* Expression with resultType string).
*/
@JsonProperty(value = "typeProperties.messageServerService")
private Object messageServerService;

/**
* The Logon Group for the SAP System. Type: string (or Expression with
* resultType string).
*/
@JsonProperty(value = "typeProperties.logonGroup")
private Object logonGroup;

/**
* The encrypted credential used for authentication. Credentials are
* encrypted using the integration runtime credential manager. Type: string
Expand Down Expand Up @@ -154,6 +182,26 @@ public SapOpenHubLinkedService withLanguage(Object language) {
return this;
}

/**
* Get systemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
*
* @return the systemId value
*/
public Object systemId() {
return this.systemId;
}

/**
* Set systemID of the SAP system where the table is located. Type: string (or Expression with resultType string).
*
* @param systemId the systemId value to set
* @return the SapOpenHubLinkedService object itself.
*/
public SapOpenHubLinkedService withSystemId(Object systemId) {
this.systemId = systemId;
return this;
}

/**
* Get username to access the SAP BW server where the open hub destination is located. Type: string (or Expression with resultType string).
*
Expand Down Expand Up @@ -194,6 +242,66 @@ public SapOpenHubLinkedService withPassword(SecretBase password) {
return this;
}

/**
* Get the hostname of the SAP Message Server. Type: string (or Expression with resultType string).
*
* @return the messageServer value
*/
public Object messageServer() {
return this.messageServer;
}

/**
* Set the hostname of the SAP Message Server. Type: string (or Expression with resultType string).
*
* @param messageServer the messageServer value to set
* @return the SapOpenHubLinkedService object itself.
*/
public SapOpenHubLinkedService withMessageServer(Object messageServer) {
this.messageServer = messageServer;
return this;
}

/**
* Get the service name or port number of the Message Server. Type: string (or Expression with resultType string).
*
* @return the messageServerService value
*/
public Object messageServerService() {
return this.messageServerService;
}

/**
* Set the service name or port number of the Message Server. Type: string (or Expression with resultType string).
*
* @param messageServerService the messageServerService value to set
* @return the SapOpenHubLinkedService object itself.
*/
public SapOpenHubLinkedService withMessageServerService(Object messageServerService) {
this.messageServerService = messageServerService;
return this;
}

/**
* Get the Logon Group for the SAP System. Type: string (or Expression with resultType string).
*
* @return the logonGroup value
*/
public Object logonGroup() {
return this.logonGroup;
}

/**
* Set the Logon Group for the SAP System. Type: string (or Expression with resultType string).
*
* @param logonGroup the logonGroup value to set
* @return the SapOpenHubLinkedService object itself.
*/
public SapOpenHubLinkedService withLogonGroup(Object logonGroup) {
this.logonGroup = logonGroup;
return this;
}

/**
* Get the encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,17 @@
@JsonTypeName("Xero")
@JsonFlatten
public class XeroLinkedService extends LinkedServiceInner {
/**
* Properties used to connect to Xero. It is mutually exclusive with any
* other properties in the linked service. Type: object.
*/
@JsonProperty(value = "typeProperties.connectionProperties")
private Object connectionProperties;

/**
* The endpoint of the Xero server. (i.e. api.xero.com).
*/
@JsonProperty(value = "typeProperties.host", required = true)
@JsonProperty(value = "typeProperties.host")
private Object host;

/**
Expand Down Expand Up @@ -72,6 +79,26 @@ public class XeroLinkedService extends LinkedServiceInner {
@JsonProperty(value = "typeProperties.encryptedCredential")
private Object encryptedCredential;

/**
* Get properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
*
* @return the connectionProperties value
*/
public Object connectionProperties() {
return this.connectionProperties;
}

/**
* Set properties used to connect to Xero. It is mutually exclusive with any other properties in the linked service. Type: object.
*
* @param connectionProperties the connectionProperties value to set
* @return the XeroLinkedService object itself.
*/
public XeroLinkedService withConnectionProperties(Object connectionProperties) {
this.connectionProperties = connectionProperties;
return this;
}

/**
* Get the endpoint of the Xero server. (i.e. api.xero.com).
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.microsoft.azure.management.datafactory.v2018_06_01.MappingDataFlow;

/**
* Azure Data Factory nested object which contains a flow with data movements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,106 +9,14 @@
package com.microsoft.azure.management.datafactory.v2018_06_01.implementation;

import java.util.Map;

import com.microsoft.azure.management.datafactory.v2018_06_01.AmazonMWSObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AmazonRedshiftTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AmazonS3Dataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AvroDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AzureBlobDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AzureBlobFSDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AzureDataExplorerTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AzureDataLakeStoreDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AzureMariaDBTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AzureMySqlTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AzurePostgreSqlTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AzureSearchIndexDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AzureSqlDWTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AzureSqlMITableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AzureSqlTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.AzureTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.BinaryDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.CassandraTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.CommonDataServiceForAppsEntityDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.ConcurObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.CosmosDbMongoDbApiCollectionDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.CosmosDbSqlApiCollectionDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.CouchbaseTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.CustomDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.Db2TableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.DelimitedTextDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.DocumentDbCollectionDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.DrillTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.DynamicsAXResourceDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.DynamicsCrmEntityDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.DynamicsEntityDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.EloquaObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.ExcelDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.FileShareDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.GoogleAdWordsObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.GoogleBigQueryObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.GreenplumTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.HBaseObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.HiveObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.HttpDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.HubspotObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.ImpalaObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.InformixTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.JiraObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.JsonDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.LinkedServiceReference;
import com.microsoft.azure.management.datafactory.v2018_06_01.MagentoObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.MariaDBTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.MarketoObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.MicrosoftAccessTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.MongoDbCollectionDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.MongoDbV2CollectionDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.MySqlTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.NetezzaTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.ODataResourceDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.OdbcTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.Office365Dataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.OracleServiceCloudObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.OracleTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.OrcDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.ParameterSpecification;
import java.util.List;
import com.microsoft.azure.management.datafactory.v2018_06_01.DatasetFolder;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.microsoft.azure.management.datafactory.v2018_06_01.ParquetDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.PaypalObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.PhoenixObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.PostgreSqlTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.PrestoObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.QuickBooksObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.RelationalTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.ResponsysObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.RestResourceDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SalesforceMarketingCloudObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SalesforceObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SalesforceServiceCloudObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SapBwCubeDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SapCloudForCustomerResourceDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SapEccResourceDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SapHanaTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SapOpenHubTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SapTableResourceDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.ServiceNowObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SharePointOnlineListResourceDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.ShopifyObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SnowflakeDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SparkObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SqlServerTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SquareObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.SybaseTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.TeradataTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.VerticaTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.WebTableDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.XeroObjectDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.XmlDataset;
import com.microsoft.azure.management.datafactory.v2018_06_01.ZohoObjectDataset;

/**
* The Azure Data Factory nested object which identifies data within different
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.microsoft.azure.management.datafactory.v2018_06_01.ManagedIntegrationRuntime;
import com.microsoft.azure.management.datafactory.v2018_06_01.SelfHostedIntegrationRuntime;

/**
* Azure Data Factory nested object which serves as a compute resource for
Expand Down
Loading