datafactory

package
v19.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 22, 2019 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Overview

Package datafactory implements the Azure ARM Datafactory service API version 2017-09-01-preview.

The Azure Data Factory V2 management API provides a RESTful set of web services that interact with Azure Data Factory V2 services.

Index

Constants

View Source
const (
	// DefaultBaseURI is the default URI used for the service Datafactory
	DefaultBaseURI = "https://management.azure.com"
)

Variables

This section is empty.

Functions

func UserAgent

func UserAgent() string

UserAgent returns the UserAgent string to use when sending http.Requests.

func Version

func Version() string

Version returns the semantic version (see http://semver.org) of the client.

Types

type Activity

type Activity struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

Activity a pipeline activity.

func (Activity) AsActivity

func (a Activity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for Activity.

func (Activity) AsAzureMLBatchExecutionActivity

func (a Activity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for Activity.

func (Activity) AsAzureMLUpdateResourceActivity

func (a Activity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for Activity.

func (Activity) AsBasicActivity

func (a Activity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for Activity.

func (Activity) AsBasicControlActivity

func (a Activity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for Activity.

func (Activity) AsBasicExecutionActivity

func (a Activity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for Activity.

func (Activity) AsControlActivity

func (a Activity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for Activity.

func (Activity) AsCopyActivity

func (a Activity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for Activity.

func (Activity) AsCustomActivity

func (a Activity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for Activity.

func (Activity) AsDataLakeAnalyticsUSQLActivity

func (a Activity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for Activity.

func (Activity) AsDatabricksNotebookActivity

func (a Activity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for Activity.

func (Activity) AsExecutePipelineActivity

func (a Activity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for Activity.

func (Activity) AsExecuteSSISPackageActivity

func (a Activity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for Activity.

func (Activity) AsExecutionActivity

func (a Activity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for Activity.

func (Activity) AsFilterActivity

func (a Activity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for Activity.

func (Activity) AsForEachActivity

func (a Activity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for Activity.

func (Activity) AsGetMetadataActivity

func (a Activity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for Activity.

func (Activity) AsHDInsightHiveActivity

func (a Activity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for Activity.

func (Activity) AsHDInsightMapReduceActivity

func (a Activity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for Activity.

func (Activity) AsHDInsightPigActivity

func (a Activity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for Activity.

func (Activity) AsHDInsightSparkActivity

func (a Activity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for Activity.

func (Activity) AsHDInsightStreamingActivity

func (a Activity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for Activity.

func (Activity) AsIfConditionActivity

func (a Activity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for Activity.

func (Activity) AsLookupActivity

func (a Activity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for Activity.

func (Activity) AsSQLServerStoredProcedureActivity

func (a Activity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for Activity.

func (Activity) AsUntilActivity

func (a Activity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for Activity.

func (Activity) AsWaitActivity

func (a Activity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for Activity.

func (Activity) AsWebActivity

func (a Activity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for Activity.

func (Activity) MarshalJSON

func (a Activity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for Activity.

type ActivityDependency

type ActivityDependency struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Activity - Activity name.
	Activity *string `json:"activity,omitempty"`
	// DependencyConditions - Match-Condition for the dependency.
	DependencyConditions *[]DependencyCondition `json:"dependencyConditions,omitempty"`
}

ActivityDependency activity dependency information.

func (ActivityDependency) MarshalJSON

func (ad ActivityDependency) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ActivityDependency.

type ActivityPolicy

type ActivityPolicy struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Timeout - Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	Timeout interface{} `json:"timeout,omitempty"`
	// Retry - Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
	Retry interface{} `json:"retry,omitempty"`
	// RetryIntervalInSeconds - Interval between each retry attempt (in seconds). The default is 30 sec.
	RetryIntervalInSeconds *int32 `json:"retryIntervalInSeconds,omitempty"`
	// SecureOutput - When set to true, Output from activity is considered as secure and will not be logged to monitoring.
	SecureOutput *bool `json:"secureOutput,omitempty"`
}

ActivityPolicy execution policy for an activity.

func (ActivityPolicy) MarshalJSON

func (ap ActivityPolicy) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ActivityPolicy.

type ActivityRun

type ActivityRun struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// PipelineName - The name of the pipeline.
	PipelineName *string `json:"pipelineName,omitempty"`
	// PipelineRunID - The id of the pipeline run.
	PipelineRunID *string `json:"pipelineRunId,omitempty"`
	// ActivityName - The name of the activity.
	ActivityName *string `json:"activityName,omitempty"`
	// ActivityType - The type of the activity.
	ActivityType *string `json:"activityType,omitempty"`
	// ActivityRunID - The id of the activity run.
	ActivityRunID *string `json:"activityRunId,omitempty"`
	// LinkedServiceName - The name of the compute linked service.
	LinkedServiceName *string `json:"linkedServiceName,omitempty"`
	// Status - The status of the activity run.
	Status *string `json:"status,omitempty"`
	// ActivityRunStart - The start time of the activity run in 'ISO 8601' format.
	ActivityRunStart *date.Time `json:"activityRunStart,omitempty"`
	// ActivityRunEnd - The end time of the activity run in 'ISO 8601' format.
	ActivityRunEnd *date.Time `json:"activityRunEnd,omitempty"`
	// DurationInMs - The duration of the activity run.
	DurationInMs *int32 `json:"durationInMs,omitempty"`
	// Input - The input for the activity.
	Input interface{} `json:"input,omitempty"`
	// Output - The output for the activity.
	Output interface{} `json:"output,omitempty"`
	// Error - The error if any from the activity run.
	Error interface{} `json:"error,omitempty"`
}

ActivityRun information about an activity run in a pipeline.

func (ActivityRun) MarshalJSON

func (ar ActivityRun) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ActivityRun.

type ActivityRunsClient

type ActivityRunsClient struct {
	BaseClient
}

ActivityRunsClient is the the Azure Data Factory V2 management API provides a RESTful set of web services that interact with Azure Data Factory V2 services.

func NewActivityRunsClient

func NewActivityRunsClient(subscriptionID string) ActivityRunsClient

NewActivityRunsClient creates an instance of the ActivityRunsClient client.

func NewActivityRunsClientWithBaseURI

func NewActivityRunsClientWithBaseURI(baseURI string, subscriptionID string) ActivityRunsClient

NewActivityRunsClientWithBaseURI creates an instance of the ActivityRunsClient client.

func (ActivityRunsClient) ListByPipelineRun

func (client ActivityRunsClient) ListByPipelineRun(ctx context.Context, resourceGroupName string, factoryName string, runID string, startTime date.Time, endTime date.Time, status string, activityName string, linkedServiceName string) (result ActivityRunsListResponsePage, err error)

ListByPipelineRun list activity runs based on input filter conditions. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. runID - the pipeline run identifier. startTime - the start time of activity runs in ISO8601 format. endTime - the end time of activity runs in ISO8601 format. status - the status of the pipeline run. activityName - the name of the activity. linkedServiceName - the linked service name.

func (ActivityRunsClient) ListByPipelineRunComplete

func (client ActivityRunsClient) ListByPipelineRunComplete(ctx context.Context, resourceGroupName string, factoryName string, runID string, startTime date.Time, endTime date.Time, status string, activityName string, linkedServiceName string) (result ActivityRunsListResponseIterator, err error)

ListByPipelineRunComplete enumerates all values, automatically crossing page boundaries as required.

func (ActivityRunsClient) ListByPipelineRunPreparer

func (client ActivityRunsClient) ListByPipelineRunPreparer(ctx context.Context, resourceGroupName string, factoryName string, runID string, startTime date.Time, endTime date.Time, status string, activityName string, linkedServiceName string) (*http.Request, error)

ListByPipelineRunPreparer prepares the ListByPipelineRun request.

func (ActivityRunsClient) ListByPipelineRunResponder

func (client ActivityRunsClient) ListByPipelineRunResponder(resp *http.Response) (result ActivityRunsListResponse, err error)

ListByPipelineRunResponder handles the response to the ListByPipelineRun request. The method always closes the http.Response Body.

func (ActivityRunsClient) ListByPipelineRunSender

func (client ActivityRunsClient) ListByPipelineRunSender(req *http.Request) (*http.Response, error)

ListByPipelineRunSender sends the ListByPipelineRun request. The method will close the http.Response Body if it receives an error.

type ActivityRunsListResponse

type ActivityRunsListResponse struct {
	autorest.Response `json:"-"`
	// Value - List of activity runs.
	Value *[]ActivityRun `json:"value,omitempty"`
	// NextLink - The link to the next page of results, if any remaining results exist.
	NextLink *string `json:"nextLink,omitempty"`
}

ActivityRunsListResponse a list activity runs.

func (ActivityRunsListResponse) IsEmpty

func (arlr ActivityRunsListResponse) IsEmpty() bool

IsEmpty returns true if the ListResult contains no values.

type ActivityRunsListResponseIterator

type ActivityRunsListResponseIterator struct {
	// contains filtered or unexported fields
}

ActivityRunsListResponseIterator provides access to a complete listing of ActivityRun values.

func (*ActivityRunsListResponseIterator) Next

Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.

func (ActivityRunsListResponseIterator) NotDone

func (iter ActivityRunsListResponseIterator) NotDone() bool

NotDone returns true if the enumeration should be started or is not yet complete.

func (ActivityRunsListResponseIterator) Response

Response returns the raw server response from the last page request.

func (ActivityRunsListResponseIterator) Value

Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.

type ActivityRunsListResponsePage

type ActivityRunsListResponsePage struct {
	// contains filtered or unexported fields
}

ActivityRunsListResponsePage contains a page of ActivityRun values.

func (*ActivityRunsListResponsePage) Next

func (page *ActivityRunsListResponsePage) Next() error

Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.

func (ActivityRunsListResponsePage) NotDone

func (page ActivityRunsListResponsePage) NotDone() bool

NotDone returns true if the page enumeration should be started or is not yet complete.

func (ActivityRunsListResponsePage) Response

Response returns the raw server response from the last page request.

func (ActivityRunsListResponsePage) Values

func (page ActivityRunsListResponsePage) Values() []ActivityRun

Values returns the slice of values for the current page or nil if there are no values.

type AmazonMWSLinkedService

type AmazonMWSLinkedService struct {
	// AmazonMWSLinkedServiceTypeProperties - Amazon Marketplace Web Service linked service properties.
	*AmazonMWSLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AmazonMWSLinkedService amazon Marketplace Web Service linked service.

func (AmazonMWSLinkedService) AsAmazonMWSLinkedService

func (amls AmazonMWSLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAmazonRedshiftLinkedService

func (amls AmazonMWSLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAmazonS3LinkedService

func (amls AmazonMWSLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAzureBatchLinkedService

func (amls AmazonMWSLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (amls AmazonMWSLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAzureDataLakeStoreLinkedService

func (amls AmazonMWSLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAzureDatabricksLinkedService

func (amls AmazonMWSLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAzureKeyVaultLinkedService

func (amls AmazonMWSLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAzureMLLinkedService

func (amls AmazonMWSLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAzureMySQLLinkedService

func (amls AmazonMWSLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAzurePostgreSQLLinkedService

func (amls AmazonMWSLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAzureSQLDWLinkedService

func (amls AmazonMWSLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAzureSQLDatabaseLinkedService

func (amls AmazonMWSLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAzureSearchLinkedService

func (amls AmazonMWSLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsAzureStorageLinkedService

func (amls AmazonMWSLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsBasicLinkedService

func (amls AmazonMWSLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsCassandraLinkedService

func (amls AmazonMWSLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsConcurLinkedService

func (amls AmazonMWSLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsCosmosDbLinkedService

func (amls AmazonMWSLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsCouchbaseLinkedService

func (amls AmazonMWSLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsCustomDataSourceLinkedService

func (amls AmazonMWSLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsDb2LinkedService

func (amls AmazonMWSLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsDrillLinkedService

func (amls AmazonMWSLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsDynamicsLinkedService

func (amls AmazonMWSLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsEloquaLinkedService

func (amls AmazonMWSLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsFileServerLinkedService

func (amls AmazonMWSLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsFtpServerLinkedService

func (amls AmazonMWSLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsGoogleBigQueryLinkedService

func (amls AmazonMWSLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsGreenplumLinkedService

func (amls AmazonMWSLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsHBaseLinkedService

func (amls AmazonMWSLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsHDInsightLinkedService

func (amls AmazonMWSLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsHDInsightOnDemandLinkedService

func (amls AmazonMWSLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsHTTPLinkedService

func (amls AmazonMWSLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsHdfsLinkedService

func (amls AmazonMWSLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsHiveLinkedService

func (amls AmazonMWSLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsHubspotLinkedService

func (amls AmazonMWSLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsImpalaLinkedService

func (amls AmazonMWSLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsJiraLinkedService

func (amls AmazonMWSLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsLinkedService

func (amls AmazonMWSLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsMagentoLinkedService

func (amls AmazonMWSLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsMariaDBLinkedService

func (amls AmazonMWSLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsMarketoLinkedService

func (amls AmazonMWSLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsMongoDbLinkedService

func (amls AmazonMWSLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsMySQLLinkedService

func (amls AmazonMWSLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsNetezzaLinkedService

func (amls AmazonMWSLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsODataLinkedService

func (amls AmazonMWSLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsOdbcLinkedService

func (amls AmazonMWSLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsOracleLinkedService

func (amls AmazonMWSLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsPaypalLinkedService

func (amls AmazonMWSLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsPhoenixLinkedService

func (amls AmazonMWSLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsPostgreSQLLinkedService

func (amls AmazonMWSLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsPrestoLinkedService

func (amls AmazonMWSLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsQuickBooksLinkedService

func (amls AmazonMWSLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsResponsysLinkedService

func (amls AmazonMWSLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsSQLServerLinkedService

func (amls AmazonMWSLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsSalesforceLinkedService

func (amls AmazonMWSLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsSalesforceMarketingCloudLinkedService

func (amls AmazonMWSLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsSapBWLinkedService

func (amls AmazonMWSLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsSapCloudForCustomerLinkedService

func (amls AmazonMWSLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsSapEccLinkedService

func (amls AmazonMWSLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsSapHanaLinkedService

func (amls AmazonMWSLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsServiceNowLinkedService

func (amls AmazonMWSLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsSftpServerLinkedService

func (amls AmazonMWSLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsShopifyLinkedService

func (amls AmazonMWSLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsSparkLinkedService

func (amls AmazonMWSLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsSquareLinkedService

func (amls AmazonMWSLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsSybaseLinkedService

func (amls AmazonMWSLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsTeradataLinkedService

func (amls AmazonMWSLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsVerticaLinkedService

func (amls AmazonMWSLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsWebLinkedService

func (amls AmazonMWSLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsXeroLinkedService

func (amls AmazonMWSLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) AsZohoLinkedService

func (amls AmazonMWSLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AmazonMWSLinkedService.

func (AmazonMWSLinkedService) MarshalJSON

func (amls AmazonMWSLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AmazonMWSLinkedService.

func (*AmazonMWSLinkedService) UnmarshalJSON

func (amls *AmazonMWSLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AmazonMWSLinkedService struct.

type AmazonMWSLinkedServiceTypeProperties

type AmazonMWSLinkedServiceTypeProperties struct {
	// Endpoint - The endpoint of the Amazon MWS server, (i.e. mws.amazonservices.com)
	Endpoint interface{} `json:"endpoint,omitempty"`
	// MarketplaceID - The Amazon Marketplace ID you want to retrieve data from. To retrive data from multiple Marketplace IDs, seperate them with a comma (,). (i.e. A2EUQ1WTGCTBG2)
	MarketplaceID interface{} `json:"marketplaceID,omitempty"`
	// SellerID - The Amazon seller ID.
	SellerID interface{} `json:"sellerID,omitempty"`
	// MwsAuthToken - The Amazon MWS authentication token.
	MwsAuthToken BasicSecretBase `json:"mwsAuthToken,omitempty"`
	// AccessKeyID - The access key id used to access data.
	AccessKeyID interface{} `json:"accessKeyId,omitempty"`
	// SecretKey - The secret key used to access data.
	SecretKey BasicSecretBase `json:"secretKey,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AmazonMWSLinkedServiceTypeProperties amazon Marketplace Web Service linked service properties.

func (*AmazonMWSLinkedServiceTypeProperties) UnmarshalJSON

func (amlstp *AmazonMWSLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AmazonMWSLinkedServiceTypeProperties struct.

type AmazonMWSObjectDataset

type AmazonMWSObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

AmazonMWSObjectDataset amazon Marketplace Web Service dataset.

func (AmazonMWSObjectDataset) AsAmazonMWSObjectDataset

func (amod AmazonMWSObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsAmazonS3Dataset

func (amod AmazonMWSObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsAzureBlobDataset

func (amod AmazonMWSObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsAzureDataLakeStoreDataset

func (amod AmazonMWSObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsAzureMySQLTableDataset

func (amod AmazonMWSObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsAzurePostgreSQLTableDataset

func (amod AmazonMWSObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsAzureSQLDWTableDataset

func (amod AmazonMWSObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsAzureSQLTableDataset

func (amod AmazonMWSObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsAzureSearchIndexDataset

func (amod AmazonMWSObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsAzureTableDataset

func (amod AmazonMWSObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsBasicDataset

func (amod AmazonMWSObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsCassandraTableDataset

func (amod AmazonMWSObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsConcurObjectDataset

func (amod AmazonMWSObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsCouchbaseTableDataset

func (amod AmazonMWSObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsCustomDataset

func (amod AmazonMWSObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsDataset

func (amod AmazonMWSObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsDocumentDbCollectionDataset

func (amod AmazonMWSObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsDrillTableDataset

func (amod AmazonMWSObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsDynamicsEntityDataset

func (amod AmazonMWSObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsEloquaObjectDataset

func (amod AmazonMWSObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsFileShareDataset

func (amod AmazonMWSObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsGoogleBigQueryObjectDataset

func (amod AmazonMWSObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsGreenplumTableDataset

func (amod AmazonMWSObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsHBaseObjectDataset

func (amod AmazonMWSObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsHTTPDataset

func (amod AmazonMWSObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsHiveObjectDataset

func (amod AmazonMWSObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsHubspotObjectDataset

func (amod AmazonMWSObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsImpalaObjectDataset

func (amod AmazonMWSObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsJiraObjectDataset

func (amod AmazonMWSObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsMagentoObjectDataset

func (amod AmazonMWSObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsMariaDBTableDataset

func (amod AmazonMWSObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsMarketoObjectDataset

func (amod AmazonMWSObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsMongoDbCollectionDataset

func (amod AmazonMWSObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsNetezzaTableDataset

func (amod AmazonMWSObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsODataResourceDataset

func (amod AmazonMWSObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsOracleTableDataset

func (amod AmazonMWSObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsPaypalObjectDataset

func (amod AmazonMWSObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsPhoenixObjectDataset

func (amod AmazonMWSObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsPrestoObjectDataset

func (amod AmazonMWSObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsQuickBooksObjectDataset

func (amod AmazonMWSObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsRelationalTableDataset

func (amod AmazonMWSObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsResponsysObjectDataset

func (amod AmazonMWSObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsSQLServerTableDataset

func (amod AmazonMWSObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (amod AmazonMWSObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsSalesforceObjectDataset

func (amod AmazonMWSObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsSapCloudForCustomerResourceDataset

func (amod AmazonMWSObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsSapEccResourceDataset

func (amod AmazonMWSObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsServiceNowObjectDataset

func (amod AmazonMWSObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsShopifyObjectDataset

func (amod AmazonMWSObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsSparkObjectDataset

func (amod AmazonMWSObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsSquareObjectDataset

func (amod AmazonMWSObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsVerticaTableDataset

func (amod AmazonMWSObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsWebTableDataset

func (amod AmazonMWSObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsXeroObjectDataset

func (amod AmazonMWSObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) AsZohoObjectDataset

func (amod AmazonMWSObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for AmazonMWSObjectDataset.

func (AmazonMWSObjectDataset) MarshalJSON

func (amod AmazonMWSObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AmazonMWSObjectDataset.

type AmazonMWSSource

type AmazonMWSSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

AmazonMWSSource a copy activity Amazon Marketplace Web Service source.

func (AmazonMWSSource) AsAmazonMWSSource

func (ams AmazonMWSSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsAmazonRedshiftSource

func (ams AmazonMWSSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsAzureDataLakeStoreSource

func (ams AmazonMWSSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsAzureMySQLSource

func (ams AmazonMWSSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsAzurePostgreSQLSource

func (ams AmazonMWSSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsAzureTableSource

func (ams AmazonMWSSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsBasicCopySource

func (ams AmazonMWSSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsBlobSource

func (ams AmazonMWSSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsCassandraSource

func (ams AmazonMWSSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsConcurSource

func (ams AmazonMWSSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsCopySource

func (ams AmazonMWSSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsCouchbaseSource

func (ams AmazonMWSSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsDocumentDbCollectionSource

func (ams AmazonMWSSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsDrillSource

func (ams AmazonMWSSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsDynamicsSource

func (ams AmazonMWSSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsEloquaSource

func (ams AmazonMWSSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsFileSystemSource

func (ams AmazonMWSSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsGoogleBigQuerySource

func (ams AmazonMWSSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsGreenplumSource

func (ams AmazonMWSSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsHBaseSource

func (ams AmazonMWSSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsHTTPSource

func (ams AmazonMWSSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsHdfsSource

func (ams AmazonMWSSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsHiveSource

func (ams AmazonMWSSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsHubspotSource

func (ams AmazonMWSSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsImpalaSource

func (ams AmazonMWSSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsJiraSource

func (ams AmazonMWSSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsMagentoSource

func (ams AmazonMWSSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsMariaDBSource

func (ams AmazonMWSSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsMarketoSource

func (ams AmazonMWSSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsMongoDbSource

func (ams AmazonMWSSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsNetezzaSource

func (ams AmazonMWSSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsOracleSource

func (ams AmazonMWSSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsPaypalSource

func (ams AmazonMWSSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsPhoenixSource

func (ams AmazonMWSSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsPrestoSource

func (ams AmazonMWSSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsQuickBooksSource

func (ams AmazonMWSSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsRelationalSource

func (ams AmazonMWSSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsResponsysSource

func (ams AmazonMWSSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsSQLDWSource

func (ams AmazonMWSSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsSQLSource

func (ams AmazonMWSSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsSalesforceMarketingCloudSource

func (ams AmazonMWSSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsSalesforceSource

func (ams AmazonMWSSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsSapCloudForCustomerSource

func (ams AmazonMWSSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsSapEccSource

func (ams AmazonMWSSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsServiceNowSource

func (ams AmazonMWSSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsShopifySource

func (ams AmazonMWSSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsSparkSource

func (ams AmazonMWSSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsSquareSource

func (ams AmazonMWSSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsVerticaSource

func (ams AmazonMWSSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsWebSource

func (ams AmazonMWSSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsXeroSource

func (ams AmazonMWSSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) AsZohoSource

func (ams AmazonMWSSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for AmazonMWSSource.

func (AmazonMWSSource) MarshalJSON

func (ams AmazonMWSSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AmazonMWSSource.

type AmazonRedshiftLinkedService

type AmazonRedshiftLinkedService struct {
	// AmazonRedshiftLinkedServiceTypeProperties - Amazon Redshift linked service properties.
	*AmazonRedshiftLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AmazonRedshiftLinkedService linked service for Amazon Redshift.

func (AmazonRedshiftLinkedService) AsAmazonMWSLinkedService

func (arls AmazonRedshiftLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAmazonRedshiftLinkedService

func (arls AmazonRedshiftLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAmazonS3LinkedService

func (arls AmazonRedshiftLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAzureBatchLinkedService

func (arls AmazonRedshiftLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (arls AmazonRedshiftLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAzureDataLakeStoreLinkedService

func (arls AmazonRedshiftLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAzureDatabricksLinkedService

func (arls AmazonRedshiftLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAzureKeyVaultLinkedService

func (arls AmazonRedshiftLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAzureMLLinkedService

func (arls AmazonRedshiftLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAzureMySQLLinkedService

func (arls AmazonRedshiftLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAzurePostgreSQLLinkedService

func (arls AmazonRedshiftLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAzureSQLDWLinkedService

func (arls AmazonRedshiftLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAzureSQLDatabaseLinkedService

func (arls AmazonRedshiftLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAzureSearchLinkedService

func (arls AmazonRedshiftLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsAzureStorageLinkedService

func (arls AmazonRedshiftLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsBasicLinkedService

func (arls AmazonRedshiftLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsCassandraLinkedService

func (arls AmazonRedshiftLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsConcurLinkedService

func (arls AmazonRedshiftLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsCosmosDbLinkedService

func (arls AmazonRedshiftLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsCouchbaseLinkedService

func (arls AmazonRedshiftLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsCustomDataSourceLinkedService

func (arls AmazonRedshiftLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsDb2LinkedService

func (arls AmazonRedshiftLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsDrillLinkedService

func (arls AmazonRedshiftLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsDynamicsLinkedService

func (arls AmazonRedshiftLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsEloquaLinkedService

func (arls AmazonRedshiftLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsFileServerLinkedService

func (arls AmazonRedshiftLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsFtpServerLinkedService

func (arls AmazonRedshiftLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsGoogleBigQueryLinkedService

func (arls AmazonRedshiftLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsGreenplumLinkedService

func (arls AmazonRedshiftLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsHBaseLinkedService

func (arls AmazonRedshiftLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsHDInsightLinkedService

func (arls AmazonRedshiftLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsHDInsightOnDemandLinkedService

func (arls AmazonRedshiftLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsHTTPLinkedService

func (arls AmazonRedshiftLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsHdfsLinkedService

func (arls AmazonRedshiftLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsHiveLinkedService

func (arls AmazonRedshiftLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsHubspotLinkedService

func (arls AmazonRedshiftLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsImpalaLinkedService

func (arls AmazonRedshiftLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsJiraLinkedService

func (arls AmazonRedshiftLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsLinkedService

func (arls AmazonRedshiftLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsMagentoLinkedService

func (arls AmazonRedshiftLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsMariaDBLinkedService

func (arls AmazonRedshiftLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsMarketoLinkedService

func (arls AmazonRedshiftLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsMongoDbLinkedService

func (arls AmazonRedshiftLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsMySQLLinkedService

func (arls AmazonRedshiftLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsNetezzaLinkedService

func (arls AmazonRedshiftLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsODataLinkedService

func (arls AmazonRedshiftLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsOdbcLinkedService

func (arls AmazonRedshiftLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsOracleLinkedService

func (arls AmazonRedshiftLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsPaypalLinkedService

func (arls AmazonRedshiftLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsPhoenixLinkedService

func (arls AmazonRedshiftLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsPostgreSQLLinkedService

func (arls AmazonRedshiftLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsPrestoLinkedService

func (arls AmazonRedshiftLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsQuickBooksLinkedService

func (arls AmazonRedshiftLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsResponsysLinkedService

func (arls AmazonRedshiftLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsSQLServerLinkedService

func (arls AmazonRedshiftLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsSalesforceLinkedService

func (arls AmazonRedshiftLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsSalesforceMarketingCloudLinkedService

func (arls AmazonRedshiftLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsSapBWLinkedService

func (arls AmazonRedshiftLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsSapCloudForCustomerLinkedService

func (arls AmazonRedshiftLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsSapEccLinkedService

func (arls AmazonRedshiftLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsSapHanaLinkedService

func (arls AmazonRedshiftLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsServiceNowLinkedService

func (arls AmazonRedshiftLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsSftpServerLinkedService

func (arls AmazonRedshiftLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsShopifyLinkedService

func (arls AmazonRedshiftLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsSparkLinkedService

func (arls AmazonRedshiftLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsSquareLinkedService

func (arls AmazonRedshiftLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsSybaseLinkedService

func (arls AmazonRedshiftLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsTeradataLinkedService

func (arls AmazonRedshiftLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsVerticaLinkedService

func (arls AmazonRedshiftLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsWebLinkedService

func (arls AmazonRedshiftLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsXeroLinkedService

func (arls AmazonRedshiftLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) AsZohoLinkedService

func (arls AmazonRedshiftLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AmazonRedshiftLinkedService.

func (AmazonRedshiftLinkedService) MarshalJSON

func (arls AmazonRedshiftLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AmazonRedshiftLinkedService.

func (*AmazonRedshiftLinkedService) UnmarshalJSON

func (arls *AmazonRedshiftLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AmazonRedshiftLinkedService struct.

type AmazonRedshiftLinkedServiceTypeProperties

type AmazonRedshiftLinkedServiceTypeProperties struct {
	// Server - The name of the Amazon Redshift server. Type: string (or Expression with resultType string).
	Server interface{} `json:"server,omitempty"`
	// Username - The username of the Amazon Redshift source. Type: string (or Expression with resultType string).
	Username interface{} `json:"username,omitempty"`
	// Password - The password of the Amazon Redshift source.
	Password BasicSecretBase `json:"password,omitempty"`
	// Database - The database name of the Amazon Redshift source. Type: string (or Expression with resultType string).
	Database interface{} `json:"database,omitempty"`
	// Port - The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer).
	Port interface{} `json:"port,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AmazonRedshiftLinkedServiceTypeProperties amazon Redshift linked service properties.

func (*AmazonRedshiftLinkedServiceTypeProperties) UnmarshalJSON

func (arlstp *AmazonRedshiftLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AmazonRedshiftLinkedServiceTypeProperties struct.

type AmazonRedshiftSource

type AmazonRedshiftSource struct {
	// Query - Database query. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// RedshiftUnloadSettings - The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.
	RedshiftUnloadSettings *RedshiftUnloadSettings `json:"redshiftUnloadSettings,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

AmazonRedshiftSource a copy activity source for Amazon Redshift Source.

func (AmazonRedshiftSource) AsAmazonMWSSource

func (ars AmazonRedshiftSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsAmazonRedshiftSource

func (ars AmazonRedshiftSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsAzureDataLakeStoreSource

func (ars AmazonRedshiftSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsAzureMySQLSource

func (ars AmazonRedshiftSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsAzurePostgreSQLSource

func (ars AmazonRedshiftSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsAzureTableSource

func (ars AmazonRedshiftSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsBasicCopySource

func (ars AmazonRedshiftSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsBlobSource

func (ars AmazonRedshiftSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsCassandraSource

func (ars AmazonRedshiftSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsConcurSource

func (ars AmazonRedshiftSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsCopySource

func (ars AmazonRedshiftSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsCouchbaseSource

func (ars AmazonRedshiftSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsDocumentDbCollectionSource

func (ars AmazonRedshiftSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsDrillSource

func (ars AmazonRedshiftSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsDynamicsSource

func (ars AmazonRedshiftSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsEloquaSource

func (ars AmazonRedshiftSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsFileSystemSource

func (ars AmazonRedshiftSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsGoogleBigQuerySource

func (ars AmazonRedshiftSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsGreenplumSource

func (ars AmazonRedshiftSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsHBaseSource

func (ars AmazonRedshiftSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsHTTPSource

func (ars AmazonRedshiftSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsHdfsSource

func (ars AmazonRedshiftSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsHiveSource

func (ars AmazonRedshiftSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsHubspotSource

func (ars AmazonRedshiftSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsImpalaSource

func (ars AmazonRedshiftSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsJiraSource

func (ars AmazonRedshiftSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsMagentoSource

func (ars AmazonRedshiftSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsMariaDBSource

func (ars AmazonRedshiftSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsMarketoSource

func (ars AmazonRedshiftSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsMongoDbSource

func (ars AmazonRedshiftSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsNetezzaSource

func (ars AmazonRedshiftSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsOracleSource

func (ars AmazonRedshiftSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsPaypalSource

func (ars AmazonRedshiftSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsPhoenixSource

func (ars AmazonRedshiftSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsPrestoSource

func (ars AmazonRedshiftSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsQuickBooksSource

func (ars AmazonRedshiftSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsRelationalSource

func (ars AmazonRedshiftSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsResponsysSource

func (ars AmazonRedshiftSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsSQLDWSource

func (ars AmazonRedshiftSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsSQLSource

func (ars AmazonRedshiftSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsSalesforceMarketingCloudSource

func (ars AmazonRedshiftSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsSalesforceSource

func (ars AmazonRedshiftSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsSapCloudForCustomerSource

func (ars AmazonRedshiftSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsSapEccSource

func (ars AmazonRedshiftSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsServiceNowSource

func (ars AmazonRedshiftSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsShopifySource

func (ars AmazonRedshiftSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsSparkSource

func (ars AmazonRedshiftSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsSquareSource

func (ars AmazonRedshiftSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsVerticaSource

func (ars AmazonRedshiftSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsWebSource

func (ars AmazonRedshiftSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsXeroSource

func (ars AmazonRedshiftSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) AsZohoSource

func (ars AmazonRedshiftSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for AmazonRedshiftSource.

func (AmazonRedshiftSource) MarshalJSON

func (ars AmazonRedshiftSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AmazonRedshiftSource.

type AmazonS3Dataset

type AmazonS3Dataset struct {
	// AmazonS3DatasetTypeProperties - Amazon S3 dataset properties.
	*AmazonS3DatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

AmazonS3Dataset a single Amazon Simple Storage Service (S3) object or a set of S3 objects.

func (AmazonS3Dataset) AsAmazonMWSObjectDataset

func (asd AmazonS3Dataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsAmazonS3Dataset

func (asd AmazonS3Dataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsAzureBlobDataset

func (asd AmazonS3Dataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsAzureDataLakeStoreDataset

func (asd AmazonS3Dataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsAzureMySQLTableDataset

func (asd AmazonS3Dataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsAzurePostgreSQLTableDataset

func (asd AmazonS3Dataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsAzureSQLDWTableDataset

func (asd AmazonS3Dataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsAzureSQLTableDataset

func (asd AmazonS3Dataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsAzureSearchIndexDataset

func (asd AmazonS3Dataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsAzureTableDataset

func (asd AmazonS3Dataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsBasicDataset

func (asd AmazonS3Dataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsCassandraTableDataset

func (asd AmazonS3Dataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsConcurObjectDataset

func (asd AmazonS3Dataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsCouchbaseTableDataset

func (asd AmazonS3Dataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsCustomDataset

func (asd AmazonS3Dataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsDataset

func (asd AmazonS3Dataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsDocumentDbCollectionDataset

func (asd AmazonS3Dataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsDrillTableDataset

func (asd AmazonS3Dataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsDynamicsEntityDataset

func (asd AmazonS3Dataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsEloquaObjectDataset

func (asd AmazonS3Dataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsFileShareDataset

func (asd AmazonS3Dataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsGoogleBigQueryObjectDataset

func (asd AmazonS3Dataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsGreenplumTableDataset

func (asd AmazonS3Dataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsHBaseObjectDataset

func (asd AmazonS3Dataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsHTTPDataset

func (asd AmazonS3Dataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsHiveObjectDataset

func (asd AmazonS3Dataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsHubspotObjectDataset

func (asd AmazonS3Dataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsImpalaObjectDataset

func (asd AmazonS3Dataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsJiraObjectDataset

func (asd AmazonS3Dataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsMagentoObjectDataset

func (asd AmazonS3Dataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsMariaDBTableDataset

func (asd AmazonS3Dataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsMarketoObjectDataset

func (asd AmazonS3Dataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsMongoDbCollectionDataset

func (asd AmazonS3Dataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsNetezzaTableDataset

func (asd AmazonS3Dataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsODataResourceDataset

func (asd AmazonS3Dataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsOracleTableDataset

func (asd AmazonS3Dataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsPaypalObjectDataset

func (asd AmazonS3Dataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsPhoenixObjectDataset

func (asd AmazonS3Dataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsPrestoObjectDataset

func (asd AmazonS3Dataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsQuickBooksObjectDataset

func (asd AmazonS3Dataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsRelationalTableDataset

func (asd AmazonS3Dataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsResponsysObjectDataset

func (asd AmazonS3Dataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsSQLServerTableDataset

func (asd AmazonS3Dataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsSalesforceMarketingCloudObjectDataset

func (asd AmazonS3Dataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsSalesforceObjectDataset

func (asd AmazonS3Dataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsSapCloudForCustomerResourceDataset

func (asd AmazonS3Dataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsSapEccResourceDataset

func (asd AmazonS3Dataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsServiceNowObjectDataset

func (asd AmazonS3Dataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsShopifyObjectDataset

func (asd AmazonS3Dataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsSparkObjectDataset

func (asd AmazonS3Dataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsSquareObjectDataset

func (asd AmazonS3Dataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsVerticaTableDataset

func (asd AmazonS3Dataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsWebTableDataset

func (asd AmazonS3Dataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsXeroObjectDataset

func (asd AmazonS3Dataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) AsZohoObjectDataset

func (asd AmazonS3Dataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for AmazonS3Dataset.

func (AmazonS3Dataset) MarshalJSON

func (asd AmazonS3Dataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AmazonS3Dataset.

func (*AmazonS3Dataset) UnmarshalJSON

func (asd *AmazonS3Dataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AmazonS3Dataset struct.

type AmazonS3DatasetTypeProperties

type AmazonS3DatasetTypeProperties struct {
	// BucketName - The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
	BucketName interface{} `json:"bucketName,omitempty"`
	// Key - The key of the Amazon S3 object. Type: string (or Expression with resultType string).
	Key interface{} `json:"key,omitempty"`
	// Prefix - The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
	Prefix interface{} `json:"prefix,omitempty"`
	// Version - The version for the S3 object. Type: string (or Expression with resultType string).
	Version interface{} `json:"version,omitempty"`
	// Format - The format of files.
	Format BasicDatasetStorageFormat `json:"format,omitempty"`
	// Compression - The data compression method used for the Amazon S3 object.
	Compression BasicDatasetCompression `json:"compression,omitempty"`
}

AmazonS3DatasetTypeProperties amazon S3 dataset properties.

func (*AmazonS3DatasetTypeProperties) UnmarshalJSON

func (asdtp *AmazonS3DatasetTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AmazonS3DatasetTypeProperties struct.

type AmazonS3LinkedService

type AmazonS3LinkedService struct {
	// AmazonS3LinkedServiceTypeProperties - Amazon S3 linked service properties.
	*AmazonS3LinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AmazonS3LinkedService linked service for Amazon S3.

func (AmazonS3LinkedService) AsAmazonMWSLinkedService

func (asls AmazonS3LinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAmazonRedshiftLinkedService

func (asls AmazonS3LinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAmazonS3LinkedService

func (asls AmazonS3LinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAzureBatchLinkedService

func (asls AmazonS3LinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAzureDataLakeAnalyticsLinkedService

func (asls AmazonS3LinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAzureDataLakeStoreLinkedService

func (asls AmazonS3LinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAzureDatabricksLinkedService

func (asls AmazonS3LinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAzureKeyVaultLinkedService

func (asls AmazonS3LinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAzureMLLinkedService

func (asls AmazonS3LinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAzureMySQLLinkedService

func (asls AmazonS3LinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAzurePostgreSQLLinkedService

func (asls AmazonS3LinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAzureSQLDWLinkedService

func (asls AmazonS3LinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAzureSQLDatabaseLinkedService

func (asls AmazonS3LinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAzureSearchLinkedService

func (asls AmazonS3LinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsAzureStorageLinkedService

func (asls AmazonS3LinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsBasicLinkedService

func (asls AmazonS3LinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsCassandraLinkedService

func (asls AmazonS3LinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsConcurLinkedService

func (asls AmazonS3LinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsCosmosDbLinkedService

func (asls AmazonS3LinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsCouchbaseLinkedService

func (asls AmazonS3LinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsCustomDataSourceLinkedService

func (asls AmazonS3LinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsDb2LinkedService

func (asls AmazonS3LinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsDrillLinkedService

func (asls AmazonS3LinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsDynamicsLinkedService

func (asls AmazonS3LinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsEloquaLinkedService

func (asls AmazonS3LinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsFileServerLinkedService

func (asls AmazonS3LinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsFtpServerLinkedService

func (asls AmazonS3LinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsGoogleBigQueryLinkedService

func (asls AmazonS3LinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsGreenplumLinkedService

func (asls AmazonS3LinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsHBaseLinkedService

func (asls AmazonS3LinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsHDInsightLinkedService

func (asls AmazonS3LinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsHDInsightOnDemandLinkedService

func (asls AmazonS3LinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsHTTPLinkedService

func (asls AmazonS3LinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsHdfsLinkedService

func (asls AmazonS3LinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsHiveLinkedService

func (asls AmazonS3LinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsHubspotLinkedService

func (asls AmazonS3LinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsImpalaLinkedService

func (asls AmazonS3LinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsJiraLinkedService

func (asls AmazonS3LinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsLinkedService

func (asls AmazonS3LinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsMagentoLinkedService

func (asls AmazonS3LinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsMariaDBLinkedService

func (asls AmazonS3LinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsMarketoLinkedService

func (asls AmazonS3LinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsMongoDbLinkedService

func (asls AmazonS3LinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsMySQLLinkedService

func (asls AmazonS3LinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsNetezzaLinkedService

func (asls AmazonS3LinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsODataLinkedService

func (asls AmazonS3LinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsOdbcLinkedService

func (asls AmazonS3LinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsOracleLinkedService

func (asls AmazonS3LinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsPaypalLinkedService

func (asls AmazonS3LinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsPhoenixLinkedService

func (asls AmazonS3LinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsPostgreSQLLinkedService

func (asls AmazonS3LinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsPrestoLinkedService

func (asls AmazonS3LinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsQuickBooksLinkedService

func (asls AmazonS3LinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsResponsysLinkedService

func (asls AmazonS3LinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsSQLServerLinkedService

func (asls AmazonS3LinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsSalesforceLinkedService

func (asls AmazonS3LinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsSalesforceMarketingCloudLinkedService

func (asls AmazonS3LinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsSapBWLinkedService

func (asls AmazonS3LinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsSapCloudForCustomerLinkedService

func (asls AmazonS3LinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsSapEccLinkedService

func (asls AmazonS3LinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsSapHanaLinkedService

func (asls AmazonS3LinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsServiceNowLinkedService

func (asls AmazonS3LinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsSftpServerLinkedService

func (asls AmazonS3LinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsShopifyLinkedService

func (asls AmazonS3LinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsSparkLinkedService

func (asls AmazonS3LinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsSquareLinkedService

func (asls AmazonS3LinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsSybaseLinkedService

func (asls AmazonS3LinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsTeradataLinkedService

func (asls AmazonS3LinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsVerticaLinkedService

func (asls AmazonS3LinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsWebLinkedService

func (asls AmazonS3LinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsXeroLinkedService

func (asls AmazonS3LinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) AsZohoLinkedService

func (asls AmazonS3LinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AmazonS3LinkedService.

func (AmazonS3LinkedService) MarshalJSON

func (asls AmazonS3LinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AmazonS3LinkedService.

func (*AmazonS3LinkedService) UnmarshalJSON

func (asls *AmazonS3LinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AmazonS3LinkedService struct.

type AmazonS3LinkedServiceTypeProperties

type AmazonS3LinkedServiceTypeProperties struct {
	// AccessKeyID - The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string).
	AccessKeyID interface{} `json:"accessKeyId,omitempty"`
	// SecretAccessKey - The secret access key of the Amazon S3 Identity and Access Management (IAM) user.
	SecretAccessKey BasicSecretBase `json:"secretAccessKey,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AmazonS3LinkedServiceTypeProperties amazon S3 linked service properties.

func (*AmazonS3LinkedServiceTypeProperties) UnmarshalJSON

func (aslstp *AmazonS3LinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AmazonS3LinkedServiceTypeProperties struct.

type AuthenticationType

type AuthenticationType string

AuthenticationType enumerates the values for authentication type.

const (
	// AuthenticationTypeAnonymous ...
	AuthenticationTypeAnonymous AuthenticationType = "Anonymous"
	// AuthenticationTypeBasic ...
	AuthenticationTypeBasic AuthenticationType = "Basic"
	// AuthenticationTypeClientCertificate ...
	AuthenticationTypeClientCertificate AuthenticationType = "ClientCertificate"
	// AuthenticationTypeWebLinkedServiceTypeProperties ...
	AuthenticationTypeWebLinkedServiceTypeProperties AuthenticationType = "WebLinkedServiceTypeProperties"
)

func PossibleAuthenticationTypeValues

func PossibleAuthenticationTypeValues() []AuthenticationType

PossibleAuthenticationTypeValues returns an array of possible values for the AuthenticationType const type.

type AuthorizationType

type AuthorizationType string

AuthorizationType enumerates the values for authorization type.

const (
	// AuthorizationTypeKey ...
	AuthorizationTypeKey AuthorizationType = "Key"
	// AuthorizationTypeLinkedIntegrationRuntimeProperties ...
	AuthorizationTypeLinkedIntegrationRuntimeProperties AuthorizationType = "LinkedIntegrationRuntimeProperties"
	// AuthorizationTypeRBAC ...
	AuthorizationTypeRBAC AuthorizationType = "RBAC"
)

func PossibleAuthorizationTypeValues

func PossibleAuthorizationTypeValues() []AuthorizationType

PossibleAuthorizationTypeValues returns an array of possible values for the AuthorizationType const type.

type AvroFormat

type AvroFormat struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Serializer - Serializer. Type: string (or Expression with resultType string).
	Serializer interface{} `json:"serializer,omitempty"`
	// Deserializer - Deserializer. Type: string (or Expression with resultType string).
	Deserializer interface{} `json:"deserializer,omitempty"`
	// Type - Possible values include: 'TypeDatasetStorageFormat', 'TypeParquetFormat', 'TypeOrcFormat', 'TypeAvroFormat', 'TypeJSONFormat', 'TypeTextFormat'
	Type TypeBasicDatasetStorageFormat `json:"type,omitempty"`
}

AvroFormat the data stored in Avro format.

func (AvroFormat) AsAvroFormat

func (af AvroFormat) AsAvroFormat() (*AvroFormat, bool)

AsAvroFormat is the BasicDatasetStorageFormat implementation for AvroFormat.

func (AvroFormat) AsBasicDatasetStorageFormat

func (af AvroFormat) AsBasicDatasetStorageFormat() (BasicDatasetStorageFormat, bool)

AsBasicDatasetStorageFormat is the BasicDatasetStorageFormat implementation for AvroFormat.

func (AvroFormat) AsDatasetStorageFormat

func (af AvroFormat) AsDatasetStorageFormat() (*DatasetStorageFormat, bool)

AsDatasetStorageFormat is the BasicDatasetStorageFormat implementation for AvroFormat.

func (AvroFormat) AsJSONFormat

func (af AvroFormat) AsJSONFormat() (*JSONFormat, bool)

AsJSONFormat is the BasicDatasetStorageFormat implementation for AvroFormat.

func (AvroFormat) AsOrcFormat

func (af AvroFormat) AsOrcFormat() (*OrcFormat, bool)

AsOrcFormat is the BasicDatasetStorageFormat implementation for AvroFormat.

func (AvroFormat) AsParquetFormat

func (af AvroFormat) AsParquetFormat() (*ParquetFormat, bool)

AsParquetFormat is the BasicDatasetStorageFormat implementation for AvroFormat.

func (AvroFormat) AsTextFormat

func (af AvroFormat) AsTextFormat() (*TextFormat, bool)

AsTextFormat is the BasicDatasetStorageFormat implementation for AvroFormat.

func (AvroFormat) MarshalJSON

func (af AvroFormat) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AvroFormat.

type AzureBatchLinkedService

type AzureBatchLinkedService struct {
	// AzureBatchLinkedServiceTypeProperties - Azure Batch linked service properties.
	*AzureBatchLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AzureBatchLinkedService azure Batch linked service.

func (AzureBatchLinkedService) AsAmazonMWSLinkedService

func (abls AzureBatchLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAmazonRedshiftLinkedService

func (abls AzureBatchLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAmazonS3LinkedService

func (abls AzureBatchLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAzureBatchLinkedService

func (abls AzureBatchLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (abls AzureBatchLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAzureDataLakeStoreLinkedService

func (abls AzureBatchLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAzureDatabricksLinkedService

func (abls AzureBatchLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAzureKeyVaultLinkedService

func (abls AzureBatchLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAzureMLLinkedService

func (abls AzureBatchLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAzureMySQLLinkedService

func (abls AzureBatchLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAzurePostgreSQLLinkedService

func (abls AzureBatchLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAzureSQLDWLinkedService

func (abls AzureBatchLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAzureSQLDatabaseLinkedService

func (abls AzureBatchLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAzureSearchLinkedService

func (abls AzureBatchLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsAzureStorageLinkedService

func (abls AzureBatchLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsBasicLinkedService

func (abls AzureBatchLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsCassandraLinkedService

func (abls AzureBatchLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsConcurLinkedService

func (abls AzureBatchLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsCosmosDbLinkedService

func (abls AzureBatchLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsCouchbaseLinkedService

func (abls AzureBatchLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsCustomDataSourceLinkedService

func (abls AzureBatchLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsDb2LinkedService

func (abls AzureBatchLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsDrillLinkedService

func (abls AzureBatchLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsDynamicsLinkedService

func (abls AzureBatchLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsEloquaLinkedService

func (abls AzureBatchLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsFileServerLinkedService

func (abls AzureBatchLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsFtpServerLinkedService

func (abls AzureBatchLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsGoogleBigQueryLinkedService

func (abls AzureBatchLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsGreenplumLinkedService

func (abls AzureBatchLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsHBaseLinkedService

func (abls AzureBatchLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsHDInsightLinkedService

func (abls AzureBatchLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsHDInsightOnDemandLinkedService

func (abls AzureBatchLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsHTTPLinkedService

func (abls AzureBatchLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsHdfsLinkedService

func (abls AzureBatchLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsHiveLinkedService

func (abls AzureBatchLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsHubspotLinkedService

func (abls AzureBatchLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsImpalaLinkedService

func (abls AzureBatchLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsJiraLinkedService

func (abls AzureBatchLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsLinkedService

func (abls AzureBatchLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsMagentoLinkedService

func (abls AzureBatchLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsMariaDBLinkedService

func (abls AzureBatchLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsMarketoLinkedService

func (abls AzureBatchLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsMongoDbLinkedService

func (abls AzureBatchLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsMySQLLinkedService

func (abls AzureBatchLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsNetezzaLinkedService

func (abls AzureBatchLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsODataLinkedService

func (abls AzureBatchLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsOdbcLinkedService

func (abls AzureBatchLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsOracleLinkedService

func (abls AzureBatchLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsPaypalLinkedService

func (abls AzureBatchLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsPhoenixLinkedService

func (abls AzureBatchLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsPostgreSQLLinkedService

func (abls AzureBatchLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsPrestoLinkedService

func (abls AzureBatchLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsQuickBooksLinkedService

func (abls AzureBatchLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsResponsysLinkedService

func (abls AzureBatchLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsSQLServerLinkedService

func (abls AzureBatchLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsSalesforceLinkedService

func (abls AzureBatchLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsSalesforceMarketingCloudLinkedService

func (abls AzureBatchLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsSapBWLinkedService

func (abls AzureBatchLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsSapCloudForCustomerLinkedService

func (abls AzureBatchLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsSapEccLinkedService

func (abls AzureBatchLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsSapHanaLinkedService

func (abls AzureBatchLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsServiceNowLinkedService

func (abls AzureBatchLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsSftpServerLinkedService

func (abls AzureBatchLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsShopifyLinkedService

func (abls AzureBatchLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsSparkLinkedService

func (abls AzureBatchLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsSquareLinkedService

func (abls AzureBatchLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsSybaseLinkedService

func (abls AzureBatchLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsTeradataLinkedService

func (abls AzureBatchLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsVerticaLinkedService

func (abls AzureBatchLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsWebLinkedService

func (abls AzureBatchLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsXeroLinkedService

func (abls AzureBatchLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) AsZohoLinkedService

func (abls AzureBatchLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AzureBatchLinkedService.

func (AzureBatchLinkedService) MarshalJSON

func (abls AzureBatchLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureBatchLinkedService.

func (*AzureBatchLinkedService) UnmarshalJSON

func (abls *AzureBatchLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureBatchLinkedService struct.

type AzureBatchLinkedServiceTypeProperties

type AzureBatchLinkedServiceTypeProperties struct {
	// AccountName - The Azure Batch account name. Type: string (or Expression with resultType string).
	AccountName interface{} `json:"accountName,omitempty"`
	// AccessKey - The Azure Batch account access key.
	AccessKey BasicSecretBase `json:"accessKey,omitempty"`
	// BatchURI - The Azure Batch URI. Type: string (or Expression with resultType string).
	BatchURI interface{} `json:"batchUri,omitempty"`
	// PoolName - The Azure Batch pool name. Type: string (or Expression with resultType string).
	PoolName interface{} `json:"poolName,omitempty"`
	// LinkedServiceName - The Azure Storage linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AzureBatchLinkedServiceTypeProperties azure Batch linked service properties.

func (*AzureBatchLinkedServiceTypeProperties) UnmarshalJSON

func (ablstp *AzureBatchLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureBatchLinkedServiceTypeProperties struct.

type AzureBlobDataset

type AzureBlobDataset struct {
	// AzureBlobDatasetTypeProperties - Azure Blob dataset properties.
	*AzureBlobDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

AzureBlobDataset the Azure Blob storage.

func (AzureBlobDataset) AsAmazonMWSObjectDataset

func (abd AzureBlobDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsAmazonS3Dataset

func (abd AzureBlobDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsAzureBlobDataset

func (abd AzureBlobDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsAzureDataLakeStoreDataset

func (abd AzureBlobDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsAzureMySQLTableDataset

func (abd AzureBlobDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsAzurePostgreSQLTableDataset

func (abd AzureBlobDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsAzureSQLDWTableDataset

func (abd AzureBlobDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsAzureSQLTableDataset

func (abd AzureBlobDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsAzureSearchIndexDataset

func (abd AzureBlobDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsAzureTableDataset

func (abd AzureBlobDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsBasicDataset

func (abd AzureBlobDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsCassandraTableDataset

func (abd AzureBlobDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsConcurObjectDataset

func (abd AzureBlobDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsCouchbaseTableDataset

func (abd AzureBlobDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsCustomDataset

func (abd AzureBlobDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsDataset

func (abd AzureBlobDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsDocumentDbCollectionDataset

func (abd AzureBlobDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsDrillTableDataset

func (abd AzureBlobDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsDynamicsEntityDataset

func (abd AzureBlobDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsEloquaObjectDataset

func (abd AzureBlobDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsFileShareDataset

func (abd AzureBlobDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsGoogleBigQueryObjectDataset

func (abd AzureBlobDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsGreenplumTableDataset

func (abd AzureBlobDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsHBaseObjectDataset

func (abd AzureBlobDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsHTTPDataset

func (abd AzureBlobDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsHiveObjectDataset

func (abd AzureBlobDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsHubspotObjectDataset

func (abd AzureBlobDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsImpalaObjectDataset

func (abd AzureBlobDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsJiraObjectDataset

func (abd AzureBlobDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsMagentoObjectDataset

func (abd AzureBlobDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsMariaDBTableDataset

func (abd AzureBlobDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsMarketoObjectDataset

func (abd AzureBlobDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsMongoDbCollectionDataset

func (abd AzureBlobDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsNetezzaTableDataset

func (abd AzureBlobDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsODataResourceDataset

func (abd AzureBlobDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsOracleTableDataset

func (abd AzureBlobDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsPaypalObjectDataset

func (abd AzureBlobDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsPhoenixObjectDataset

func (abd AzureBlobDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsPrestoObjectDataset

func (abd AzureBlobDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsQuickBooksObjectDataset

func (abd AzureBlobDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsRelationalTableDataset

func (abd AzureBlobDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsResponsysObjectDataset

func (abd AzureBlobDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsSQLServerTableDataset

func (abd AzureBlobDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsSalesforceMarketingCloudObjectDataset

func (abd AzureBlobDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsSalesforceObjectDataset

func (abd AzureBlobDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsSapCloudForCustomerResourceDataset

func (abd AzureBlobDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsSapEccResourceDataset

func (abd AzureBlobDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsServiceNowObjectDataset

func (abd AzureBlobDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsShopifyObjectDataset

func (abd AzureBlobDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsSparkObjectDataset

func (abd AzureBlobDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsSquareObjectDataset

func (abd AzureBlobDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsVerticaTableDataset

func (abd AzureBlobDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsWebTableDataset

func (abd AzureBlobDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsXeroObjectDataset

func (abd AzureBlobDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) AsZohoObjectDataset

func (abd AzureBlobDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for AzureBlobDataset.

func (AzureBlobDataset) MarshalJSON

func (abd AzureBlobDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureBlobDataset.

func (*AzureBlobDataset) UnmarshalJSON

func (abd *AzureBlobDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureBlobDataset struct.

type AzureBlobDatasetTypeProperties

type AzureBlobDatasetTypeProperties struct {
	// FolderPath - The path of the Azure Blob storage. Type: string (or Expression with resultType string).
	FolderPath interface{} `json:"folderPath,omitempty"`
	// TableRootLocation - The root of blob path. Type: string (or Expression with resultType string).
	TableRootLocation interface{} `json:"tableRootLocation,omitempty"`
	// FileName - The name of the Azure Blob. Type: string (or Expression with resultType string).
	FileName interface{} `json:"fileName,omitempty"`
	// Format - The format of the Azure Blob storage.
	Format BasicDatasetStorageFormat `json:"format,omitempty"`
	// Compression - The data compression method used for the blob storage.
	Compression BasicDatasetCompression `json:"compression,omitempty"`
}

AzureBlobDatasetTypeProperties azure Blob dataset properties.

func (*AzureBlobDatasetTypeProperties) UnmarshalJSON

func (abdtp *AzureBlobDatasetTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureBlobDatasetTypeProperties struct.

type AzureDataLakeAnalyticsLinkedService

type AzureDataLakeAnalyticsLinkedService struct {
	// AzureDataLakeAnalyticsLinkedServiceTypeProperties - Azure Data Lake Analytics linked service properties.
	*AzureDataLakeAnalyticsLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AzureDataLakeAnalyticsLinkedService azure Data Lake Analytics linked service.

func (AzureDataLakeAnalyticsLinkedService) AsAmazonMWSLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAmazonRedshiftLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAmazonS3LinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAzureBatchLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAzureDataLakeStoreLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAzureDatabricksLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAzureKeyVaultLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAzureMLLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAzureMySQLLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAzurePostgreSQLLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAzureSQLDWLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAzureSQLDatabaseLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAzureSearchLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsAzureStorageLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsBasicLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsCassandraLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsConcurLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsCosmosDbLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsCouchbaseLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsCustomDataSourceLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsDb2LinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsDrillLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsDynamicsLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsEloquaLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsFileServerLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsFtpServerLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsGoogleBigQueryLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsGreenplumLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsHBaseLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsHDInsightLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsHDInsightOnDemandLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsHTTPLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsHdfsLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsHiveLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsHubspotLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsImpalaLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsJiraLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsMagentoLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsMariaDBLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsMarketoLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsMongoDbLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsMySQLLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsNetezzaLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsODataLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsOdbcLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsOracleLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsPaypalLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsPhoenixLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsPostgreSQLLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsPrestoLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsQuickBooksLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsResponsysLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsSQLServerLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsSalesforceLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsSalesforceMarketingCloudLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsSapBWLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsSapCloudForCustomerLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsSapEccLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsSapHanaLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsServiceNowLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsSftpServerLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsShopifyLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsSparkLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsSquareLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsSybaseLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsTeradataLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsVerticaLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsWebLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsXeroLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) AsZohoLinkedService

func (adlals AzureDataLakeAnalyticsLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AzureDataLakeAnalyticsLinkedService.

func (AzureDataLakeAnalyticsLinkedService) MarshalJSON

func (adlals AzureDataLakeAnalyticsLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureDataLakeAnalyticsLinkedService.

func (*AzureDataLakeAnalyticsLinkedService) UnmarshalJSON

func (adlals *AzureDataLakeAnalyticsLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureDataLakeAnalyticsLinkedService struct.

type AzureDataLakeAnalyticsLinkedServiceTypeProperties

type AzureDataLakeAnalyticsLinkedServiceTypeProperties struct {
	// AccountName - The Azure Data Lake Analytics account name. Type: string (or Expression with resultType string).
	AccountName interface{} `json:"accountName,omitempty"`
	// ServicePrincipalID - The ID of the application used to authenticate against the Azure Data Lake Analytics account. Type: string (or Expression with resultType string).
	ServicePrincipalID interface{} `json:"servicePrincipalId,omitempty"`
	// ServicePrincipalKey - The Key of the application used to authenticate against the Azure Data Lake Analytics account.
	ServicePrincipalKey BasicSecretBase `json:"servicePrincipalKey,omitempty"`
	// Tenant - The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
	Tenant interface{} `json:"tenant,omitempty"`
	// SubscriptionID - Data Lake Analytics account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
	SubscriptionID interface{} `json:"subscriptionId,omitempty"`
	// ResourceGroupName - Data Lake Analytics account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
	ResourceGroupName interface{} `json:"resourceGroupName,omitempty"`
	// DataLakeAnalyticsURI - Azure Data Lake Analytics URI Type: string (or Expression with resultType string).
	DataLakeAnalyticsURI interface{} `json:"dataLakeAnalyticsUri,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AzureDataLakeAnalyticsLinkedServiceTypeProperties azure Data Lake Analytics linked service properties.

func (*AzureDataLakeAnalyticsLinkedServiceTypeProperties) UnmarshalJSON

func (adlalstp *AzureDataLakeAnalyticsLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureDataLakeAnalyticsLinkedServiceTypeProperties struct.

type AzureDataLakeStoreDataset

type AzureDataLakeStoreDataset struct {
	// AzureDataLakeStoreDatasetTypeProperties - Azure Data Lake Store dataset properties.
	*AzureDataLakeStoreDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

AzureDataLakeStoreDataset azure Data Lake Store dataset.

func (AzureDataLakeStoreDataset) AsAmazonMWSObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsAmazonS3Dataset

func (adlsd AzureDataLakeStoreDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsAzureBlobDataset

func (adlsd AzureDataLakeStoreDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsAzureDataLakeStoreDataset

func (adlsd AzureDataLakeStoreDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsAzureMySQLTableDataset

func (adlsd AzureDataLakeStoreDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsAzurePostgreSQLTableDataset

func (adlsd AzureDataLakeStoreDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsAzureSQLDWTableDataset

func (adlsd AzureDataLakeStoreDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsAzureSQLTableDataset

func (adlsd AzureDataLakeStoreDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsAzureSearchIndexDataset

func (adlsd AzureDataLakeStoreDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsAzureTableDataset

func (adlsd AzureDataLakeStoreDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsBasicDataset

func (adlsd AzureDataLakeStoreDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsCassandraTableDataset

func (adlsd AzureDataLakeStoreDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsConcurObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsCouchbaseTableDataset

func (adlsd AzureDataLakeStoreDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsCustomDataset

func (adlsd AzureDataLakeStoreDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsDataset

func (adlsd AzureDataLakeStoreDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsDocumentDbCollectionDataset

func (adlsd AzureDataLakeStoreDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsDrillTableDataset

func (adlsd AzureDataLakeStoreDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsDynamicsEntityDataset

func (adlsd AzureDataLakeStoreDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsEloquaObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsFileShareDataset

func (adlsd AzureDataLakeStoreDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsGoogleBigQueryObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsGreenplumTableDataset

func (adlsd AzureDataLakeStoreDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsHBaseObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsHTTPDataset

func (adlsd AzureDataLakeStoreDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsHiveObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsHubspotObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsImpalaObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsJiraObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsMagentoObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsMariaDBTableDataset

func (adlsd AzureDataLakeStoreDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsMarketoObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsMongoDbCollectionDataset

func (adlsd AzureDataLakeStoreDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsNetezzaTableDataset

func (adlsd AzureDataLakeStoreDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsODataResourceDataset

func (adlsd AzureDataLakeStoreDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsOracleTableDataset

func (adlsd AzureDataLakeStoreDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsPaypalObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsPhoenixObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsPrestoObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsQuickBooksObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsRelationalTableDataset

func (adlsd AzureDataLakeStoreDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsResponsysObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsSQLServerTableDataset

func (adlsd AzureDataLakeStoreDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsSalesforceMarketingCloudObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsSalesforceObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsSapCloudForCustomerResourceDataset

func (adlsd AzureDataLakeStoreDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsSapEccResourceDataset

func (adlsd AzureDataLakeStoreDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsServiceNowObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsShopifyObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsSparkObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsSquareObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsVerticaTableDataset

func (adlsd AzureDataLakeStoreDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsWebTableDataset

func (adlsd AzureDataLakeStoreDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsXeroObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) AsZohoObjectDataset

func (adlsd AzureDataLakeStoreDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for AzureDataLakeStoreDataset.

func (AzureDataLakeStoreDataset) MarshalJSON

func (adlsd AzureDataLakeStoreDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureDataLakeStoreDataset.

func (*AzureDataLakeStoreDataset) UnmarshalJSON

func (adlsd *AzureDataLakeStoreDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureDataLakeStoreDataset struct.

type AzureDataLakeStoreDatasetTypeProperties

type AzureDataLakeStoreDatasetTypeProperties struct {
	// FolderPath - Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
	FolderPath interface{} `json:"folderPath,omitempty"`
	// FileName - The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
	FileName interface{} `json:"fileName,omitempty"`
	// Format - The format of the Data Lake Store.
	Format BasicDatasetStorageFormat `json:"format,omitempty"`
	// Compression - The data compression method used for the item(s) in the Azure Data Lake Store.
	Compression BasicDatasetCompression `json:"compression,omitempty"`
}

AzureDataLakeStoreDatasetTypeProperties azure Data Lake Store dataset properties.

func (*AzureDataLakeStoreDatasetTypeProperties) UnmarshalJSON

func (adlsdtp *AzureDataLakeStoreDatasetTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureDataLakeStoreDatasetTypeProperties struct.

type AzureDataLakeStoreLinkedService

type AzureDataLakeStoreLinkedService struct {
	// AzureDataLakeStoreLinkedServiceTypeProperties - Azure Data Lake Store linked service properties.
	*AzureDataLakeStoreLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AzureDataLakeStoreLinkedService azure Data Lake Store linked service.

func (AzureDataLakeStoreLinkedService) AsAmazonMWSLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAmazonRedshiftLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAmazonS3LinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAzureBatchLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAzureDataLakeStoreLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAzureDatabricksLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAzureKeyVaultLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAzureMLLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAzureMySQLLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAzurePostgreSQLLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAzureSQLDWLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAzureSQLDatabaseLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAzureSearchLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsAzureStorageLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsBasicLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsCassandraLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsConcurLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsCosmosDbLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsCouchbaseLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsCustomDataSourceLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsDb2LinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsDrillLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsDynamicsLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsEloquaLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsFileServerLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsFtpServerLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsGoogleBigQueryLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsGreenplumLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsHBaseLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsHDInsightLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsHDInsightOnDemandLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsHTTPLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsHdfsLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsHiveLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsHubspotLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsImpalaLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsJiraLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsMagentoLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsMariaDBLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsMarketoLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsMongoDbLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsMySQLLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsNetezzaLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsODataLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsOdbcLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsOracleLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsPaypalLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsPhoenixLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsPostgreSQLLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsPrestoLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsQuickBooksLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsResponsysLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsSQLServerLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsSalesforceLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsSalesforceMarketingCloudLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsSapBWLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsSapCloudForCustomerLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsSapEccLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsSapHanaLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsServiceNowLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsSftpServerLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsShopifyLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsSparkLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsSquareLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsSybaseLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsTeradataLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsVerticaLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsWebLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsXeroLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) AsZohoLinkedService

func (adlsls AzureDataLakeStoreLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AzureDataLakeStoreLinkedService.

func (AzureDataLakeStoreLinkedService) MarshalJSON

func (adlsls AzureDataLakeStoreLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureDataLakeStoreLinkedService.

func (*AzureDataLakeStoreLinkedService) UnmarshalJSON

func (adlsls *AzureDataLakeStoreLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureDataLakeStoreLinkedService struct.

type AzureDataLakeStoreLinkedServiceTypeProperties

type AzureDataLakeStoreLinkedServiceTypeProperties struct {
	// DataLakeStoreURI - Data Lake Store service URI. Type: string (or Expression with resultType string).
	DataLakeStoreURI interface{} `json:"dataLakeStoreUri,omitempty"`
	// ServicePrincipalID - The ID of the application used to authenticate against the Azure Data Lake Store account. Type: string (or Expression with resultType string).
	ServicePrincipalID interface{} `json:"servicePrincipalId,omitempty"`
	// ServicePrincipalKey - The Key of the application used to authenticate against the Azure Data Lake Store account.
	ServicePrincipalKey BasicSecretBase `json:"servicePrincipalKey,omitempty"`
	// Tenant - The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
	Tenant interface{} `json:"tenant,omitempty"`
	// AccountName - Data Lake Store account name. Type: string (or Expression with resultType string).
	AccountName interface{} `json:"accountName,omitempty"`
	// SubscriptionID - Data Lake Store account subscription ID (if different from Data Factory account). Type: string (or Expression with resultType string).
	SubscriptionID interface{} `json:"subscriptionId,omitempty"`
	// ResourceGroupName - Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string).
	ResourceGroupName interface{} `json:"resourceGroupName,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AzureDataLakeStoreLinkedServiceTypeProperties azure Data Lake Store linked service properties.

func (*AzureDataLakeStoreLinkedServiceTypeProperties) UnmarshalJSON

func (adlslstp *AzureDataLakeStoreLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureDataLakeStoreLinkedServiceTypeProperties struct.

type AzureDataLakeStoreSink

type AzureDataLakeStoreSink struct {
	// CopyBehavior - The type of copy behavior for copy sink. Possible values include: 'PreserveHierarchy', 'FlattenHierarchy', 'MergeFiles'
	CopyBehavior CopyBehaviorType `json:"copyBehavior,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

AzureDataLakeStoreSink a copy activity Azure Data Lake Store sink.

func (AzureDataLakeStoreSink) AsAzureDataLakeStoreSink

func (adlss AzureDataLakeStoreSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsAzureQueueSink

func (adlss AzureDataLakeStoreSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsAzureSearchIndexSink

func (adlss AzureDataLakeStoreSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsAzureTableSink

func (adlss AzureDataLakeStoreSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsBasicCopySink

func (adlss AzureDataLakeStoreSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsBlobSink

func (adlss AzureDataLakeStoreSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsCopySink

func (adlss AzureDataLakeStoreSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsDocumentDbCollectionSink

func (adlss AzureDataLakeStoreSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsDynamicsSink

func (adlss AzureDataLakeStoreSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsFileSystemSink

func (adlss AzureDataLakeStoreSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsOdbcSink

func (adlss AzureDataLakeStoreSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsOracleSink

func (adlss AzureDataLakeStoreSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsSQLDWSink

func (adlss AzureDataLakeStoreSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsSQLSink

func (adlss AzureDataLakeStoreSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsSalesforceSink

func (adlss AzureDataLakeStoreSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) AsSapCloudForCustomerSink

func (adlss AzureDataLakeStoreSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for AzureDataLakeStoreSink.

func (AzureDataLakeStoreSink) MarshalJSON

func (adlss AzureDataLakeStoreSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureDataLakeStoreSink.

type AzureDataLakeStoreSource

type AzureDataLakeStoreSource struct {
	// Recursive - If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
	Recursive interface{} `json:"recursive,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

AzureDataLakeStoreSource a copy activity Azure Data Lake source.

func (AzureDataLakeStoreSource) AsAmazonMWSSource

func (adlss AzureDataLakeStoreSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsAmazonRedshiftSource

func (adlss AzureDataLakeStoreSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsAzureDataLakeStoreSource

func (adlss AzureDataLakeStoreSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsAzureMySQLSource

func (adlss AzureDataLakeStoreSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsAzurePostgreSQLSource

func (adlss AzureDataLakeStoreSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsAzureTableSource

func (adlss AzureDataLakeStoreSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsBasicCopySource

func (adlss AzureDataLakeStoreSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsBlobSource

func (adlss AzureDataLakeStoreSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsCassandraSource

func (adlss AzureDataLakeStoreSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsConcurSource

func (adlss AzureDataLakeStoreSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsCopySource

func (adlss AzureDataLakeStoreSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsCouchbaseSource

func (adlss AzureDataLakeStoreSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsDocumentDbCollectionSource

func (adlss AzureDataLakeStoreSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsDrillSource

func (adlss AzureDataLakeStoreSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsDynamicsSource

func (adlss AzureDataLakeStoreSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsEloquaSource

func (adlss AzureDataLakeStoreSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsFileSystemSource

func (adlss AzureDataLakeStoreSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsGoogleBigQuerySource

func (adlss AzureDataLakeStoreSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsGreenplumSource

func (adlss AzureDataLakeStoreSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsHBaseSource

func (adlss AzureDataLakeStoreSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsHTTPSource

func (adlss AzureDataLakeStoreSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsHdfsSource

func (adlss AzureDataLakeStoreSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsHiveSource

func (adlss AzureDataLakeStoreSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsHubspotSource

func (adlss AzureDataLakeStoreSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsImpalaSource

func (adlss AzureDataLakeStoreSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsJiraSource

func (adlss AzureDataLakeStoreSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsMagentoSource

func (adlss AzureDataLakeStoreSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsMariaDBSource

func (adlss AzureDataLakeStoreSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsMarketoSource

func (adlss AzureDataLakeStoreSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsMongoDbSource

func (adlss AzureDataLakeStoreSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsNetezzaSource

func (adlss AzureDataLakeStoreSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsOracleSource

func (adlss AzureDataLakeStoreSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsPaypalSource

func (adlss AzureDataLakeStoreSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsPhoenixSource

func (adlss AzureDataLakeStoreSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsPrestoSource

func (adlss AzureDataLakeStoreSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsQuickBooksSource

func (adlss AzureDataLakeStoreSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsRelationalSource

func (adlss AzureDataLakeStoreSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsResponsysSource

func (adlss AzureDataLakeStoreSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsSQLDWSource

func (adlss AzureDataLakeStoreSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsSQLSource

func (adlss AzureDataLakeStoreSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsSalesforceMarketingCloudSource

func (adlss AzureDataLakeStoreSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsSalesforceSource

func (adlss AzureDataLakeStoreSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsSapCloudForCustomerSource

func (adlss AzureDataLakeStoreSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsSapEccSource

func (adlss AzureDataLakeStoreSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsServiceNowSource

func (adlss AzureDataLakeStoreSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsShopifySource

func (adlss AzureDataLakeStoreSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsSparkSource

func (adlss AzureDataLakeStoreSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsSquareSource

func (adlss AzureDataLakeStoreSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsVerticaSource

func (adlss AzureDataLakeStoreSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsWebSource

func (adlss AzureDataLakeStoreSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsXeroSource

func (adlss AzureDataLakeStoreSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) AsZohoSource

func (adlss AzureDataLakeStoreSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for AzureDataLakeStoreSource.

func (AzureDataLakeStoreSource) MarshalJSON

func (adlss AzureDataLakeStoreSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureDataLakeStoreSource.

type AzureDatabricksLinkedService

type AzureDatabricksLinkedService struct {
	// AzureDatabricksLinkedServiceTypeProperties - Azure Databricks linked service properties.
	*AzureDatabricksLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AzureDatabricksLinkedService azure Databricks linked service.

func (AzureDatabricksLinkedService) AsAmazonMWSLinkedService

func (adls AzureDatabricksLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAmazonRedshiftLinkedService

func (adls AzureDatabricksLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAmazonS3LinkedService

func (adls AzureDatabricksLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAzureBatchLinkedService

func (adls AzureDatabricksLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (adls AzureDatabricksLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAzureDataLakeStoreLinkedService

func (adls AzureDatabricksLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAzureDatabricksLinkedService

func (adls AzureDatabricksLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAzureKeyVaultLinkedService

func (adls AzureDatabricksLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAzureMLLinkedService

func (adls AzureDatabricksLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAzureMySQLLinkedService

func (adls AzureDatabricksLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAzurePostgreSQLLinkedService

func (adls AzureDatabricksLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAzureSQLDWLinkedService

func (adls AzureDatabricksLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAzureSQLDatabaseLinkedService

func (adls AzureDatabricksLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAzureSearchLinkedService

func (adls AzureDatabricksLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsAzureStorageLinkedService

func (adls AzureDatabricksLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsBasicLinkedService

func (adls AzureDatabricksLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsCassandraLinkedService

func (adls AzureDatabricksLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsConcurLinkedService

func (adls AzureDatabricksLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsCosmosDbLinkedService

func (adls AzureDatabricksLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsCouchbaseLinkedService

func (adls AzureDatabricksLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsCustomDataSourceLinkedService

func (adls AzureDatabricksLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsDb2LinkedService

func (adls AzureDatabricksLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsDrillLinkedService

func (adls AzureDatabricksLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsDynamicsLinkedService

func (adls AzureDatabricksLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsEloquaLinkedService

func (adls AzureDatabricksLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsFileServerLinkedService

func (adls AzureDatabricksLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsFtpServerLinkedService

func (adls AzureDatabricksLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsGoogleBigQueryLinkedService

func (adls AzureDatabricksLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsGreenplumLinkedService

func (adls AzureDatabricksLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsHBaseLinkedService

func (adls AzureDatabricksLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsHDInsightLinkedService

func (adls AzureDatabricksLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsHDInsightOnDemandLinkedService

func (adls AzureDatabricksLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsHTTPLinkedService

func (adls AzureDatabricksLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsHdfsLinkedService

func (adls AzureDatabricksLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsHiveLinkedService

func (adls AzureDatabricksLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsHubspotLinkedService

func (adls AzureDatabricksLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsImpalaLinkedService

func (adls AzureDatabricksLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsJiraLinkedService

func (adls AzureDatabricksLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsLinkedService

func (adls AzureDatabricksLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsMagentoLinkedService

func (adls AzureDatabricksLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsMariaDBLinkedService

func (adls AzureDatabricksLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsMarketoLinkedService

func (adls AzureDatabricksLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsMongoDbLinkedService

func (adls AzureDatabricksLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsMySQLLinkedService

func (adls AzureDatabricksLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsNetezzaLinkedService

func (adls AzureDatabricksLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsODataLinkedService

func (adls AzureDatabricksLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsOdbcLinkedService

func (adls AzureDatabricksLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsOracleLinkedService

func (adls AzureDatabricksLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsPaypalLinkedService

func (adls AzureDatabricksLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsPhoenixLinkedService

func (adls AzureDatabricksLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsPostgreSQLLinkedService

func (adls AzureDatabricksLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsPrestoLinkedService

func (adls AzureDatabricksLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsQuickBooksLinkedService

func (adls AzureDatabricksLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsResponsysLinkedService

func (adls AzureDatabricksLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsSQLServerLinkedService

func (adls AzureDatabricksLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsSalesforceLinkedService

func (adls AzureDatabricksLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsSalesforceMarketingCloudLinkedService

func (adls AzureDatabricksLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsSapBWLinkedService

func (adls AzureDatabricksLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsSapCloudForCustomerLinkedService

func (adls AzureDatabricksLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsSapEccLinkedService

func (adls AzureDatabricksLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsSapHanaLinkedService

func (adls AzureDatabricksLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsServiceNowLinkedService

func (adls AzureDatabricksLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsSftpServerLinkedService

func (adls AzureDatabricksLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsShopifyLinkedService

func (adls AzureDatabricksLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsSparkLinkedService

func (adls AzureDatabricksLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsSquareLinkedService

func (adls AzureDatabricksLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsSybaseLinkedService

func (adls AzureDatabricksLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsTeradataLinkedService

func (adls AzureDatabricksLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsVerticaLinkedService

func (adls AzureDatabricksLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsWebLinkedService

func (adls AzureDatabricksLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsXeroLinkedService

func (adls AzureDatabricksLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) AsZohoLinkedService

func (adls AzureDatabricksLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AzureDatabricksLinkedService.

func (AzureDatabricksLinkedService) MarshalJSON

func (adls AzureDatabricksLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureDatabricksLinkedService.

func (*AzureDatabricksLinkedService) UnmarshalJSON

func (adls *AzureDatabricksLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureDatabricksLinkedService struct.

type AzureDatabricksLinkedServiceTypeProperties

type AzureDatabricksLinkedServiceTypeProperties struct {
	// Domain - <REGION>.azuredatabricks.net, domain name of your Databricks deployment. Type: string (or Expression with resultType string).
	Domain interface{} `json:"domain,omitempty"`
	// AccessToken - Access token for databricks REST API. Refer to https://docs.azuredatabricks.net/api/latest/authentication.html. Type: string (or Expression with resultType string).
	AccessToken BasicSecretBase `json:"accessToken,omitempty"`
	// ExistingClusterID - The id of an existing cluster that will be used for all runs of this job. Type: string (or Expression with resultType string).
	ExistingClusterID interface{} `json:"existingClusterId,omitempty"`
	// NewClusterVersion - The Spark version of new cluster. Type: string (or Expression with resultType string).
	NewClusterVersion interface{} `json:"newClusterVersion,omitempty"`
	// NewClusterNumOfWorker - Number of worker nodes that new cluster should have. A string formatted Int32, like '1' means numOfWorker is 1 or '1:10' means auto-scale from 1 as min and 10 as max. Type: string (or Expression with resultType string).
	NewClusterNumOfWorker interface{} `json:"newClusterNumOfWorker,omitempty"`
	// NewClusterNodeType - The node types of new cluster. Type: string (or Expression with resultType string).
	NewClusterNodeType interface{} `json:"newClusterNodeType,omitempty"`
	// NewClusterSparkConf - a set of optional, user-specified Spark configuration key-value pairs.
	NewClusterSparkConf map[string]interface{} `json:"newClusterSparkConf"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AzureDatabricksLinkedServiceTypeProperties azure Databricks linked service properties.

func (AzureDatabricksLinkedServiceTypeProperties) MarshalJSON

func (adlstp AzureDatabricksLinkedServiceTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureDatabricksLinkedServiceTypeProperties.

func (*AzureDatabricksLinkedServiceTypeProperties) UnmarshalJSON

func (adlstp *AzureDatabricksLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureDatabricksLinkedServiceTypeProperties struct.

type AzureKeyVaultLinkedService

type AzureKeyVaultLinkedService struct {
	// AzureKeyVaultLinkedServiceTypeProperties - Azure Key Vault linked service properties.
	*AzureKeyVaultLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AzureKeyVaultLinkedService azure Key Vault linked service.

func (AzureKeyVaultLinkedService) AsAmazonMWSLinkedService

func (akvls AzureKeyVaultLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAmazonRedshiftLinkedService

func (akvls AzureKeyVaultLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAmazonS3LinkedService

func (akvls AzureKeyVaultLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAzureBatchLinkedService

func (akvls AzureKeyVaultLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (akvls AzureKeyVaultLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAzureDataLakeStoreLinkedService

func (akvls AzureKeyVaultLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAzureDatabricksLinkedService

func (akvls AzureKeyVaultLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAzureKeyVaultLinkedService

func (akvls AzureKeyVaultLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAzureMLLinkedService

func (akvls AzureKeyVaultLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAzureMySQLLinkedService

func (akvls AzureKeyVaultLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAzurePostgreSQLLinkedService

func (akvls AzureKeyVaultLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAzureSQLDWLinkedService

func (akvls AzureKeyVaultLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAzureSQLDatabaseLinkedService

func (akvls AzureKeyVaultLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAzureSearchLinkedService

func (akvls AzureKeyVaultLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsAzureStorageLinkedService

func (akvls AzureKeyVaultLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsBasicLinkedService

func (akvls AzureKeyVaultLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsCassandraLinkedService

func (akvls AzureKeyVaultLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsConcurLinkedService

func (akvls AzureKeyVaultLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsCosmosDbLinkedService

func (akvls AzureKeyVaultLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsCouchbaseLinkedService

func (akvls AzureKeyVaultLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsCustomDataSourceLinkedService

func (akvls AzureKeyVaultLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsDb2LinkedService

func (akvls AzureKeyVaultLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsDrillLinkedService

func (akvls AzureKeyVaultLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsDynamicsLinkedService

func (akvls AzureKeyVaultLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsEloquaLinkedService

func (akvls AzureKeyVaultLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsFileServerLinkedService

func (akvls AzureKeyVaultLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsFtpServerLinkedService

func (akvls AzureKeyVaultLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsGoogleBigQueryLinkedService

func (akvls AzureKeyVaultLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsGreenplumLinkedService

func (akvls AzureKeyVaultLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsHBaseLinkedService

func (akvls AzureKeyVaultLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsHDInsightLinkedService

func (akvls AzureKeyVaultLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsHDInsightOnDemandLinkedService

func (akvls AzureKeyVaultLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsHTTPLinkedService

func (akvls AzureKeyVaultLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsHdfsLinkedService

func (akvls AzureKeyVaultLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsHiveLinkedService

func (akvls AzureKeyVaultLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsHubspotLinkedService

func (akvls AzureKeyVaultLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsImpalaLinkedService

func (akvls AzureKeyVaultLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsJiraLinkedService

func (akvls AzureKeyVaultLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsLinkedService

func (akvls AzureKeyVaultLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsMagentoLinkedService

func (akvls AzureKeyVaultLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsMariaDBLinkedService

func (akvls AzureKeyVaultLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsMarketoLinkedService

func (akvls AzureKeyVaultLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsMongoDbLinkedService

func (akvls AzureKeyVaultLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsMySQLLinkedService

func (akvls AzureKeyVaultLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsNetezzaLinkedService

func (akvls AzureKeyVaultLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsODataLinkedService

func (akvls AzureKeyVaultLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsOdbcLinkedService

func (akvls AzureKeyVaultLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsOracleLinkedService

func (akvls AzureKeyVaultLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsPaypalLinkedService

func (akvls AzureKeyVaultLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsPhoenixLinkedService

func (akvls AzureKeyVaultLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsPostgreSQLLinkedService

func (akvls AzureKeyVaultLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsPrestoLinkedService

func (akvls AzureKeyVaultLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsQuickBooksLinkedService

func (akvls AzureKeyVaultLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsResponsysLinkedService

func (akvls AzureKeyVaultLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsSQLServerLinkedService

func (akvls AzureKeyVaultLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsSalesforceLinkedService

func (akvls AzureKeyVaultLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsSalesforceMarketingCloudLinkedService

func (akvls AzureKeyVaultLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsSapBWLinkedService

func (akvls AzureKeyVaultLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsSapCloudForCustomerLinkedService

func (akvls AzureKeyVaultLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsSapEccLinkedService

func (akvls AzureKeyVaultLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsSapHanaLinkedService

func (akvls AzureKeyVaultLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsServiceNowLinkedService

func (akvls AzureKeyVaultLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsSftpServerLinkedService

func (akvls AzureKeyVaultLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsShopifyLinkedService

func (akvls AzureKeyVaultLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsSparkLinkedService

func (akvls AzureKeyVaultLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsSquareLinkedService

func (akvls AzureKeyVaultLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsSybaseLinkedService

func (akvls AzureKeyVaultLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsTeradataLinkedService

func (akvls AzureKeyVaultLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsVerticaLinkedService

func (akvls AzureKeyVaultLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsWebLinkedService

func (akvls AzureKeyVaultLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsXeroLinkedService

func (akvls AzureKeyVaultLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) AsZohoLinkedService

func (akvls AzureKeyVaultLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AzureKeyVaultLinkedService.

func (AzureKeyVaultLinkedService) MarshalJSON

func (akvls AzureKeyVaultLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureKeyVaultLinkedService.

func (*AzureKeyVaultLinkedService) UnmarshalJSON

func (akvls *AzureKeyVaultLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureKeyVaultLinkedService struct.

type AzureKeyVaultLinkedServiceTypeProperties

type AzureKeyVaultLinkedServiceTypeProperties struct {
	// BaseURL - The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string (or Expression with resultType string).
	BaseURL interface{} `json:"baseUrl,omitempty"`
}

AzureKeyVaultLinkedServiceTypeProperties azure Key Vault linked service properties.

type AzureKeyVaultSecretReference

type AzureKeyVaultSecretReference struct {
	// Store - The Azure Key Vault linked service reference.
	Store *LinkedServiceReference `json:"store,omitempty"`
	// SecretName - The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
	SecretName interface{} `json:"secretName,omitempty"`
	// SecretVersion - The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
	SecretVersion interface{} `json:"secretVersion,omitempty"`
	// Type - Possible values include: 'TypeSecretBase', 'TypeSecureString', 'TypeAzureKeyVaultSecret'
	Type Type `json:"type,omitempty"`
}

AzureKeyVaultSecretReference azure Key Vault secret reference.

func (AzureKeyVaultSecretReference) AsAzureKeyVaultSecretReference

func (akvsr AzureKeyVaultSecretReference) AsAzureKeyVaultSecretReference() (*AzureKeyVaultSecretReference, bool)

AsAzureKeyVaultSecretReference is the BasicSecretBase implementation for AzureKeyVaultSecretReference.

func (AzureKeyVaultSecretReference) AsBasicSecretBase

func (akvsr AzureKeyVaultSecretReference) AsBasicSecretBase() (BasicSecretBase, bool)

AsBasicSecretBase is the BasicSecretBase implementation for AzureKeyVaultSecretReference.

func (AzureKeyVaultSecretReference) AsSecretBase

func (akvsr AzureKeyVaultSecretReference) AsSecretBase() (*SecretBase, bool)

AsSecretBase is the BasicSecretBase implementation for AzureKeyVaultSecretReference.

func (AzureKeyVaultSecretReference) AsSecureString

func (akvsr AzureKeyVaultSecretReference) AsSecureString() (*SecureString, bool)

AsSecureString is the BasicSecretBase implementation for AzureKeyVaultSecretReference.

func (AzureKeyVaultSecretReference) MarshalJSON

func (akvsr AzureKeyVaultSecretReference) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureKeyVaultSecretReference.

type AzureMLBatchExecutionActivity

type AzureMLBatchExecutionActivity struct {
	// AzureMLBatchExecutionActivityTypeProperties - Azure ML Batch Execution activity properties.
	*AzureMLBatchExecutionActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

AzureMLBatchExecutionActivity azure ML Batch Execution activity.

func (AzureMLBatchExecutionActivity) AsActivity

func (ambea AzureMLBatchExecutionActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsAzureMLBatchExecutionActivity

func (ambea AzureMLBatchExecutionActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsAzureMLUpdateResourceActivity

func (ambea AzureMLBatchExecutionActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsBasicActivity

func (ambea AzureMLBatchExecutionActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsBasicControlActivity

func (ambea AzureMLBatchExecutionActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsBasicExecutionActivity

func (ambea AzureMLBatchExecutionActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsControlActivity

func (ambea AzureMLBatchExecutionActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsCopyActivity

func (ambea AzureMLBatchExecutionActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsCustomActivity

func (ambea AzureMLBatchExecutionActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsDataLakeAnalyticsUSQLActivity

func (ambea AzureMLBatchExecutionActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsDatabricksNotebookActivity

func (ambea AzureMLBatchExecutionActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsExecutePipelineActivity

func (ambea AzureMLBatchExecutionActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsExecuteSSISPackageActivity

func (ambea AzureMLBatchExecutionActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsExecutionActivity

func (ambea AzureMLBatchExecutionActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsFilterActivity

func (ambea AzureMLBatchExecutionActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsForEachActivity

func (ambea AzureMLBatchExecutionActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsGetMetadataActivity

func (ambea AzureMLBatchExecutionActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsHDInsightHiveActivity

func (ambea AzureMLBatchExecutionActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsHDInsightMapReduceActivity

func (ambea AzureMLBatchExecutionActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsHDInsightPigActivity

func (ambea AzureMLBatchExecutionActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsHDInsightSparkActivity

func (ambea AzureMLBatchExecutionActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsHDInsightStreamingActivity

func (ambea AzureMLBatchExecutionActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsIfConditionActivity

func (ambea AzureMLBatchExecutionActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsLookupActivity

func (ambea AzureMLBatchExecutionActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsSQLServerStoredProcedureActivity

func (ambea AzureMLBatchExecutionActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsUntilActivity

func (ambea AzureMLBatchExecutionActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsWaitActivity

func (ambea AzureMLBatchExecutionActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) AsWebActivity

func (ambea AzureMLBatchExecutionActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for AzureMLBatchExecutionActivity.

func (AzureMLBatchExecutionActivity) MarshalJSON

func (ambea AzureMLBatchExecutionActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureMLBatchExecutionActivity.

func (*AzureMLBatchExecutionActivity) UnmarshalJSON

func (ambea *AzureMLBatchExecutionActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureMLBatchExecutionActivity struct.

type AzureMLBatchExecutionActivityTypeProperties

type AzureMLBatchExecutionActivityTypeProperties struct {
	// GlobalParameters - Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.
	GlobalParameters map[string]interface{} `json:"globalParameters"`
	// WebServiceOutputs - Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.
	WebServiceOutputs map[string]*AzureMLWebServiceFile `json:"webServiceOutputs"`
	// WebServiceInputs - Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.
	WebServiceInputs map[string]*AzureMLWebServiceFile `json:"webServiceInputs"`
}

AzureMLBatchExecutionActivityTypeProperties azure ML Batch Execution activity properties.

func (AzureMLBatchExecutionActivityTypeProperties) MarshalJSON

func (ambeatp AzureMLBatchExecutionActivityTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureMLBatchExecutionActivityTypeProperties.

type AzureMLLinkedService

type AzureMLLinkedService struct {
	// AzureMLLinkedServiceTypeProperties - Azure ML Web Service linked service properties.
	*AzureMLLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AzureMLLinkedService azure ML Web Service linked service.

func (AzureMLLinkedService) AsAmazonMWSLinkedService

func (amls AzureMLLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAmazonRedshiftLinkedService

func (amls AzureMLLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAmazonS3LinkedService

func (amls AzureMLLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAzureBatchLinkedService

func (amls AzureMLLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (amls AzureMLLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAzureDataLakeStoreLinkedService

func (amls AzureMLLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAzureDatabricksLinkedService

func (amls AzureMLLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAzureKeyVaultLinkedService

func (amls AzureMLLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAzureMLLinkedService

func (amls AzureMLLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAzureMySQLLinkedService

func (amls AzureMLLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAzurePostgreSQLLinkedService

func (amls AzureMLLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAzureSQLDWLinkedService

func (amls AzureMLLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAzureSQLDatabaseLinkedService

func (amls AzureMLLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAzureSearchLinkedService

func (amls AzureMLLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsAzureStorageLinkedService

func (amls AzureMLLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsBasicLinkedService

func (amls AzureMLLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsCassandraLinkedService

func (amls AzureMLLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsConcurLinkedService

func (amls AzureMLLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsCosmosDbLinkedService

func (amls AzureMLLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsCouchbaseLinkedService

func (amls AzureMLLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsCustomDataSourceLinkedService

func (amls AzureMLLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsDb2LinkedService

func (amls AzureMLLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsDrillLinkedService

func (amls AzureMLLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsDynamicsLinkedService

func (amls AzureMLLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsEloquaLinkedService

func (amls AzureMLLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsFileServerLinkedService

func (amls AzureMLLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsFtpServerLinkedService

func (amls AzureMLLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsGoogleBigQueryLinkedService

func (amls AzureMLLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsGreenplumLinkedService

func (amls AzureMLLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsHBaseLinkedService

func (amls AzureMLLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsHDInsightLinkedService

func (amls AzureMLLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsHDInsightOnDemandLinkedService

func (amls AzureMLLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsHTTPLinkedService

func (amls AzureMLLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsHdfsLinkedService

func (amls AzureMLLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsHiveLinkedService

func (amls AzureMLLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsHubspotLinkedService

func (amls AzureMLLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsImpalaLinkedService

func (amls AzureMLLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsJiraLinkedService

func (amls AzureMLLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsLinkedService

func (amls AzureMLLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsMagentoLinkedService

func (amls AzureMLLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsMariaDBLinkedService

func (amls AzureMLLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsMarketoLinkedService

func (amls AzureMLLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsMongoDbLinkedService

func (amls AzureMLLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsMySQLLinkedService

func (amls AzureMLLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsNetezzaLinkedService

func (amls AzureMLLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsODataLinkedService

func (amls AzureMLLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsOdbcLinkedService

func (amls AzureMLLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsOracleLinkedService

func (amls AzureMLLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsPaypalLinkedService

func (amls AzureMLLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsPhoenixLinkedService

func (amls AzureMLLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsPostgreSQLLinkedService

func (amls AzureMLLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsPrestoLinkedService

func (amls AzureMLLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsQuickBooksLinkedService

func (amls AzureMLLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsResponsysLinkedService

func (amls AzureMLLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsSQLServerLinkedService

func (amls AzureMLLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsSalesforceLinkedService

func (amls AzureMLLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsSalesforceMarketingCloudLinkedService

func (amls AzureMLLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsSapBWLinkedService

func (amls AzureMLLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsSapCloudForCustomerLinkedService

func (amls AzureMLLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsSapEccLinkedService

func (amls AzureMLLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsSapHanaLinkedService

func (amls AzureMLLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsServiceNowLinkedService

func (amls AzureMLLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsSftpServerLinkedService

func (amls AzureMLLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsShopifyLinkedService

func (amls AzureMLLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsSparkLinkedService

func (amls AzureMLLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsSquareLinkedService

func (amls AzureMLLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsSybaseLinkedService

func (amls AzureMLLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsTeradataLinkedService

func (amls AzureMLLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsVerticaLinkedService

func (amls AzureMLLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsWebLinkedService

func (amls AzureMLLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsXeroLinkedService

func (amls AzureMLLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) AsZohoLinkedService

func (amls AzureMLLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AzureMLLinkedService.

func (AzureMLLinkedService) MarshalJSON

func (amls AzureMLLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureMLLinkedService.

func (*AzureMLLinkedService) UnmarshalJSON

func (amls *AzureMLLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureMLLinkedService struct.

type AzureMLLinkedServiceTypeProperties

type AzureMLLinkedServiceTypeProperties struct {
	// MlEndpoint - The Batch Execution REST URL for an Azure ML Web Service endpoint. Type: string (or Expression with resultType string).
	MlEndpoint interface{} `json:"mlEndpoint,omitempty"`
	// APIKey - The API key for accessing the Azure ML model endpoint.
	APIKey BasicSecretBase `json:"apiKey,omitempty"`
	// UpdateResourceEndpoint - The Update Resource REST URL for an Azure ML Web Service endpoint. Type: string (or Expression with resultType string).
	UpdateResourceEndpoint interface{} `json:"updateResourceEndpoint,omitempty"`
	// ServicePrincipalID - The ID of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML web service. Type: string (or Expression with resultType string).
	ServicePrincipalID interface{} `json:"servicePrincipalId,omitempty"`
	// ServicePrincipalKey - The key of the service principal used to authenticate against the ARM-based updateResourceEndpoint of an Azure ML web service.
	ServicePrincipalKey BasicSecretBase `json:"servicePrincipalKey,omitempty"`
	// Tenant - The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
	Tenant interface{} `json:"tenant,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AzureMLLinkedServiceTypeProperties azure ML Web Service linked service properties.

func (*AzureMLLinkedServiceTypeProperties) UnmarshalJSON

func (amlstp *AzureMLLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureMLLinkedServiceTypeProperties struct.

type AzureMLUpdateResourceActivity

type AzureMLUpdateResourceActivity struct {
	// AzureMLUpdateResourceActivityTypeProperties - Azure ML Update Resource management activity properties.
	*AzureMLUpdateResourceActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

AzureMLUpdateResourceActivity azure ML Update Resource management activity.

func (AzureMLUpdateResourceActivity) AsActivity

func (amura AzureMLUpdateResourceActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsAzureMLBatchExecutionActivity

func (amura AzureMLUpdateResourceActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsAzureMLUpdateResourceActivity

func (amura AzureMLUpdateResourceActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsBasicActivity

func (amura AzureMLUpdateResourceActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsBasicControlActivity

func (amura AzureMLUpdateResourceActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsBasicExecutionActivity

func (amura AzureMLUpdateResourceActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsControlActivity

func (amura AzureMLUpdateResourceActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsCopyActivity

func (amura AzureMLUpdateResourceActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsCustomActivity

func (amura AzureMLUpdateResourceActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsDataLakeAnalyticsUSQLActivity

func (amura AzureMLUpdateResourceActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsDatabricksNotebookActivity

func (amura AzureMLUpdateResourceActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsExecutePipelineActivity

func (amura AzureMLUpdateResourceActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsExecuteSSISPackageActivity

func (amura AzureMLUpdateResourceActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsExecutionActivity

func (amura AzureMLUpdateResourceActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsFilterActivity

func (amura AzureMLUpdateResourceActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsForEachActivity

func (amura AzureMLUpdateResourceActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsGetMetadataActivity

func (amura AzureMLUpdateResourceActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsHDInsightHiveActivity

func (amura AzureMLUpdateResourceActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsHDInsightMapReduceActivity

func (amura AzureMLUpdateResourceActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsHDInsightPigActivity

func (amura AzureMLUpdateResourceActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsHDInsightSparkActivity

func (amura AzureMLUpdateResourceActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsHDInsightStreamingActivity

func (amura AzureMLUpdateResourceActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsIfConditionActivity

func (amura AzureMLUpdateResourceActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsLookupActivity

func (amura AzureMLUpdateResourceActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsSQLServerStoredProcedureActivity

func (amura AzureMLUpdateResourceActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsUntilActivity

func (amura AzureMLUpdateResourceActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsWaitActivity

func (amura AzureMLUpdateResourceActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) AsWebActivity

func (amura AzureMLUpdateResourceActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for AzureMLUpdateResourceActivity.

func (AzureMLUpdateResourceActivity) MarshalJSON

func (amura AzureMLUpdateResourceActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureMLUpdateResourceActivity.

func (*AzureMLUpdateResourceActivity) UnmarshalJSON

func (amura *AzureMLUpdateResourceActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureMLUpdateResourceActivity struct.

type AzureMLUpdateResourceActivityTypeProperties

type AzureMLUpdateResourceActivityTypeProperties struct {
	// TrainedModelName - Name of the Trained Model module in the Web Service experiment to be updated. Type: string (or Expression with resultType string).
	TrainedModelName interface{} `json:"trainedModelName,omitempty"`
	// TrainedModelLinkedServiceName - Name of Azure Storage linked service holding the .ilearner file that will be uploaded by the update operation.
	TrainedModelLinkedServiceName *LinkedServiceReference `json:"trainedModelLinkedServiceName,omitempty"`
	// TrainedModelFilePath - The relative file path in trainedModelLinkedService to represent the .ilearner file that will be uploaded by the update operation.  Type: string (or Expression with resultType string).
	TrainedModelFilePath interface{} `json:"trainedModelFilePath,omitempty"`
}

AzureMLUpdateResourceActivityTypeProperties azure ML Update Resource activity properties.

type AzureMLWebServiceFile

type AzureMLWebServiceFile struct {
	// FilePath - The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
	FilePath interface{} `json:"filePath,omitempty"`
	// LinkedServiceName - Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
}

AzureMLWebServiceFile azure ML WebService Input/Output file

type AzureMySQLLinkedService

type AzureMySQLLinkedService struct {
	// AzureMySQLLinkedServiceTypeProperties - Azure MySQL database linked service properties.
	*AzureMySQLLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AzureMySQLLinkedService azure MySQL database linked service.

func (AzureMySQLLinkedService) AsAmazonMWSLinkedService

func (amsls AzureMySQLLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAmazonRedshiftLinkedService

func (amsls AzureMySQLLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAmazonS3LinkedService

func (amsls AzureMySQLLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAzureBatchLinkedService

func (amsls AzureMySQLLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (amsls AzureMySQLLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAzureDataLakeStoreLinkedService

func (amsls AzureMySQLLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAzureDatabricksLinkedService

func (amsls AzureMySQLLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAzureKeyVaultLinkedService

func (amsls AzureMySQLLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAzureMLLinkedService

func (amsls AzureMySQLLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAzureMySQLLinkedService

func (amsls AzureMySQLLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAzurePostgreSQLLinkedService

func (amsls AzureMySQLLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAzureSQLDWLinkedService

func (amsls AzureMySQLLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAzureSQLDatabaseLinkedService

func (amsls AzureMySQLLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAzureSearchLinkedService

func (amsls AzureMySQLLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsAzureStorageLinkedService

func (amsls AzureMySQLLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsBasicLinkedService

func (amsls AzureMySQLLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsCassandraLinkedService

func (amsls AzureMySQLLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsConcurLinkedService

func (amsls AzureMySQLLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsCosmosDbLinkedService

func (amsls AzureMySQLLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsCouchbaseLinkedService

func (amsls AzureMySQLLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsCustomDataSourceLinkedService

func (amsls AzureMySQLLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsDb2LinkedService

func (amsls AzureMySQLLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsDrillLinkedService

func (amsls AzureMySQLLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsDynamicsLinkedService

func (amsls AzureMySQLLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsEloquaLinkedService

func (amsls AzureMySQLLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsFileServerLinkedService

func (amsls AzureMySQLLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsFtpServerLinkedService

func (amsls AzureMySQLLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsGoogleBigQueryLinkedService

func (amsls AzureMySQLLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsGreenplumLinkedService

func (amsls AzureMySQLLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsHBaseLinkedService

func (amsls AzureMySQLLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsHDInsightLinkedService

func (amsls AzureMySQLLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsHDInsightOnDemandLinkedService

func (amsls AzureMySQLLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsHTTPLinkedService

func (amsls AzureMySQLLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsHdfsLinkedService

func (amsls AzureMySQLLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsHiveLinkedService

func (amsls AzureMySQLLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsHubspotLinkedService

func (amsls AzureMySQLLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsImpalaLinkedService

func (amsls AzureMySQLLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsJiraLinkedService

func (amsls AzureMySQLLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsLinkedService

func (amsls AzureMySQLLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsMagentoLinkedService

func (amsls AzureMySQLLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsMariaDBLinkedService

func (amsls AzureMySQLLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsMarketoLinkedService

func (amsls AzureMySQLLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsMongoDbLinkedService

func (amsls AzureMySQLLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsMySQLLinkedService

func (amsls AzureMySQLLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsNetezzaLinkedService

func (amsls AzureMySQLLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsODataLinkedService

func (amsls AzureMySQLLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsOdbcLinkedService

func (amsls AzureMySQLLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsOracleLinkedService

func (amsls AzureMySQLLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsPaypalLinkedService

func (amsls AzureMySQLLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsPhoenixLinkedService

func (amsls AzureMySQLLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsPostgreSQLLinkedService

func (amsls AzureMySQLLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsPrestoLinkedService

func (amsls AzureMySQLLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsQuickBooksLinkedService

func (amsls AzureMySQLLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsResponsysLinkedService

func (amsls AzureMySQLLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsSQLServerLinkedService

func (amsls AzureMySQLLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsSalesforceLinkedService

func (amsls AzureMySQLLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsSalesforceMarketingCloudLinkedService

func (amsls AzureMySQLLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsSapBWLinkedService

func (amsls AzureMySQLLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsSapCloudForCustomerLinkedService

func (amsls AzureMySQLLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsSapEccLinkedService

func (amsls AzureMySQLLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsSapHanaLinkedService

func (amsls AzureMySQLLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsServiceNowLinkedService

func (amsls AzureMySQLLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsSftpServerLinkedService

func (amsls AzureMySQLLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsShopifyLinkedService

func (amsls AzureMySQLLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsSparkLinkedService

func (amsls AzureMySQLLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsSquareLinkedService

func (amsls AzureMySQLLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsSybaseLinkedService

func (amsls AzureMySQLLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsTeradataLinkedService

func (amsls AzureMySQLLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsVerticaLinkedService

func (amsls AzureMySQLLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsWebLinkedService

func (amsls AzureMySQLLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsXeroLinkedService

func (amsls AzureMySQLLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) AsZohoLinkedService

func (amsls AzureMySQLLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AzureMySQLLinkedService.

func (AzureMySQLLinkedService) MarshalJSON

func (amsls AzureMySQLLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureMySQLLinkedService.

func (*AzureMySQLLinkedService) UnmarshalJSON

func (amsls *AzureMySQLLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureMySQLLinkedService struct.

type AzureMySQLLinkedServiceTypeProperties

type AzureMySQLLinkedServiceTypeProperties struct {
	// ConnectionString - The connection string.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AzureMySQLLinkedServiceTypeProperties azure MySQL database linked service properties.

func (*AzureMySQLLinkedServiceTypeProperties) UnmarshalJSON

func (amslstp *AzureMySQLLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureMySQLLinkedServiceTypeProperties struct.

type AzureMySQLSource

type AzureMySQLSource struct {
	// Query - Database query. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

AzureMySQLSource a copy activity Azure MySQL source.

func (AzureMySQLSource) AsAmazonMWSSource

func (amss AzureMySQLSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsAmazonRedshiftSource

func (amss AzureMySQLSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsAzureDataLakeStoreSource

func (amss AzureMySQLSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsAzureMySQLSource

func (amss AzureMySQLSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsAzurePostgreSQLSource

func (amss AzureMySQLSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsAzureTableSource

func (amss AzureMySQLSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsBasicCopySource

func (amss AzureMySQLSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsBlobSource

func (amss AzureMySQLSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsCassandraSource

func (amss AzureMySQLSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsConcurSource

func (amss AzureMySQLSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsCopySource

func (amss AzureMySQLSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsCouchbaseSource

func (amss AzureMySQLSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsDocumentDbCollectionSource

func (amss AzureMySQLSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsDrillSource

func (amss AzureMySQLSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsDynamicsSource

func (amss AzureMySQLSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsEloquaSource

func (amss AzureMySQLSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsFileSystemSource

func (amss AzureMySQLSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsGoogleBigQuerySource

func (amss AzureMySQLSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsGreenplumSource

func (amss AzureMySQLSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsHBaseSource

func (amss AzureMySQLSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsHTTPSource

func (amss AzureMySQLSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsHdfsSource

func (amss AzureMySQLSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsHiveSource

func (amss AzureMySQLSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsHubspotSource

func (amss AzureMySQLSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsImpalaSource

func (amss AzureMySQLSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsJiraSource

func (amss AzureMySQLSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsMagentoSource

func (amss AzureMySQLSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsMariaDBSource

func (amss AzureMySQLSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsMarketoSource

func (amss AzureMySQLSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsMongoDbSource

func (amss AzureMySQLSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsNetezzaSource

func (amss AzureMySQLSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsOracleSource

func (amss AzureMySQLSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsPaypalSource

func (amss AzureMySQLSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsPhoenixSource

func (amss AzureMySQLSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsPrestoSource

func (amss AzureMySQLSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsQuickBooksSource

func (amss AzureMySQLSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsRelationalSource

func (amss AzureMySQLSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsResponsysSource

func (amss AzureMySQLSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsSQLDWSource

func (amss AzureMySQLSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsSQLSource

func (amss AzureMySQLSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsSalesforceMarketingCloudSource

func (amss AzureMySQLSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsSalesforceSource

func (amss AzureMySQLSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsSapCloudForCustomerSource

func (amss AzureMySQLSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsSapEccSource

func (amss AzureMySQLSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsServiceNowSource

func (amss AzureMySQLSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsShopifySource

func (amss AzureMySQLSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsSparkSource

func (amss AzureMySQLSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsSquareSource

func (amss AzureMySQLSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsVerticaSource

func (amss AzureMySQLSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsWebSource

func (amss AzureMySQLSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsXeroSource

func (amss AzureMySQLSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) AsZohoSource

func (amss AzureMySQLSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for AzureMySQLSource.

func (AzureMySQLSource) MarshalJSON

func (amss AzureMySQLSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureMySQLSource.

type AzureMySQLTableDataset

type AzureMySQLTableDataset struct {
	// AzureMySQLTableDatasetTypeProperties - Azure MySQL database dataset properties.
	*AzureMySQLTableDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

AzureMySQLTableDataset the Azure MySQL database dataset.

func (AzureMySQLTableDataset) AsAmazonMWSObjectDataset

func (amstd AzureMySQLTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsAmazonS3Dataset

func (amstd AzureMySQLTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsAzureBlobDataset

func (amstd AzureMySQLTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsAzureDataLakeStoreDataset

func (amstd AzureMySQLTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsAzureMySQLTableDataset

func (amstd AzureMySQLTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsAzurePostgreSQLTableDataset

func (amstd AzureMySQLTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsAzureSQLDWTableDataset

func (amstd AzureMySQLTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsAzureSQLTableDataset

func (amstd AzureMySQLTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsAzureSearchIndexDataset

func (amstd AzureMySQLTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsAzureTableDataset

func (amstd AzureMySQLTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsBasicDataset

func (amstd AzureMySQLTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsCassandraTableDataset

func (amstd AzureMySQLTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsConcurObjectDataset

func (amstd AzureMySQLTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsCouchbaseTableDataset

func (amstd AzureMySQLTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsCustomDataset

func (amstd AzureMySQLTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsDataset

func (amstd AzureMySQLTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsDocumentDbCollectionDataset

func (amstd AzureMySQLTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsDrillTableDataset

func (amstd AzureMySQLTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsDynamicsEntityDataset

func (amstd AzureMySQLTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsEloquaObjectDataset

func (amstd AzureMySQLTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsFileShareDataset

func (amstd AzureMySQLTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsGoogleBigQueryObjectDataset

func (amstd AzureMySQLTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsGreenplumTableDataset

func (amstd AzureMySQLTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsHBaseObjectDataset

func (amstd AzureMySQLTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsHTTPDataset

func (amstd AzureMySQLTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsHiveObjectDataset

func (amstd AzureMySQLTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsHubspotObjectDataset

func (amstd AzureMySQLTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsImpalaObjectDataset

func (amstd AzureMySQLTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsJiraObjectDataset

func (amstd AzureMySQLTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsMagentoObjectDataset

func (amstd AzureMySQLTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsMariaDBTableDataset

func (amstd AzureMySQLTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsMarketoObjectDataset

func (amstd AzureMySQLTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsMongoDbCollectionDataset

func (amstd AzureMySQLTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsNetezzaTableDataset

func (amstd AzureMySQLTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsODataResourceDataset

func (amstd AzureMySQLTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsOracleTableDataset

func (amstd AzureMySQLTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsPaypalObjectDataset

func (amstd AzureMySQLTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsPhoenixObjectDataset

func (amstd AzureMySQLTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsPrestoObjectDataset

func (amstd AzureMySQLTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsQuickBooksObjectDataset

func (amstd AzureMySQLTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsRelationalTableDataset

func (amstd AzureMySQLTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsResponsysObjectDataset

func (amstd AzureMySQLTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsSQLServerTableDataset

func (amstd AzureMySQLTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsSalesforceMarketingCloudObjectDataset

func (amstd AzureMySQLTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsSalesforceObjectDataset

func (amstd AzureMySQLTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsSapCloudForCustomerResourceDataset

func (amstd AzureMySQLTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsSapEccResourceDataset

func (amstd AzureMySQLTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsServiceNowObjectDataset

func (amstd AzureMySQLTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsShopifyObjectDataset

func (amstd AzureMySQLTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsSparkObjectDataset

func (amstd AzureMySQLTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsSquareObjectDataset

func (amstd AzureMySQLTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsVerticaTableDataset

func (amstd AzureMySQLTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsWebTableDataset

func (amstd AzureMySQLTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsXeroObjectDataset

func (amstd AzureMySQLTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) AsZohoObjectDataset

func (amstd AzureMySQLTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for AzureMySQLTableDataset.

func (AzureMySQLTableDataset) MarshalJSON

func (amstd AzureMySQLTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureMySQLTableDataset.

func (*AzureMySQLTableDataset) UnmarshalJSON

func (amstd *AzureMySQLTableDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureMySQLTableDataset struct.

type AzureMySQLTableDatasetTypeProperties

type AzureMySQLTableDatasetTypeProperties struct {
	// TableName - The Azure MySQL database table name. Type: string (or Expression with resultType string).
	TableName interface{} `json:"tableName,omitempty"`
}

AzureMySQLTableDatasetTypeProperties azure MySQL database dataset properties.

type AzurePostgreSQLLinkedService

type AzurePostgreSQLLinkedService struct {
	// AzurePostgreSQLLinkedServiceTypeProperties - Azure PostgreSQL linked service properties.
	*AzurePostgreSQLLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AzurePostgreSQLLinkedService azure PostgreSQL linked service.

func (AzurePostgreSQLLinkedService) AsAmazonMWSLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAmazonRedshiftLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAmazonS3LinkedService

func (apsls AzurePostgreSQLLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAzureBatchLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAzureDataLakeStoreLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAzureDatabricksLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAzureKeyVaultLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAzureMLLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAzureMySQLLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAzurePostgreSQLLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAzureSQLDWLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAzureSQLDatabaseLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAzureSearchLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsAzureStorageLinkedService

func (apsls AzurePostgreSQLLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsBasicLinkedService

func (apsls AzurePostgreSQLLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsCassandraLinkedService

func (apsls AzurePostgreSQLLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsConcurLinkedService

func (apsls AzurePostgreSQLLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsCosmosDbLinkedService

func (apsls AzurePostgreSQLLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsCouchbaseLinkedService

func (apsls AzurePostgreSQLLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsCustomDataSourceLinkedService

func (apsls AzurePostgreSQLLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsDb2LinkedService

func (apsls AzurePostgreSQLLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsDrillLinkedService

func (apsls AzurePostgreSQLLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsDynamicsLinkedService

func (apsls AzurePostgreSQLLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsEloquaLinkedService

func (apsls AzurePostgreSQLLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsFileServerLinkedService

func (apsls AzurePostgreSQLLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsFtpServerLinkedService

func (apsls AzurePostgreSQLLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsGoogleBigQueryLinkedService

func (apsls AzurePostgreSQLLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsGreenplumLinkedService

func (apsls AzurePostgreSQLLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsHBaseLinkedService

func (apsls AzurePostgreSQLLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsHDInsightLinkedService

func (apsls AzurePostgreSQLLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsHDInsightOnDemandLinkedService

func (apsls AzurePostgreSQLLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsHTTPLinkedService

func (apsls AzurePostgreSQLLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsHdfsLinkedService

func (apsls AzurePostgreSQLLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsHiveLinkedService

func (apsls AzurePostgreSQLLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsHubspotLinkedService

func (apsls AzurePostgreSQLLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsImpalaLinkedService

func (apsls AzurePostgreSQLLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsJiraLinkedService

func (apsls AzurePostgreSQLLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsLinkedService

func (apsls AzurePostgreSQLLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsMagentoLinkedService

func (apsls AzurePostgreSQLLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsMariaDBLinkedService

func (apsls AzurePostgreSQLLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsMarketoLinkedService

func (apsls AzurePostgreSQLLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsMongoDbLinkedService

func (apsls AzurePostgreSQLLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsMySQLLinkedService

func (apsls AzurePostgreSQLLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsNetezzaLinkedService

func (apsls AzurePostgreSQLLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsODataLinkedService

func (apsls AzurePostgreSQLLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsOdbcLinkedService

func (apsls AzurePostgreSQLLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsOracleLinkedService

func (apsls AzurePostgreSQLLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsPaypalLinkedService

func (apsls AzurePostgreSQLLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsPhoenixLinkedService

func (apsls AzurePostgreSQLLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsPostgreSQLLinkedService

func (apsls AzurePostgreSQLLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsPrestoLinkedService

func (apsls AzurePostgreSQLLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsQuickBooksLinkedService

func (apsls AzurePostgreSQLLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsResponsysLinkedService

func (apsls AzurePostgreSQLLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsSQLServerLinkedService

func (apsls AzurePostgreSQLLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsSalesforceLinkedService

func (apsls AzurePostgreSQLLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsSalesforceMarketingCloudLinkedService

func (apsls AzurePostgreSQLLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsSapBWLinkedService

func (apsls AzurePostgreSQLLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsSapCloudForCustomerLinkedService

func (apsls AzurePostgreSQLLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsSapEccLinkedService

func (apsls AzurePostgreSQLLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsSapHanaLinkedService

func (apsls AzurePostgreSQLLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsServiceNowLinkedService

func (apsls AzurePostgreSQLLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsSftpServerLinkedService

func (apsls AzurePostgreSQLLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsShopifyLinkedService

func (apsls AzurePostgreSQLLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsSparkLinkedService

func (apsls AzurePostgreSQLLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsSquareLinkedService

func (apsls AzurePostgreSQLLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsSybaseLinkedService

func (apsls AzurePostgreSQLLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsTeradataLinkedService

func (apsls AzurePostgreSQLLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsVerticaLinkedService

func (apsls AzurePostgreSQLLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsWebLinkedService

func (apsls AzurePostgreSQLLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsXeroLinkedService

func (apsls AzurePostgreSQLLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) AsZohoLinkedService

func (apsls AzurePostgreSQLLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AzurePostgreSQLLinkedService.

func (AzurePostgreSQLLinkedService) MarshalJSON

func (apsls AzurePostgreSQLLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzurePostgreSQLLinkedService.

func (*AzurePostgreSQLLinkedService) UnmarshalJSON

func (apsls *AzurePostgreSQLLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzurePostgreSQLLinkedService struct.

type AzurePostgreSQLLinkedServiceTypeProperties

type AzurePostgreSQLLinkedServiceTypeProperties struct {
	// ConnectionString - An ODBC connection string.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AzurePostgreSQLLinkedServiceTypeProperties azure PostgreSQL linked service properties.

func (*AzurePostgreSQLLinkedServiceTypeProperties) UnmarshalJSON

func (apslstp *AzurePostgreSQLLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzurePostgreSQLLinkedServiceTypeProperties struct.

type AzurePostgreSQLSource

type AzurePostgreSQLSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

AzurePostgreSQLSource a copy activity Azure PostgreSQL source.

func (AzurePostgreSQLSource) AsAmazonMWSSource

func (apss AzurePostgreSQLSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsAmazonRedshiftSource

func (apss AzurePostgreSQLSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsAzureDataLakeStoreSource

func (apss AzurePostgreSQLSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsAzureMySQLSource

func (apss AzurePostgreSQLSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsAzurePostgreSQLSource

func (apss AzurePostgreSQLSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsAzureTableSource

func (apss AzurePostgreSQLSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsBasicCopySource

func (apss AzurePostgreSQLSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsBlobSource

func (apss AzurePostgreSQLSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsCassandraSource

func (apss AzurePostgreSQLSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsConcurSource

func (apss AzurePostgreSQLSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsCopySource

func (apss AzurePostgreSQLSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsCouchbaseSource

func (apss AzurePostgreSQLSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsDocumentDbCollectionSource

func (apss AzurePostgreSQLSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsDrillSource

func (apss AzurePostgreSQLSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsDynamicsSource

func (apss AzurePostgreSQLSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsEloquaSource

func (apss AzurePostgreSQLSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsFileSystemSource

func (apss AzurePostgreSQLSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsGoogleBigQuerySource

func (apss AzurePostgreSQLSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsGreenplumSource

func (apss AzurePostgreSQLSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsHBaseSource

func (apss AzurePostgreSQLSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsHTTPSource

func (apss AzurePostgreSQLSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsHdfsSource

func (apss AzurePostgreSQLSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsHiveSource

func (apss AzurePostgreSQLSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsHubspotSource

func (apss AzurePostgreSQLSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsImpalaSource

func (apss AzurePostgreSQLSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsJiraSource

func (apss AzurePostgreSQLSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsMagentoSource

func (apss AzurePostgreSQLSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsMariaDBSource

func (apss AzurePostgreSQLSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsMarketoSource

func (apss AzurePostgreSQLSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsMongoDbSource

func (apss AzurePostgreSQLSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsNetezzaSource

func (apss AzurePostgreSQLSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsOracleSource

func (apss AzurePostgreSQLSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsPaypalSource

func (apss AzurePostgreSQLSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsPhoenixSource

func (apss AzurePostgreSQLSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsPrestoSource

func (apss AzurePostgreSQLSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsQuickBooksSource

func (apss AzurePostgreSQLSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsRelationalSource

func (apss AzurePostgreSQLSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsResponsysSource

func (apss AzurePostgreSQLSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsSQLDWSource

func (apss AzurePostgreSQLSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsSQLSource

func (apss AzurePostgreSQLSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsSalesforceMarketingCloudSource

func (apss AzurePostgreSQLSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsSalesforceSource

func (apss AzurePostgreSQLSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsSapCloudForCustomerSource

func (apss AzurePostgreSQLSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsSapEccSource

func (apss AzurePostgreSQLSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsServiceNowSource

func (apss AzurePostgreSQLSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsShopifySource

func (apss AzurePostgreSQLSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsSparkSource

func (apss AzurePostgreSQLSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsSquareSource

func (apss AzurePostgreSQLSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsVerticaSource

func (apss AzurePostgreSQLSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsWebSource

func (apss AzurePostgreSQLSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsXeroSource

func (apss AzurePostgreSQLSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) AsZohoSource

func (apss AzurePostgreSQLSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for AzurePostgreSQLSource.

func (AzurePostgreSQLSource) MarshalJSON

func (apss AzurePostgreSQLSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzurePostgreSQLSource.

type AzurePostgreSQLTableDataset

type AzurePostgreSQLTableDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

AzurePostgreSQLTableDataset azure PostgreSQL dataset.

func (AzurePostgreSQLTableDataset) AsAmazonMWSObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsAmazonS3Dataset

func (apstd AzurePostgreSQLTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsAzureBlobDataset

func (apstd AzurePostgreSQLTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsAzureDataLakeStoreDataset

func (apstd AzurePostgreSQLTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsAzureMySQLTableDataset

func (apstd AzurePostgreSQLTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsAzurePostgreSQLTableDataset

func (apstd AzurePostgreSQLTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsAzureSQLDWTableDataset

func (apstd AzurePostgreSQLTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsAzureSQLTableDataset

func (apstd AzurePostgreSQLTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsAzureSearchIndexDataset

func (apstd AzurePostgreSQLTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsAzureTableDataset

func (apstd AzurePostgreSQLTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsBasicDataset

func (apstd AzurePostgreSQLTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsCassandraTableDataset

func (apstd AzurePostgreSQLTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsConcurObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsCouchbaseTableDataset

func (apstd AzurePostgreSQLTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsCustomDataset

func (apstd AzurePostgreSQLTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsDataset

func (apstd AzurePostgreSQLTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsDocumentDbCollectionDataset

func (apstd AzurePostgreSQLTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsDrillTableDataset

func (apstd AzurePostgreSQLTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsDynamicsEntityDataset

func (apstd AzurePostgreSQLTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsEloquaObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsFileShareDataset

func (apstd AzurePostgreSQLTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsGoogleBigQueryObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsGreenplumTableDataset

func (apstd AzurePostgreSQLTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsHBaseObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsHTTPDataset

func (apstd AzurePostgreSQLTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsHiveObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsHubspotObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsImpalaObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsJiraObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsMagentoObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsMariaDBTableDataset

func (apstd AzurePostgreSQLTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsMarketoObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsMongoDbCollectionDataset

func (apstd AzurePostgreSQLTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsNetezzaTableDataset

func (apstd AzurePostgreSQLTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsODataResourceDataset

func (apstd AzurePostgreSQLTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsOracleTableDataset

func (apstd AzurePostgreSQLTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsPaypalObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsPhoenixObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsPrestoObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsQuickBooksObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsRelationalTableDataset

func (apstd AzurePostgreSQLTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsResponsysObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsSQLServerTableDataset

func (apstd AzurePostgreSQLTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsSalesforceMarketingCloudObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsSalesforceObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsSapCloudForCustomerResourceDataset

func (apstd AzurePostgreSQLTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsSapEccResourceDataset

func (apstd AzurePostgreSQLTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsServiceNowObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsShopifyObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsSparkObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsSquareObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsVerticaTableDataset

func (apstd AzurePostgreSQLTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsWebTableDataset

func (apstd AzurePostgreSQLTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsXeroObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) AsZohoObjectDataset

func (apstd AzurePostgreSQLTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for AzurePostgreSQLTableDataset.

func (AzurePostgreSQLTableDataset) MarshalJSON

func (apstd AzurePostgreSQLTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzurePostgreSQLTableDataset.

type AzureQueueSink

type AzureQueueSink struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

AzureQueueSink a copy activity Azure Queue sink.

func (AzureQueueSink) AsAzureDataLakeStoreSink

func (aqs AzureQueueSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsAzureQueueSink

func (aqs AzureQueueSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsAzureSearchIndexSink

func (aqs AzureQueueSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsAzureTableSink

func (aqs AzureQueueSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsBasicCopySink

func (aqs AzureQueueSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsBlobSink

func (aqs AzureQueueSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsCopySink

func (aqs AzureQueueSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsDocumentDbCollectionSink

func (aqs AzureQueueSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsDynamicsSink

func (aqs AzureQueueSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsFileSystemSink

func (aqs AzureQueueSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsOdbcSink

func (aqs AzureQueueSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsOracleSink

func (aqs AzureQueueSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsSQLDWSink

func (aqs AzureQueueSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsSQLSink

func (aqs AzureQueueSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsSalesforceSink

func (aqs AzureQueueSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) AsSapCloudForCustomerSink

func (aqs AzureQueueSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for AzureQueueSink.

func (AzureQueueSink) MarshalJSON

func (aqs AzureQueueSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureQueueSink.

type AzureSQLDWLinkedService

type AzureSQLDWLinkedService struct {
	// AzureSQLDWLinkedServiceTypeProperties - Azure SQL Data Warehouse linked service properties.
	*AzureSQLDWLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AzureSQLDWLinkedService azure SQL Data Warehouse linked service.

func (AzureSQLDWLinkedService) AsAmazonMWSLinkedService

func (asdls AzureSQLDWLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAmazonRedshiftLinkedService

func (asdls AzureSQLDWLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAmazonS3LinkedService

func (asdls AzureSQLDWLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAzureBatchLinkedService

func (asdls AzureSQLDWLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (asdls AzureSQLDWLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAzureDataLakeStoreLinkedService

func (asdls AzureSQLDWLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAzureDatabricksLinkedService

func (asdls AzureSQLDWLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAzureKeyVaultLinkedService

func (asdls AzureSQLDWLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAzureMLLinkedService

func (asdls AzureSQLDWLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAzureMySQLLinkedService

func (asdls AzureSQLDWLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAzurePostgreSQLLinkedService

func (asdls AzureSQLDWLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAzureSQLDWLinkedService

func (asdls AzureSQLDWLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAzureSQLDatabaseLinkedService

func (asdls AzureSQLDWLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAzureSearchLinkedService

func (asdls AzureSQLDWLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsAzureStorageLinkedService

func (asdls AzureSQLDWLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsBasicLinkedService

func (asdls AzureSQLDWLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsCassandraLinkedService

func (asdls AzureSQLDWLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsConcurLinkedService

func (asdls AzureSQLDWLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsCosmosDbLinkedService

func (asdls AzureSQLDWLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsCouchbaseLinkedService

func (asdls AzureSQLDWLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsCustomDataSourceLinkedService

func (asdls AzureSQLDWLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsDb2LinkedService

func (asdls AzureSQLDWLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsDrillLinkedService

func (asdls AzureSQLDWLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsDynamicsLinkedService

func (asdls AzureSQLDWLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsEloquaLinkedService

func (asdls AzureSQLDWLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsFileServerLinkedService

func (asdls AzureSQLDWLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsFtpServerLinkedService

func (asdls AzureSQLDWLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsGoogleBigQueryLinkedService

func (asdls AzureSQLDWLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsGreenplumLinkedService

func (asdls AzureSQLDWLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsHBaseLinkedService

func (asdls AzureSQLDWLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsHDInsightLinkedService

func (asdls AzureSQLDWLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsHDInsightOnDemandLinkedService

func (asdls AzureSQLDWLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsHTTPLinkedService

func (asdls AzureSQLDWLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsHdfsLinkedService

func (asdls AzureSQLDWLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsHiveLinkedService

func (asdls AzureSQLDWLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsHubspotLinkedService

func (asdls AzureSQLDWLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsImpalaLinkedService

func (asdls AzureSQLDWLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsJiraLinkedService

func (asdls AzureSQLDWLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsLinkedService

func (asdls AzureSQLDWLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsMagentoLinkedService

func (asdls AzureSQLDWLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsMariaDBLinkedService

func (asdls AzureSQLDWLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsMarketoLinkedService

func (asdls AzureSQLDWLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsMongoDbLinkedService

func (asdls AzureSQLDWLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsMySQLLinkedService

func (asdls AzureSQLDWLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsNetezzaLinkedService

func (asdls AzureSQLDWLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsODataLinkedService

func (asdls AzureSQLDWLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsOdbcLinkedService

func (asdls AzureSQLDWLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsOracleLinkedService

func (asdls AzureSQLDWLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsPaypalLinkedService

func (asdls AzureSQLDWLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsPhoenixLinkedService

func (asdls AzureSQLDWLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsPostgreSQLLinkedService

func (asdls AzureSQLDWLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsPrestoLinkedService

func (asdls AzureSQLDWLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsQuickBooksLinkedService

func (asdls AzureSQLDWLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsResponsysLinkedService

func (asdls AzureSQLDWLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsSQLServerLinkedService

func (asdls AzureSQLDWLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsSalesforceLinkedService

func (asdls AzureSQLDWLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsSalesforceMarketingCloudLinkedService

func (asdls AzureSQLDWLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsSapBWLinkedService

func (asdls AzureSQLDWLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsSapCloudForCustomerLinkedService

func (asdls AzureSQLDWLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsSapEccLinkedService

func (asdls AzureSQLDWLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsSapHanaLinkedService

func (asdls AzureSQLDWLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsServiceNowLinkedService

func (asdls AzureSQLDWLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsSftpServerLinkedService

func (asdls AzureSQLDWLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsShopifyLinkedService

func (asdls AzureSQLDWLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsSparkLinkedService

func (asdls AzureSQLDWLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsSquareLinkedService

func (asdls AzureSQLDWLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsSybaseLinkedService

func (asdls AzureSQLDWLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsTeradataLinkedService

func (asdls AzureSQLDWLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsVerticaLinkedService

func (asdls AzureSQLDWLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsWebLinkedService

func (asdls AzureSQLDWLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsXeroLinkedService

func (asdls AzureSQLDWLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) AsZohoLinkedService

func (asdls AzureSQLDWLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AzureSQLDWLinkedService.

func (AzureSQLDWLinkedService) MarshalJSON

func (asdls AzureSQLDWLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureSQLDWLinkedService.

func (*AzureSQLDWLinkedService) UnmarshalJSON

func (asdls *AzureSQLDWLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureSQLDWLinkedService struct.

type AzureSQLDWLinkedServiceTypeProperties

type AzureSQLDWLinkedServiceTypeProperties struct {
	// ConnectionString - The connection string.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// ServicePrincipalID - The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
	ServicePrincipalID interface{} `json:"servicePrincipalId,omitempty"`
	// ServicePrincipalKey - The key of the service principal used to authenticate against Azure SQL Data Warehouse.
	ServicePrincipalKey BasicSecretBase `json:"servicePrincipalKey,omitempty"`
	// Tenant - The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
	Tenant interface{} `json:"tenant,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AzureSQLDWLinkedServiceTypeProperties azure SQL Data Warehouse linked service properties.

func (*AzureSQLDWLinkedServiceTypeProperties) UnmarshalJSON

func (asdlstp *AzureSQLDWLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureSQLDWLinkedServiceTypeProperties struct.

type AzureSQLDWTableDataset

type AzureSQLDWTableDataset struct {
	// AzureSQLDWTableDatasetTypeProperties - Azure SQL Data Warehouse dataset properties.
	*AzureSQLDWTableDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

AzureSQLDWTableDataset the Azure SQL Data Warehouse dataset.

func (AzureSQLDWTableDataset) AsAmazonMWSObjectDataset

func (asdtd AzureSQLDWTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsAmazonS3Dataset

func (asdtd AzureSQLDWTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsAzureBlobDataset

func (asdtd AzureSQLDWTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsAzureDataLakeStoreDataset

func (asdtd AzureSQLDWTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsAzureMySQLTableDataset

func (asdtd AzureSQLDWTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsAzurePostgreSQLTableDataset

func (asdtd AzureSQLDWTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsAzureSQLDWTableDataset

func (asdtd AzureSQLDWTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsAzureSQLTableDataset

func (asdtd AzureSQLDWTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsAzureSearchIndexDataset

func (asdtd AzureSQLDWTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsAzureTableDataset

func (asdtd AzureSQLDWTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsBasicDataset

func (asdtd AzureSQLDWTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsCassandraTableDataset

func (asdtd AzureSQLDWTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsConcurObjectDataset

func (asdtd AzureSQLDWTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsCouchbaseTableDataset

func (asdtd AzureSQLDWTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsCustomDataset

func (asdtd AzureSQLDWTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsDataset

func (asdtd AzureSQLDWTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsDocumentDbCollectionDataset

func (asdtd AzureSQLDWTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsDrillTableDataset

func (asdtd AzureSQLDWTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsDynamicsEntityDataset

func (asdtd AzureSQLDWTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsEloquaObjectDataset

func (asdtd AzureSQLDWTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsFileShareDataset

func (asdtd AzureSQLDWTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsGoogleBigQueryObjectDataset

func (asdtd AzureSQLDWTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsGreenplumTableDataset

func (asdtd AzureSQLDWTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsHBaseObjectDataset

func (asdtd AzureSQLDWTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsHTTPDataset

func (asdtd AzureSQLDWTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsHiveObjectDataset

func (asdtd AzureSQLDWTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsHubspotObjectDataset

func (asdtd AzureSQLDWTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsImpalaObjectDataset

func (asdtd AzureSQLDWTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsJiraObjectDataset

func (asdtd AzureSQLDWTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsMagentoObjectDataset

func (asdtd AzureSQLDWTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsMariaDBTableDataset

func (asdtd AzureSQLDWTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsMarketoObjectDataset

func (asdtd AzureSQLDWTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsMongoDbCollectionDataset

func (asdtd AzureSQLDWTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsNetezzaTableDataset

func (asdtd AzureSQLDWTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsODataResourceDataset

func (asdtd AzureSQLDWTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsOracleTableDataset

func (asdtd AzureSQLDWTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsPaypalObjectDataset

func (asdtd AzureSQLDWTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsPhoenixObjectDataset

func (asdtd AzureSQLDWTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsPrestoObjectDataset

func (asdtd AzureSQLDWTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsQuickBooksObjectDataset

func (asdtd AzureSQLDWTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsRelationalTableDataset

func (asdtd AzureSQLDWTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsResponsysObjectDataset

func (asdtd AzureSQLDWTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsSQLServerTableDataset

func (asdtd AzureSQLDWTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsSalesforceMarketingCloudObjectDataset

func (asdtd AzureSQLDWTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsSalesforceObjectDataset

func (asdtd AzureSQLDWTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsSapCloudForCustomerResourceDataset

func (asdtd AzureSQLDWTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsSapEccResourceDataset

func (asdtd AzureSQLDWTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsServiceNowObjectDataset

func (asdtd AzureSQLDWTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsShopifyObjectDataset

func (asdtd AzureSQLDWTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsSparkObjectDataset

func (asdtd AzureSQLDWTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsSquareObjectDataset

func (asdtd AzureSQLDWTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsVerticaTableDataset

func (asdtd AzureSQLDWTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsWebTableDataset

func (asdtd AzureSQLDWTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsXeroObjectDataset

func (asdtd AzureSQLDWTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) AsZohoObjectDataset

func (asdtd AzureSQLDWTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for AzureSQLDWTableDataset.

func (AzureSQLDWTableDataset) MarshalJSON

func (asdtd AzureSQLDWTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureSQLDWTableDataset.

func (*AzureSQLDWTableDataset) UnmarshalJSON

func (asdtd *AzureSQLDWTableDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureSQLDWTableDataset struct.

type AzureSQLDWTableDatasetTypeProperties

type AzureSQLDWTableDatasetTypeProperties struct {
	// TableName - The table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
	TableName interface{} `json:"tableName,omitempty"`
}

AzureSQLDWTableDatasetTypeProperties azure SQL Data Warehouse dataset properties.

type AzureSQLDatabaseLinkedService

type AzureSQLDatabaseLinkedService struct {
	// AzureSQLDatabaseLinkedServiceTypeProperties - Azure SQL Database linked service properties.
	*AzureSQLDatabaseLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AzureSQLDatabaseLinkedService microsoft Azure SQL Database linked service.

func (AzureSQLDatabaseLinkedService) AsAmazonMWSLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAmazonRedshiftLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAmazonS3LinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAzureBatchLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAzureDataLakeStoreLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAzureDatabricksLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAzureKeyVaultLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAzureMLLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAzureMySQLLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAzurePostgreSQLLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAzureSQLDWLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAzureSQLDatabaseLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAzureSearchLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsAzureStorageLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsBasicLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsCassandraLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsConcurLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsCosmosDbLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsCouchbaseLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsCustomDataSourceLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsDb2LinkedService

func (asdls AzureSQLDatabaseLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsDrillLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsDynamicsLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsEloquaLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsFileServerLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsFtpServerLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsGoogleBigQueryLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsGreenplumLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsHBaseLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsHDInsightLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsHDInsightOnDemandLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsHTTPLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsHdfsLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsHiveLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsHubspotLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsImpalaLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsJiraLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsMagentoLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsMariaDBLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsMarketoLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsMongoDbLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsMySQLLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsNetezzaLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsODataLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsOdbcLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsOracleLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsPaypalLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsPhoenixLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsPostgreSQLLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsPrestoLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsQuickBooksLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsResponsysLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsSQLServerLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsSalesforceLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsSalesforceMarketingCloudLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsSapBWLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsSapCloudForCustomerLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsSapEccLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsSapHanaLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsServiceNowLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsSftpServerLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsShopifyLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsSparkLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsSquareLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsSybaseLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsTeradataLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsVerticaLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsWebLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsXeroLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) AsZohoLinkedService

func (asdls AzureSQLDatabaseLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AzureSQLDatabaseLinkedService.

func (AzureSQLDatabaseLinkedService) MarshalJSON

func (asdls AzureSQLDatabaseLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureSQLDatabaseLinkedService.

func (*AzureSQLDatabaseLinkedService) UnmarshalJSON

func (asdls *AzureSQLDatabaseLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureSQLDatabaseLinkedService struct.

type AzureSQLDatabaseLinkedServiceTypeProperties

type AzureSQLDatabaseLinkedServiceTypeProperties struct {
	// ConnectionString - The connection string.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// ServicePrincipalID - The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string).
	ServicePrincipalID interface{} `json:"servicePrincipalId,omitempty"`
	// ServicePrincipalKey - The key of the service principal used to authenticate against Azure SQL Database.
	ServicePrincipalKey BasicSecretBase `json:"servicePrincipalKey,omitempty"`
	// Tenant - The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string).
	Tenant interface{} `json:"tenant,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AzureSQLDatabaseLinkedServiceTypeProperties azure SQL Database linked service properties.

func (*AzureSQLDatabaseLinkedServiceTypeProperties) UnmarshalJSON

func (asdlstp *AzureSQLDatabaseLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureSQLDatabaseLinkedServiceTypeProperties struct.

type AzureSQLTableDataset

type AzureSQLTableDataset struct {
	// AzureSQLTableDatasetTypeProperties - Azure SQL dataset properties.
	*AzureSQLTableDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

AzureSQLTableDataset the Azure SQL Server database dataset.

func (AzureSQLTableDataset) AsAmazonMWSObjectDataset

func (astd AzureSQLTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsAmazonS3Dataset

func (astd AzureSQLTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsAzureBlobDataset

func (astd AzureSQLTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsAzureDataLakeStoreDataset

func (astd AzureSQLTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsAzureMySQLTableDataset

func (astd AzureSQLTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsAzurePostgreSQLTableDataset

func (astd AzureSQLTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsAzureSQLDWTableDataset

func (astd AzureSQLTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsAzureSQLTableDataset

func (astd AzureSQLTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsAzureSearchIndexDataset

func (astd AzureSQLTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsAzureTableDataset

func (astd AzureSQLTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsBasicDataset

func (astd AzureSQLTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsCassandraTableDataset

func (astd AzureSQLTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsConcurObjectDataset

func (astd AzureSQLTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsCouchbaseTableDataset

func (astd AzureSQLTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsCustomDataset

func (astd AzureSQLTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsDataset

func (astd AzureSQLTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsDocumentDbCollectionDataset

func (astd AzureSQLTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsDrillTableDataset

func (astd AzureSQLTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsDynamicsEntityDataset

func (astd AzureSQLTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsEloquaObjectDataset

func (astd AzureSQLTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsFileShareDataset

func (astd AzureSQLTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsGoogleBigQueryObjectDataset

func (astd AzureSQLTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsGreenplumTableDataset

func (astd AzureSQLTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsHBaseObjectDataset

func (astd AzureSQLTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsHTTPDataset

func (astd AzureSQLTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsHiveObjectDataset

func (astd AzureSQLTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsHubspotObjectDataset

func (astd AzureSQLTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsImpalaObjectDataset

func (astd AzureSQLTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsJiraObjectDataset

func (astd AzureSQLTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsMagentoObjectDataset

func (astd AzureSQLTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsMariaDBTableDataset

func (astd AzureSQLTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsMarketoObjectDataset

func (astd AzureSQLTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsMongoDbCollectionDataset

func (astd AzureSQLTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsNetezzaTableDataset

func (astd AzureSQLTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsODataResourceDataset

func (astd AzureSQLTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsOracleTableDataset

func (astd AzureSQLTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsPaypalObjectDataset

func (astd AzureSQLTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsPhoenixObjectDataset

func (astd AzureSQLTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsPrestoObjectDataset

func (astd AzureSQLTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsQuickBooksObjectDataset

func (astd AzureSQLTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsRelationalTableDataset

func (astd AzureSQLTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsResponsysObjectDataset

func (astd AzureSQLTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsSQLServerTableDataset

func (astd AzureSQLTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsSalesforceMarketingCloudObjectDataset

func (astd AzureSQLTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsSalesforceObjectDataset

func (astd AzureSQLTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsSapCloudForCustomerResourceDataset

func (astd AzureSQLTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsSapEccResourceDataset

func (astd AzureSQLTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsServiceNowObjectDataset

func (astd AzureSQLTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsShopifyObjectDataset

func (astd AzureSQLTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsSparkObjectDataset

func (astd AzureSQLTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsSquareObjectDataset

func (astd AzureSQLTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsVerticaTableDataset

func (astd AzureSQLTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsWebTableDataset

func (astd AzureSQLTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsXeroObjectDataset

func (astd AzureSQLTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) AsZohoObjectDataset

func (astd AzureSQLTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for AzureSQLTableDataset.

func (AzureSQLTableDataset) MarshalJSON

func (astd AzureSQLTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureSQLTableDataset.

func (*AzureSQLTableDataset) UnmarshalJSON

func (astd *AzureSQLTableDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureSQLTableDataset struct.

type AzureSQLTableDatasetTypeProperties

type AzureSQLTableDatasetTypeProperties struct {
	// TableName - The table name of the Azure SQL database. Type: string (or Expression with resultType string).
	TableName interface{} `json:"tableName,omitempty"`
}

AzureSQLTableDatasetTypeProperties azure SQL dataset properties.

type AzureSearchIndexDataset

type AzureSearchIndexDataset struct {
	// AzureSearchIndexDatasetTypeProperties - Properties specific to this dataset type.
	*AzureSearchIndexDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

AzureSearchIndexDataset the Azure Search Index.

func (AzureSearchIndexDataset) AsAmazonMWSObjectDataset

func (asid AzureSearchIndexDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsAmazonS3Dataset

func (asid AzureSearchIndexDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsAzureBlobDataset

func (asid AzureSearchIndexDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsAzureDataLakeStoreDataset

func (asid AzureSearchIndexDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsAzureMySQLTableDataset

func (asid AzureSearchIndexDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsAzurePostgreSQLTableDataset

func (asid AzureSearchIndexDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsAzureSQLDWTableDataset

func (asid AzureSearchIndexDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsAzureSQLTableDataset

func (asid AzureSearchIndexDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsAzureSearchIndexDataset

func (asid AzureSearchIndexDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsAzureTableDataset

func (asid AzureSearchIndexDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsBasicDataset

func (asid AzureSearchIndexDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsCassandraTableDataset

func (asid AzureSearchIndexDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsConcurObjectDataset

func (asid AzureSearchIndexDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsCouchbaseTableDataset

func (asid AzureSearchIndexDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsCustomDataset

func (asid AzureSearchIndexDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsDataset

func (asid AzureSearchIndexDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsDocumentDbCollectionDataset

func (asid AzureSearchIndexDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsDrillTableDataset

func (asid AzureSearchIndexDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsDynamicsEntityDataset

func (asid AzureSearchIndexDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsEloquaObjectDataset

func (asid AzureSearchIndexDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsFileShareDataset

func (asid AzureSearchIndexDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsGoogleBigQueryObjectDataset

func (asid AzureSearchIndexDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsGreenplumTableDataset

func (asid AzureSearchIndexDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsHBaseObjectDataset

func (asid AzureSearchIndexDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsHTTPDataset

func (asid AzureSearchIndexDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsHiveObjectDataset

func (asid AzureSearchIndexDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsHubspotObjectDataset

func (asid AzureSearchIndexDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsImpalaObjectDataset

func (asid AzureSearchIndexDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsJiraObjectDataset

func (asid AzureSearchIndexDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsMagentoObjectDataset

func (asid AzureSearchIndexDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsMariaDBTableDataset

func (asid AzureSearchIndexDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsMarketoObjectDataset

func (asid AzureSearchIndexDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsMongoDbCollectionDataset

func (asid AzureSearchIndexDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsNetezzaTableDataset

func (asid AzureSearchIndexDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsODataResourceDataset

func (asid AzureSearchIndexDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsOracleTableDataset

func (asid AzureSearchIndexDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsPaypalObjectDataset

func (asid AzureSearchIndexDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsPhoenixObjectDataset

func (asid AzureSearchIndexDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsPrestoObjectDataset

func (asid AzureSearchIndexDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsQuickBooksObjectDataset

func (asid AzureSearchIndexDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsRelationalTableDataset

func (asid AzureSearchIndexDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsResponsysObjectDataset

func (asid AzureSearchIndexDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsSQLServerTableDataset

func (asid AzureSearchIndexDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsSalesforceMarketingCloudObjectDataset

func (asid AzureSearchIndexDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsSalesforceObjectDataset

func (asid AzureSearchIndexDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsSapCloudForCustomerResourceDataset

func (asid AzureSearchIndexDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsSapEccResourceDataset

func (asid AzureSearchIndexDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsServiceNowObjectDataset

func (asid AzureSearchIndexDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsShopifyObjectDataset

func (asid AzureSearchIndexDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsSparkObjectDataset

func (asid AzureSearchIndexDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsSquareObjectDataset

func (asid AzureSearchIndexDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsVerticaTableDataset

func (asid AzureSearchIndexDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsWebTableDataset

func (asid AzureSearchIndexDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsXeroObjectDataset

func (asid AzureSearchIndexDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) AsZohoObjectDataset

func (asid AzureSearchIndexDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for AzureSearchIndexDataset.

func (AzureSearchIndexDataset) MarshalJSON

func (asid AzureSearchIndexDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureSearchIndexDataset.

func (*AzureSearchIndexDataset) UnmarshalJSON

func (asid *AzureSearchIndexDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureSearchIndexDataset struct.

type AzureSearchIndexDatasetTypeProperties

type AzureSearchIndexDatasetTypeProperties struct {
	// IndexName - The name of the Azure Search Index. Type: string (or Expression with resultType string).
	IndexName interface{} `json:"indexName,omitempty"`
}

AzureSearchIndexDatasetTypeProperties properties specific to this dataset type.

type AzureSearchIndexSink

type AzureSearchIndexSink struct {
	// WriteBehavior - Specify the write behavior when upserting documents into Azure Search Index. Possible values include: 'Merge', 'Upload'
	WriteBehavior AzureSearchIndexWriteBehaviorType `json:"writeBehavior,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

AzureSearchIndexSink a copy activity Azure Search Index sink.

func (AzureSearchIndexSink) AsAzureDataLakeStoreSink

func (asis AzureSearchIndexSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsAzureQueueSink

func (asis AzureSearchIndexSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsAzureSearchIndexSink

func (asis AzureSearchIndexSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsAzureTableSink

func (asis AzureSearchIndexSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsBasicCopySink

func (asis AzureSearchIndexSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsBlobSink

func (asis AzureSearchIndexSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsCopySink

func (asis AzureSearchIndexSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsDocumentDbCollectionSink

func (asis AzureSearchIndexSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsDynamicsSink

func (asis AzureSearchIndexSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsFileSystemSink

func (asis AzureSearchIndexSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsOdbcSink

func (asis AzureSearchIndexSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsOracleSink

func (asis AzureSearchIndexSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsSQLDWSink

func (asis AzureSearchIndexSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsSQLSink

func (asis AzureSearchIndexSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsSalesforceSink

func (asis AzureSearchIndexSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) AsSapCloudForCustomerSink

func (asis AzureSearchIndexSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for AzureSearchIndexSink.

func (AzureSearchIndexSink) MarshalJSON

func (asis AzureSearchIndexSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureSearchIndexSink.

type AzureSearchIndexWriteBehaviorType

type AzureSearchIndexWriteBehaviorType string

AzureSearchIndexWriteBehaviorType enumerates the values for azure search index write behavior type.

const (
	// Merge ...
	Merge AzureSearchIndexWriteBehaviorType = "Merge"
	// Upload ...
	Upload AzureSearchIndexWriteBehaviorType = "Upload"
)

func PossibleAzureSearchIndexWriteBehaviorTypeValues

func PossibleAzureSearchIndexWriteBehaviorTypeValues() []AzureSearchIndexWriteBehaviorType

PossibleAzureSearchIndexWriteBehaviorTypeValues returns an array of possible values for the AzureSearchIndexWriteBehaviorType const type.

type AzureSearchLinkedService

type AzureSearchLinkedService struct {
	// AzureSearchLinkedServiceTypeProperties - Windows Azure Search Service linked service properties.
	*AzureSearchLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AzureSearchLinkedService linked service for Windows Azure Search Service.

func (AzureSearchLinkedService) AsAmazonMWSLinkedService

func (asls AzureSearchLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAmazonRedshiftLinkedService

func (asls AzureSearchLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAmazonS3LinkedService

func (asls AzureSearchLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAzureBatchLinkedService

func (asls AzureSearchLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (asls AzureSearchLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAzureDataLakeStoreLinkedService

func (asls AzureSearchLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAzureDatabricksLinkedService

func (asls AzureSearchLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAzureKeyVaultLinkedService

func (asls AzureSearchLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAzureMLLinkedService

func (asls AzureSearchLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAzureMySQLLinkedService

func (asls AzureSearchLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAzurePostgreSQLLinkedService

func (asls AzureSearchLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAzureSQLDWLinkedService

func (asls AzureSearchLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAzureSQLDatabaseLinkedService

func (asls AzureSearchLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAzureSearchLinkedService

func (asls AzureSearchLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsAzureStorageLinkedService

func (asls AzureSearchLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsBasicLinkedService

func (asls AzureSearchLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsCassandraLinkedService

func (asls AzureSearchLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsConcurLinkedService

func (asls AzureSearchLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsCosmosDbLinkedService

func (asls AzureSearchLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsCouchbaseLinkedService

func (asls AzureSearchLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsCustomDataSourceLinkedService

func (asls AzureSearchLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsDb2LinkedService

func (asls AzureSearchLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsDrillLinkedService

func (asls AzureSearchLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsDynamicsLinkedService

func (asls AzureSearchLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsEloquaLinkedService

func (asls AzureSearchLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsFileServerLinkedService

func (asls AzureSearchLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsFtpServerLinkedService

func (asls AzureSearchLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsGoogleBigQueryLinkedService

func (asls AzureSearchLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsGreenplumLinkedService

func (asls AzureSearchLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsHBaseLinkedService

func (asls AzureSearchLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsHDInsightLinkedService

func (asls AzureSearchLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsHDInsightOnDemandLinkedService

func (asls AzureSearchLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsHTTPLinkedService

func (asls AzureSearchLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsHdfsLinkedService

func (asls AzureSearchLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsHiveLinkedService

func (asls AzureSearchLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsHubspotLinkedService

func (asls AzureSearchLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsImpalaLinkedService

func (asls AzureSearchLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsJiraLinkedService

func (asls AzureSearchLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsLinkedService

func (asls AzureSearchLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsMagentoLinkedService

func (asls AzureSearchLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsMariaDBLinkedService

func (asls AzureSearchLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsMarketoLinkedService

func (asls AzureSearchLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsMongoDbLinkedService

func (asls AzureSearchLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsMySQLLinkedService

func (asls AzureSearchLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsNetezzaLinkedService

func (asls AzureSearchLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsODataLinkedService

func (asls AzureSearchLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsOdbcLinkedService

func (asls AzureSearchLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsOracleLinkedService

func (asls AzureSearchLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsPaypalLinkedService

func (asls AzureSearchLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsPhoenixLinkedService

func (asls AzureSearchLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsPostgreSQLLinkedService

func (asls AzureSearchLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsPrestoLinkedService

func (asls AzureSearchLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsQuickBooksLinkedService

func (asls AzureSearchLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsResponsysLinkedService

func (asls AzureSearchLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsSQLServerLinkedService

func (asls AzureSearchLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsSalesforceLinkedService

func (asls AzureSearchLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsSalesforceMarketingCloudLinkedService

func (asls AzureSearchLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsSapBWLinkedService

func (asls AzureSearchLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsSapCloudForCustomerLinkedService

func (asls AzureSearchLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsSapEccLinkedService

func (asls AzureSearchLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsSapHanaLinkedService

func (asls AzureSearchLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsServiceNowLinkedService

func (asls AzureSearchLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsSftpServerLinkedService

func (asls AzureSearchLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsShopifyLinkedService

func (asls AzureSearchLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsSparkLinkedService

func (asls AzureSearchLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsSquareLinkedService

func (asls AzureSearchLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsSybaseLinkedService

func (asls AzureSearchLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsTeradataLinkedService

func (asls AzureSearchLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsVerticaLinkedService

func (asls AzureSearchLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsWebLinkedService

func (asls AzureSearchLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsXeroLinkedService

func (asls AzureSearchLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) AsZohoLinkedService

func (asls AzureSearchLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AzureSearchLinkedService.

func (AzureSearchLinkedService) MarshalJSON

func (asls AzureSearchLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureSearchLinkedService.

func (*AzureSearchLinkedService) UnmarshalJSON

func (asls *AzureSearchLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureSearchLinkedService struct.

type AzureSearchLinkedServiceTypeProperties

type AzureSearchLinkedServiceTypeProperties struct {
	// URL - URL for Azure Search service. Type: string (or Expression with resultType string).
	URL interface{} `json:"url,omitempty"`
	// Key - Admin Key for Azure Search service
	Key BasicSecretBase `json:"key,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AzureSearchLinkedServiceTypeProperties windows Azure Search Service linked service properties.

func (*AzureSearchLinkedServiceTypeProperties) UnmarshalJSON

func (aslstp *AzureSearchLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureSearchLinkedServiceTypeProperties struct.

type AzureStorageLinkedService

type AzureStorageLinkedService struct {
	// AzureStorageLinkedServiceTypeProperties - Azure Storage linked service properties.
	*AzureStorageLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

AzureStorageLinkedService the storage account linked service.

func (AzureStorageLinkedService) AsAmazonMWSLinkedService

func (asls AzureStorageLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAmazonRedshiftLinkedService

func (asls AzureStorageLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAmazonS3LinkedService

func (asls AzureStorageLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAzureBatchLinkedService

func (asls AzureStorageLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (asls AzureStorageLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAzureDataLakeStoreLinkedService

func (asls AzureStorageLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAzureDatabricksLinkedService

func (asls AzureStorageLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAzureKeyVaultLinkedService

func (asls AzureStorageLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAzureMLLinkedService

func (asls AzureStorageLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAzureMySQLLinkedService

func (asls AzureStorageLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAzurePostgreSQLLinkedService

func (asls AzureStorageLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAzureSQLDWLinkedService

func (asls AzureStorageLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAzureSQLDatabaseLinkedService

func (asls AzureStorageLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAzureSearchLinkedService

func (asls AzureStorageLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsAzureStorageLinkedService

func (asls AzureStorageLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsBasicLinkedService

func (asls AzureStorageLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsCassandraLinkedService

func (asls AzureStorageLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsConcurLinkedService

func (asls AzureStorageLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsCosmosDbLinkedService

func (asls AzureStorageLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsCouchbaseLinkedService

func (asls AzureStorageLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsCustomDataSourceLinkedService

func (asls AzureStorageLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsDb2LinkedService

func (asls AzureStorageLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsDrillLinkedService

func (asls AzureStorageLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsDynamicsLinkedService

func (asls AzureStorageLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsEloquaLinkedService

func (asls AzureStorageLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsFileServerLinkedService

func (asls AzureStorageLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsFtpServerLinkedService

func (asls AzureStorageLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsGoogleBigQueryLinkedService

func (asls AzureStorageLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsGreenplumLinkedService

func (asls AzureStorageLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsHBaseLinkedService

func (asls AzureStorageLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsHDInsightLinkedService

func (asls AzureStorageLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsHDInsightOnDemandLinkedService

func (asls AzureStorageLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsHTTPLinkedService

func (asls AzureStorageLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsHdfsLinkedService

func (asls AzureStorageLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsHiveLinkedService

func (asls AzureStorageLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsHubspotLinkedService

func (asls AzureStorageLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsImpalaLinkedService

func (asls AzureStorageLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsJiraLinkedService

func (asls AzureStorageLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsLinkedService

func (asls AzureStorageLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsMagentoLinkedService

func (asls AzureStorageLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsMariaDBLinkedService

func (asls AzureStorageLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsMarketoLinkedService

func (asls AzureStorageLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsMongoDbLinkedService

func (asls AzureStorageLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsMySQLLinkedService

func (asls AzureStorageLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsNetezzaLinkedService

func (asls AzureStorageLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsODataLinkedService

func (asls AzureStorageLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsOdbcLinkedService

func (asls AzureStorageLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsOracleLinkedService

func (asls AzureStorageLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsPaypalLinkedService

func (asls AzureStorageLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsPhoenixLinkedService

func (asls AzureStorageLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsPostgreSQLLinkedService

func (asls AzureStorageLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsPrestoLinkedService

func (asls AzureStorageLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsQuickBooksLinkedService

func (asls AzureStorageLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsResponsysLinkedService

func (asls AzureStorageLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsSQLServerLinkedService

func (asls AzureStorageLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsSalesforceLinkedService

func (asls AzureStorageLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsSalesforceMarketingCloudLinkedService

func (asls AzureStorageLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsSapBWLinkedService

func (asls AzureStorageLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsSapCloudForCustomerLinkedService

func (asls AzureStorageLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsSapEccLinkedService

func (asls AzureStorageLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsSapHanaLinkedService

func (asls AzureStorageLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsServiceNowLinkedService

func (asls AzureStorageLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsSftpServerLinkedService

func (asls AzureStorageLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsShopifyLinkedService

func (asls AzureStorageLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsSparkLinkedService

func (asls AzureStorageLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsSquareLinkedService

func (asls AzureStorageLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsSybaseLinkedService

func (asls AzureStorageLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsTeradataLinkedService

func (asls AzureStorageLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsVerticaLinkedService

func (asls AzureStorageLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsWebLinkedService

func (asls AzureStorageLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsXeroLinkedService

func (asls AzureStorageLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) AsZohoLinkedService

func (asls AzureStorageLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for AzureStorageLinkedService.

func (AzureStorageLinkedService) MarshalJSON

func (asls AzureStorageLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureStorageLinkedService.

func (*AzureStorageLinkedService) UnmarshalJSON

func (asls *AzureStorageLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureStorageLinkedService struct.

type AzureStorageLinkedServiceTypeProperties

type AzureStorageLinkedServiceTypeProperties struct {
	// ConnectionString - The connection string. It is mutually exclusive with sasUri property.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// SasURI - SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property.
	SasURI BasicSecretBase `json:"sasUri,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

AzureStorageLinkedServiceTypeProperties azure Storage linked service properties.

func (*AzureStorageLinkedServiceTypeProperties) UnmarshalJSON

func (aslstp *AzureStorageLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureStorageLinkedServiceTypeProperties struct.

type AzureTableDataset

type AzureTableDataset struct {
	// AzureTableDatasetTypeProperties - Azure Table dataset properties.
	*AzureTableDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

AzureTableDataset the Azure Table storage dataset.

func (AzureTableDataset) AsAmazonMWSObjectDataset

func (atd AzureTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsAmazonS3Dataset

func (atd AzureTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsAzureBlobDataset

func (atd AzureTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsAzureDataLakeStoreDataset

func (atd AzureTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsAzureMySQLTableDataset

func (atd AzureTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsAzurePostgreSQLTableDataset

func (atd AzureTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsAzureSQLDWTableDataset

func (atd AzureTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsAzureSQLTableDataset

func (atd AzureTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsAzureSearchIndexDataset

func (atd AzureTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsAzureTableDataset

func (atd AzureTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsBasicDataset

func (atd AzureTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsCassandraTableDataset

func (atd AzureTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsConcurObjectDataset

func (atd AzureTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsCouchbaseTableDataset

func (atd AzureTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsCustomDataset

func (atd AzureTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsDataset

func (atd AzureTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsDocumentDbCollectionDataset

func (atd AzureTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsDrillTableDataset

func (atd AzureTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsDynamicsEntityDataset

func (atd AzureTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsEloquaObjectDataset

func (atd AzureTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsFileShareDataset

func (atd AzureTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsGoogleBigQueryObjectDataset

func (atd AzureTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsGreenplumTableDataset

func (atd AzureTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsHBaseObjectDataset

func (atd AzureTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsHTTPDataset

func (atd AzureTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsHiveObjectDataset

func (atd AzureTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsHubspotObjectDataset

func (atd AzureTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsImpalaObjectDataset

func (atd AzureTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsJiraObjectDataset

func (atd AzureTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsMagentoObjectDataset

func (atd AzureTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsMariaDBTableDataset

func (atd AzureTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsMarketoObjectDataset

func (atd AzureTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsMongoDbCollectionDataset

func (atd AzureTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsNetezzaTableDataset

func (atd AzureTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsODataResourceDataset

func (atd AzureTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsOracleTableDataset

func (atd AzureTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsPaypalObjectDataset

func (atd AzureTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsPhoenixObjectDataset

func (atd AzureTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsPrestoObjectDataset

func (atd AzureTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsQuickBooksObjectDataset

func (atd AzureTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsRelationalTableDataset

func (atd AzureTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsResponsysObjectDataset

func (atd AzureTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsSQLServerTableDataset

func (atd AzureTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsSalesforceMarketingCloudObjectDataset

func (atd AzureTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsSalesforceObjectDataset

func (atd AzureTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsSapCloudForCustomerResourceDataset

func (atd AzureTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsSapEccResourceDataset

func (atd AzureTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsServiceNowObjectDataset

func (atd AzureTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsShopifyObjectDataset

func (atd AzureTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsSparkObjectDataset

func (atd AzureTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsSquareObjectDataset

func (atd AzureTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsVerticaTableDataset

func (atd AzureTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsWebTableDataset

func (atd AzureTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsXeroObjectDataset

func (atd AzureTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) AsZohoObjectDataset

func (atd AzureTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for AzureTableDataset.

func (AzureTableDataset) MarshalJSON

func (atd AzureTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureTableDataset.

func (*AzureTableDataset) UnmarshalJSON

func (atd *AzureTableDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for AzureTableDataset struct.

type AzureTableDatasetTypeProperties

type AzureTableDatasetTypeProperties struct {
	// TableName - The table name of the Azure Table storage. Type: string (or Expression with resultType string).
	TableName interface{} `json:"tableName,omitempty"`
}

AzureTableDatasetTypeProperties azure Table dataset properties.

type AzureTableSink

type AzureTableSink struct {
	// AzureTableDefaultPartitionKeyValue - Azure Table default partition key value. Type: string (or Expression with resultType string).
	AzureTableDefaultPartitionKeyValue interface{} `json:"azureTableDefaultPartitionKeyValue,omitempty"`
	// AzureTablePartitionKeyName - Azure Table partition key name. Type: string (or Expression with resultType string).
	AzureTablePartitionKeyName interface{} `json:"azureTablePartitionKeyName,omitempty"`
	// AzureTableRowKeyName - Azure Table row key name. Type: string (or Expression with resultType string).
	AzureTableRowKeyName interface{} `json:"azureTableRowKeyName,omitempty"`
	// AzureTableInsertType - Azure Table insert type. Type: string (or Expression with resultType string).
	AzureTableInsertType interface{} `json:"azureTableInsertType,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

AzureTableSink a copy activity Azure Table sink.

func (AzureTableSink) AsAzureDataLakeStoreSink

func (ats AzureTableSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsAzureQueueSink

func (ats AzureTableSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsAzureSearchIndexSink

func (ats AzureTableSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsAzureTableSink

func (ats AzureTableSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsBasicCopySink

func (ats AzureTableSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsBlobSink

func (ats AzureTableSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsCopySink

func (ats AzureTableSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsDocumentDbCollectionSink

func (ats AzureTableSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsDynamicsSink

func (ats AzureTableSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsFileSystemSink

func (ats AzureTableSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsOdbcSink

func (ats AzureTableSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsOracleSink

func (ats AzureTableSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsSQLDWSink

func (ats AzureTableSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsSQLSink

func (ats AzureTableSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsSalesforceSink

func (ats AzureTableSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) AsSapCloudForCustomerSink

func (ats AzureTableSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for AzureTableSink.

func (AzureTableSink) MarshalJSON

func (ats AzureTableSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureTableSink.

type AzureTableSource

type AzureTableSource struct {
	// AzureTableSourceQuery - Azure Table source query. Type: string (or Expression with resultType string).
	AzureTableSourceQuery interface{} `json:"azureTableSourceQuery,omitempty"`
	// AzureTableSourceIgnoreTableNotFound - Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean).
	AzureTableSourceIgnoreTableNotFound interface{} `json:"azureTableSourceIgnoreTableNotFound,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

AzureTableSource a copy activity Azure Table source.

func (AzureTableSource) AsAmazonMWSSource

func (ats AzureTableSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsAmazonRedshiftSource

func (ats AzureTableSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsAzureDataLakeStoreSource

func (ats AzureTableSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsAzureMySQLSource

func (ats AzureTableSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsAzurePostgreSQLSource

func (ats AzureTableSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsAzureTableSource

func (ats AzureTableSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsBasicCopySource

func (ats AzureTableSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsBlobSource

func (ats AzureTableSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsCassandraSource

func (ats AzureTableSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsConcurSource

func (ats AzureTableSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsCopySource

func (ats AzureTableSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsCouchbaseSource

func (ats AzureTableSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsDocumentDbCollectionSource

func (ats AzureTableSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsDrillSource

func (ats AzureTableSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsDynamicsSource

func (ats AzureTableSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsEloquaSource

func (ats AzureTableSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsFileSystemSource

func (ats AzureTableSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsGoogleBigQuerySource

func (ats AzureTableSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsGreenplumSource

func (ats AzureTableSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsHBaseSource

func (ats AzureTableSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsHTTPSource

func (ats AzureTableSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsHdfsSource

func (ats AzureTableSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsHiveSource

func (ats AzureTableSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsHubspotSource

func (ats AzureTableSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsImpalaSource

func (ats AzureTableSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsJiraSource

func (ats AzureTableSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsMagentoSource

func (ats AzureTableSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsMariaDBSource

func (ats AzureTableSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsMarketoSource

func (ats AzureTableSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsMongoDbSource

func (ats AzureTableSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsNetezzaSource

func (ats AzureTableSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsOracleSource

func (ats AzureTableSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsPaypalSource

func (ats AzureTableSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsPhoenixSource

func (ats AzureTableSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsPrestoSource

func (ats AzureTableSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsQuickBooksSource

func (ats AzureTableSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsRelationalSource

func (ats AzureTableSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsResponsysSource

func (ats AzureTableSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsSQLDWSource

func (ats AzureTableSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsSQLSource

func (ats AzureTableSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsSalesforceMarketingCloudSource

func (ats AzureTableSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsSalesforceSource

func (ats AzureTableSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsSapCloudForCustomerSource

func (ats AzureTableSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsSapEccSource

func (ats AzureTableSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsServiceNowSource

func (ats AzureTableSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsShopifySource

func (ats AzureTableSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsSparkSource

func (ats AzureTableSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsSquareSource

func (ats AzureTableSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsVerticaSource

func (ats AzureTableSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsWebSource

func (ats AzureTableSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsXeroSource

func (ats AzureTableSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) AsZohoSource

func (ats AzureTableSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for AzureTableSource.

func (AzureTableSource) MarshalJSON

func (ats AzureTableSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for AzureTableSource.

type BaseClient

type BaseClient struct {
	autorest.Client
	BaseURI        string
	SubscriptionID string
}

BaseClient is the base client for Datafactory.

func New

func New(subscriptionID string) BaseClient

New creates an instance of the BaseClient client.

func NewWithBaseURI

func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient

NewWithBaseURI creates an instance of the BaseClient client.

type BasicActivity

type BasicActivity interface {
	AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)
	AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)
	AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)
	AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)
	AsGetMetadataActivity() (*GetMetadataActivity, bool)
	AsWebActivity() (*WebActivity, bool)
	AsLookupActivity() (*LookupActivity, bool)
	AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)
	AsCustomActivity() (*CustomActivity, bool)
	AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)
	AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)
	AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)
	AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)
	AsHDInsightPigActivity() (*HDInsightPigActivity, bool)
	AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)
	AsCopyActivity() (*CopyActivity, bool)
	AsExecutionActivity() (*ExecutionActivity, bool)
	AsBasicExecutionActivity() (BasicExecutionActivity, bool)
	AsFilterActivity() (*FilterActivity, bool)
	AsUntilActivity() (*UntilActivity, bool)
	AsWaitActivity() (*WaitActivity, bool)
	AsForEachActivity() (*ForEachActivity, bool)
	AsIfConditionActivity() (*IfConditionActivity, bool)
	AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)
	AsControlActivity() (*ControlActivity, bool)
	AsBasicControlActivity() (BasicControlActivity, bool)
	AsActivity() (*Activity, bool)
}

BasicActivity a pipeline activity.

type BasicControlActivity

type BasicControlActivity interface {
	AsFilterActivity() (*FilterActivity, bool)
	AsUntilActivity() (*UntilActivity, bool)
	AsWaitActivity() (*WaitActivity, bool)
	AsForEachActivity() (*ForEachActivity, bool)
	AsIfConditionActivity() (*IfConditionActivity, bool)
	AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)
	AsControlActivity() (*ControlActivity, bool)
}

BasicControlActivity base class for all control activities like IfCondition, ForEach , Until.

type BasicCopySink

type BasicCopySink interface {
	AsSalesforceSink() (*SalesforceSink, bool)
	AsDynamicsSink() (*DynamicsSink, bool)
	AsOdbcSink() (*OdbcSink, bool)
	AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)
	AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)
	AsOracleSink() (*OracleSink, bool)
	AsSQLDWSink() (*SQLDWSink, bool)
	AsSQLSink() (*SQLSink, bool)
	AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)
	AsFileSystemSink() (*FileSystemSink, bool)
	AsBlobSink() (*BlobSink, bool)
	AsAzureTableSink() (*AzureTableSink, bool)
	AsAzureQueueSink() (*AzureQueueSink, bool)
	AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)
	AsCopySink() (*CopySink, bool)
}

BasicCopySink a copy activity sink.

type BasicCopySource

type BasicCopySource interface {
	AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)
	AsResponsysSource() (*ResponsysSource, bool)
	AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)
	AsVerticaSource() (*VerticaSource, bool)
	AsNetezzaSource() (*NetezzaSource, bool)
	AsZohoSource() (*ZohoSource, bool)
	AsXeroSource() (*XeroSource, bool)
	AsSquareSource() (*SquareSource, bool)
	AsSparkSource() (*SparkSource, bool)
	AsShopifySource() (*ShopifySource, bool)
	AsServiceNowSource() (*ServiceNowSource, bool)
	AsQuickBooksSource() (*QuickBooksSource, bool)
	AsPrestoSource() (*PrestoSource, bool)
	AsPhoenixSource() (*PhoenixSource, bool)
	AsPaypalSource() (*PaypalSource, bool)
	AsMarketoSource() (*MarketoSource, bool)
	AsMariaDBSource() (*MariaDBSource, bool)
	AsMagentoSource() (*MagentoSource, bool)
	AsJiraSource() (*JiraSource, bool)
	AsImpalaSource() (*ImpalaSource, bool)
	AsHubspotSource() (*HubspotSource, bool)
	AsHiveSource() (*HiveSource, bool)
	AsHBaseSource() (*HBaseSource, bool)
	AsGreenplumSource() (*GreenplumSource, bool)
	AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)
	AsEloquaSource() (*EloquaSource, bool)
	AsDrillSource() (*DrillSource, bool)
	AsCouchbaseSource() (*CouchbaseSource, bool)
	AsConcurSource() (*ConcurSource, bool)
	AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)
	AsAmazonMWSSource() (*AmazonMWSSource, bool)
	AsHTTPSource() (*HTTPSource, bool)
	AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)
	AsMongoDbSource() (*MongoDbSource, bool)
	AsCassandraSource() (*CassandraSource, bool)
	AsWebSource() (*WebSource, bool)
	AsOracleSource() (*OracleSource, bool)
	AsAzureMySQLSource() (*AzureMySQLSource, bool)
	AsHdfsSource() (*HdfsSource, bool)
	AsFileSystemSource() (*FileSystemSource, bool)
	AsSQLDWSource() (*SQLDWSource, bool)
	AsSQLSource() (*SQLSource, bool)
	AsSapEccSource() (*SapEccSource, bool)
	AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)
	AsSalesforceSource() (*SalesforceSource, bool)
	AsRelationalSource() (*RelationalSource, bool)
	AsDynamicsSource() (*DynamicsSource, bool)
	AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)
	AsBlobSource() (*BlobSource, bool)
	AsAzureTableSource() (*AzureTableSource, bool)
	AsCopySource() (*CopySource, bool)
}

BasicCopySource a copy activity source.

type BasicCopyTranslator

type BasicCopyTranslator interface {
	AsTabularTranslator() (*TabularTranslator, bool)
	AsCopyTranslator() (*CopyTranslator, bool)
}

BasicCopyTranslator a copy activity translator.

type BasicDataset

type BasicDataset interface {
	AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)
	AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)
	AsVerticaTableDataset() (*VerticaTableDataset, bool)
	AsNetezzaTableDataset() (*NetezzaTableDataset, bool)
	AsZohoObjectDataset() (*ZohoObjectDataset, bool)
	AsXeroObjectDataset() (*XeroObjectDataset, bool)
	AsSquareObjectDataset() (*SquareObjectDataset, bool)
	AsSparkObjectDataset() (*SparkObjectDataset, bool)
	AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)
	AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)
	AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)
	AsPrestoObjectDataset() (*PrestoObjectDataset, bool)
	AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)
	AsPaypalObjectDataset() (*PaypalObjectDataset, bool)
	AsMarketoObjectDataset() (*MarketoObjectDataset, bool)
	AsMariaDBTableDataset() (*MariaDBTableDataset, bool)
	AsMagentoObjectDataset() (*MagentoObjectDataset, bool)
	AsJiraObjectDataset() (*JiraObjectDataset, bool)
	AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)
	AsHubspotObjectDataset() (*HubspotObjectDataset, bool)
	AsHiveObjectDataset() (*HiveObjectDataset, bool)
	AsHBaseObjectDataset() (*HBaseObjectDataset, bool)
	AsGreenplumTableDataset() (*GreenplumTableDataset, bool)
	AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)
	AsEloquaObjectDataset() (*EloquaObjectDataset, bool)
	AsDrillTableDataset() (*DrillTableDataset, bool)
	AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)
	AsConcurObjectDataset() (*ConcurObjectDataset, bool)
	AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)
	AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)
	AsHTTPDataset() (*HTTPDataset, bool)
	AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)
	AsWebTableDataset() (*WebTableDataset, bool)
	AsSQLServerTableDataset() (*SQLServerTableDataset, bool)
	AsSapEccResourceDataset() (*SapEccResourceDataset, bool)
	AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)
	AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)
	AsRelationalTableDataset() (*RelationalTableDataset, bool)
	AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)
	AsOracleTableDataset() (*OracleTableDataset, bool)
	AsODataResourceDataset() (*ODataResourceDataset, bool)
	AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)
	AsFileShareDataset() (*FileShareDataset, bool)
	AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)
	AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)
	AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)
	AsCustomDataset() (*CustomDataset, bool)
	AsCassandraTableDataset() (*CassandraTableDataset, bool)
	AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)
	AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)
	AsAzureTableDataset() (*AzureTableDataset, bool)
	AsAzureBlobDataset() (*AzureBlobDataset, bool)
	AsAmazonS3Dataset() (*AmazonS3Dataset, bool)
	AsDataset() (*Dataset, bool)
}

BasicDataset the Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents.

type BasicDatasetCompression

type BasicDatasetCompression interface {
	AsDatasetZipDeflateCompression() (*DatasetZipDeflateCompression, bool)
	AsDatasetDeflateCompression() (*DatasetDeflateCompression, bool)
	AsDatasetGZipCompression() (*DatasetGZipCompression, bool)
	AsDatasetBZip2Compression() (*DatasetBZip2Compression, bool)
	AsDatasetCompression() (*DatasetCompression, bool)
}

BasicDatasetCompression the compression method used on a dataset.

type BasicDatasetStorageFormat

type BasicDatasetStorageFormat interface {
	AsParquetFormat() (*ParquetFormat, bool)
	AsOrcFormat() (*OrcFormat, bool)
	AsAvroFormat() (*AvroFormat, bool)
	AsJSONFormat() (*JSONFormat, bool)
	AsTextFormat() (*TextFormat, bool)
	AsDatasetStorageFormat() (*DatasetStorageFormat, bool)
}

BasicDatasetStorageFormat the format definition of a storage.

type BasicExecutionActivity

type BasicExecutionActivity interface {
	AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)
	AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)
	AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)
	AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)
	AsGetMetadataActivity() (*GetMetadataActivity, bool)
	AsWebActivity() (*WebActivity, bool)
	AsLookupActivity() (*LookupActivity, bool)
	AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)
	AsCustomActivity() (*CustomActivity, bool)
	AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)
	AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)
	AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)
	AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)
	AsHDInsightPigActivity() (*HDInsightPigActivity, bool)
	AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)
	AsCopyActivity() (*CopyActivity, bool)
	AsExecutionActivity() (*ExecutionActivity, bool)
}

BasicExecutionActivity base class for all execution activities.

type BasicIntegrationRuntime

type BasicIntegrationRuntime interface {
	AsSelfHostedIntegrationRuntime() (*SelfHostedIntegrationRuntime, bool)
	AsManagedIntegrationRuntime() (*ManagedIntegrationRuntime, bool)
	AsIntegrationRuntime() (*IntegrationRuntime, bool)
}

BasicIntegrationRuntime azure Data Factory nested object which serves as a compute resource for activities.

type BasicIntegrationRuntimeStatus

type BasicIntegrationRuntimeStatus interface {
	AsSelfHostedIntegrationRuntimeStatus() (*SelfHostedIntegrationRuntimeStatus, bool)
	AsManagedIntegrationRuntimeStatus() (*ManagedIntegrationRuntimeStatus, bool)
	AsIntegrationRuntimeStatus() (*IntegrationRuntimeStatus, bool)
}

BasicIntegrationRuntimeStatus integration runtime status.

type BasicLinkedIntegrationRuntimeProperties

type BasicLinkedIntegrationRuntimeProperties interface {
	AsLinkedIntegrationRuntimeRbac() (*LinkedIntegrationRuntimeRbac, bool)
	AsLinkedIntegrationRuntimeKey() (*LinkedIntegrationRuntimeKey, bool)
	AsLinkedIntegrationRuntimeProperties() (*LinkedIntegrationRuntimeProperties, bool)
}

BasicLinkedIntegrationRuntimeProperties the base definition of a secret type.

type BasicLinkedService

type BasicLinkedService interface {
	AsResponsysLinkedService() (*ResponsysLinkedService, bool)
	AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)
	AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)
	AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)
	AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)
	AsNetezzaLinkedService() (*NetezzaLinkedService, bool)
	AsVerticaLinkedService() (*VerticaLinkedService, bool)
	AsZohoLinkedService() (*ZohoLinkedService, bool)
	AsXeroLinkedService() (*XeroLinkedService, bool)
	AsSquareLinkedService() (*SquareLinkedService, bool)
	AsSparkLinkedService() (*SparkLinkedService, bool)
	AsShopifyLinkedService() (*ShopifyLinkedService, bool)
	AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)
	AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)
	AsPrestoLinkedService() (*PrestoLinkedService, bool)
	AsPhoenixLinkedService() (*PhoenixLinkedService, bool)
	AsPaypalLinkedService() (*PaypalLinkedService, bool)
	AsMarketoLinkedService() (*MarketoLinkedService, bool)
	AsMariaDBLinkedService() (*MariaDBLinkedService, bool)
	AsMagentoLinkedService() (*MagentoLinkedService, bool)
	AsJiraLinkedService() (*JiraLinkedService, bool)
	AsImpalaLinkedService() (*ImpalaLinkedService, bool)
	AsHubspotLinkedService() (*HubspotLinkedService, bool)
	AsHiveLinkedService() (*HiveLinkedService, bool)
	AsHBaseLinkedService() (*HBaseLinkedService, bool)
	AsGreenplumLinkedService() (*GreenplumLinkedService, bool)
	AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)
	AsEloquaLinkedService() (*EloquaLinkedService, bool)
	AsDrillLinkedService() (*DrillLinkedService, bool)
	AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)
	AsConcurLinkedService() (*ConcurLinkedService, bool)
	AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)
	AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)
	AsSapHanaLinkedService() (*SapHanaLinkedService, bool)
	AsSapBWLinkedService() (*SapBWLinkedService, bool)
	AsSftpServerLinkedService() (*SftpServerLinkedService, bool)
	AsFtpServerLinkedService() (*FtpServerLinkedService, bool)
	AsHTTPLinkedService() (*HTTPLinkedService, bool)
	AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)
	AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)
	AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)
	AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)
	AsSapEccLinkedService() (*SapEccLinkedService, bool)
	AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)
	AsSalesforceLinkedService() (*SalesforceLinkedService, bool)
	AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)
	AsMongoDbLinkedService() (*MongoDbLinkedService, bool)
	AsCassandraLinkedService() (*CassandraLinkedService, bool)
	AsWebLinkedService() (*WebLinkedService, bool)
	AsODataLinkedService() (*ODataLinkedService, bool)
	AsHdfsLinkedService() (*HdfsLinkedService, bool)
	AsOdbcLinkedService() (*OdbcLinkedService, bool)
	AsAzureMLLinkedService() (*AzureMLLinkedService, bool)
	AsTeradataLinkedService() (*TeradataLinkedService, bool)
	AsDb2LinkedService() (*Db2LinkedService, bool)
	AsSybaseLinkedService() (*SybaseLinkedService, bool)
	AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)
	AsMySQLLinkedService() (*MySQLLinkedService, bool)
	AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)
	AsOracleLinkedService() (*OracleLinkedService, bool)
	AsFileServerLinkedService() (*FileServerLinkedService, bool)
	AsHDInsightLinkedService() (*HDInsightLinkedService, bool)
	AsDynamicsLinkedService() (*DynamicsLinkedService, bool)
	AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)
	AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)
	AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)
	AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)
	AsSQLServerLinkedService() (*SQLServerLinkedService, bool)
	AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)
	AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)
	AsLinkedService() (*LinkedService, bool)
}

BasicLinkedService the Azure Data Factory nested object which contains the information and credential which can be used to connect with related store or compute resource.

type BasicMultiplePipelineTrigger

type BasicMultiplePipelineTrigger interface {
	AsBlobTrigger() (*BlobTrigger, bool)
	AsScheduleTrigger() (*ScheduleTrigger, bool)
	AsMultiplePipelineTrigger() (*MultiplePipelineTrigger, bool)
}

BasicMultiplePipelineTrigger base class for all triggers that support one to many model for trigger to pipeline.

type BasicSecretBase

type BasicSecretBase interface {
	AsSecureString() (*SecureString, bool)
	AsAzureKeyVaultSecretReference() (*AzureKeyVaultSecretReference, bool)
	AsSecretBase() (*SecretBase, bool)
}

BasicSecretBase the base definition of a secret type.

type BasicTrigger

type BasicTrigger interface {
	AsTumblingWindowTrigger() (*TumblingWindowTrigger, bool)
	AsBlobTrigger() (*BlobTrigger, bool)
	AsScheduleTrigger() (*ScheduleTrigger, bool)
	AsMultiplePipelineTrigger() (*MultiplePipelineTrigger, bool)
	AsBasicMultiplePipelineTrigger() (BasicMultiplePipelineTrigger, bool)
	AsTrigger() (*Trigger, bool)
}

BasicTrigger azure data factory nested object which contains information about creating pipeline run

type BasicWebLinkedServiceTypeProperties

type BasicWebLinkedServiceTypeProperties interface {
	AsWebClientCertificateAuthentication() (*WebClientCertificateAuthentication, bool)
	AsWebBasicAuthentication() (*WebBasicAuthentication, bool)
	AsWebAnonymousAuthentication() (*WebAnonymousAuthentication, bool)
	AsWebLinkedServiceTypeProperties() (*WebLinkedServiceTypeProperties, bool)
}

BasicWebLinkedServiceTypeProperties base definition of WebLinkedServiceTypeProperties, this typeProperties is polymorphic based on authenticationType, so not flattened in SDK models.

type BlobSink

type BlobSink struct {
	// BlobWriterOverwriteFiles - Blob writer overwrite files. Type: boolean (or Expression with resultType boolean).
	BlobWriterOverwriteFiles interface{} `json:"blobWriterOverwriteFiles,omitempty"`
	// BlobWriterDateTimeFormat - Blob writer date time format. Type: string (or Expression with resultType string).
	BlobWriterDateTimeFormat interface{} `json:"blobWriterDateTimeFormat,omitempty"`
	// BlobWriterAddHeader - Blob writer add header. Type: boolean (or Expression with resultType boolean).
	BlobWriterAddHeader interface{} `json:"blobWriterAddHeader,omitempty"`
	// CopyBehavior - The type of copy behavior for copy sink. Possible values include: 'PreserveHierarchy', 'FlattenHierarchy', 'MergeFiles'
	CopyBehavior CopyBehaviorType `json:"copyBehavior,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

BlobSink a copy activity Azure Blob sink.

func (BlobSink) AsAzureDataLakeStoreSink

func (bs BlobSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsAzureQueueSink

func (bs BlobSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsAzureSearchIndexSink

func (bs BlobSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsAzureTableSink

func (bs BlobSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsBasicCopySink

func (bs BlobSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsBlobSink

func (bs BlobSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsCopySink

func (bs BlobSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsDocumentDbCollectionSink

func (bs BlobSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsDynamicsSink

func (bs BlobSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsFileSystemSink

func (bs BlobSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsOdbcSink

func (bs BlobSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsOracleSink

func (bs BlobSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsSQLDWSink

func (bs BlobSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsSQLSink

func (bs BlobSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsSalesforceSink

func (bs BlobSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) AsSapCloudForCustomerSink

func (bs BlobSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for BlobSink.

func (BlobSink) MarshalJSON

func (bs BlobSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for BlobSink.

type BlobSource

type BlobSource struct {
	// TreatEmptyAsNull - Treat empty as null. Type: boolean (or Expression with resultType boolean).
	TreatEmptyAsNull interface{} `json:"treatEmptyAsNull,omitempty"`
	// SkipHeaderLineCount - Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
	SkipHeaderLineCount interface{} `json:"skipHeaderLineCount,omitempty"`
	// Recursive - If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
	Recursive interface{} `json:"recursive,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

BlobSource a copy activity Azure Blob source.

func (BlobSource) AsAmazonMWSSource

func (bs BlobSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsAmazonRedshiftSource

func (bs BlobSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsAzureDataLakeStoreSource

func (bs BlobSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsAzureMySQLSource

func (bs BlobSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsAzurePostgreSQLSource

func (bs BlobSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsAzureTableSource

func (bs BlobSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsBasicCopySource

func (bs BlobSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsBlobSource

func (bs BlobSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsCassandraSource

func (bs BlobSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsConcurSource

func (bs BlobSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsCopySource

func (bs BlobSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsCouchbaseSource

func (bs BlobSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsDocumentDbCollectionSource

func (bs BlobSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsDrillSource

func (bs BlobSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsDynamicsSource

func (bs BlobSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsEloquaSource

func (bs BlobSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsFileSystemSource

func (bs BlobSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsGoogleBigQuerySource

func (bs BlobSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsGreenplumSource

func (bs BlobSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsHBaseSource

func (bs BlobSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsHTTPSource

func (bs BlobSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsHdfsSource

func (bs BlobSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsHiveSource

func (bs BlobSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsHubspotSource

func (bs BlobSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsImpalaSource

func (bs BlobSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsJiraSource

func (bs BlobSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsMagentoSource

func (bs BlobSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsMariaDBSource

func (bs BlobSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsMarketoSource

func (bs BlobSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsMongoDbSource

func (bs BlobSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsNetezzaSource

func (bs BlobSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsOracleSource

func (bs BlobSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsPaypalSource

func (bs BlobSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsPhoenixSource

func (bs BlobSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsPrestoSource

func (bs BlobSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsQuickBooksSource

func (bs BlobSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsRelationalSource

func (bs BlobSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsResponsysSource

func (bs BlobSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsSQLDWSource

func (bs BlobSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsSQLSource

func (bs BlobSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsSalesforceMarketingCloudSource

func (bs BlobSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsSalesforceSource

func (bs BlobSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsSapCloudForCustomerSource

func (bs BlobSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsSapEccSource

func (bs BlobSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsServiceNowSource

func (bs BlobSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsShopifySource

func (bs BlobSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsSparkSource

func (bs BlobSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsSquareSource

func (bs BlobSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsVerticaSource

func (bs BlobSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsWebSource

func (bs BlobSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsXeroSource

func (bs BlobSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) AsZohoSource

func (bs BlobSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for BlobSource.

func (BlobSource) MarshalJSON

func (bs BlobSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for BlobSource.

type BlobTrigger

type BlobTrigger struct {
	// BlobTriggerTypeProperties - Blob Trigger properties.
	*BlobTriggerTypeProperties `json:"typeProperties,omitempty"`
	// Pipelines - Pipelines that need to be started.
	Pipelines *[]TriggerPipelineReference `json:"pipelines,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Trigger description.
	Description *string `json:"description,omitempty"`
	// RuntimeState - Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. Possible values include: 'TriggerRuntimeStateStarted', 'TriggerRuntimeStateStopped', 'TriggerRuntimeStateDisabled'
	RuntimeState TriggerRuntimeState `json:"runtimeState,omitempty"`
	// Type - Possible values include: 'TypeTrigger', 'TypeTumblingWindowTrigger', 'TypeBlobTrigger', 'TypeScheduleTrigger', 'TypeMultiplePipelineTrigger'
	Type TypeBasicTrigger `json:"type,omitempty"`
}

BlobTrigger trigger that runs everytime the selected Blob container changes.

func (BlobTrigger) AsBasicMultiplePipelineTrigger

func (bt BlobTrigger) AsBasicMultiplePipelineTrigger() (BasicMultiplePipelineTrigger, bool)

AsBasicMultiplePipelineTrigger is the BasicTrigger implementation for BlobTrigger.

func (BlobTrigger) AsBasicTrigger

func (bt BlobTrigger) AsBasicTrigger() (BasicTrigger, bool)

AsBasicTrigger is the BasicTrigger implementation for BlobTrigger.

func (BlobTrigger) AsBlobTrigger

func (bt BlobTrigger) AsBlobTrigger() (*BlobTrigger, bool)

AsBlobTrigger is the BasicTrigger implementation for BlobTrigger.

func (BlobTrigger) AsMultiplePipelineTrigger

func (bt BlobTrigger) AsMultiplePipelineTrigger() (*MultiplePipelineTrigger, bool)

AsMultiplePipelineTrigger is the BasicTrigger implementation for BlobTrigger.

func (BlobTrigger) AsScheduleTrigger

func (bt BlobTrigger) AsScheduleTrigger() (*ScheduleTrigger, bool)

AsScheduleTrigger is the BasicTrigger implementation for BlobTrigger.

func (BlobTrigger) AsTrigger

func (bt BlobTrigger) AsTrigger() (*Trigger, bool)

AsTrigger is the BasicTrigger implementation for BlobTrigger.

func (BlobTrigger) AsTumblingWindowTrigger

func (bt BlobTrigger) AsTumblingWindowTrigger() (*TumblingWindowTrigger, bool)

AsTumblingWindowTrigger is the BasicTrigger implementation for BlobTrigger.

func (BlobTrigger) MarshalJSON

func (bt BlobTrigger) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for BlobTrigger.

func (*BlobTrigger) UnmarshalJSON

func (bt *BlobTrigger) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for BlobTrigger struct.

type BlobTriggerTypeProperties

type BlobTriggerTypeProperties struct {
	// FolderPath - The path of the container/folder that will trigger the pipeline.
	FolderPath *string `json:"folderPath,omitempty"`
	// MaxConcurrency - The max number of parallel files to handle when it is triggered.
	MaxConcurrency *int32 `json:"maxConcurrency,omitempty"`
	// LinkedService - The Azure Storage linked service reference.
	LinkedService *LinkedServiceReference `json:"linkedService,omitempty"`
}

BlobTriggerTypeProperties blob Trigger properties.

type CassandraLinkedService

type CassandraLinkedService struct {
	// CassandraLinkedServiceTypeProperties - Cassandra linked service properties.
	*CassandraLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

CassandraLinkedService linked service for Cassandra data source.

func (CassandraLinkedService) AsAmazonMWSLinkedService

func (cls CassandraLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAmazonRedshiftLinkedService

func (cls CassandraLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAmazonS3LinkedService

func (cls CassandraLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAzureBatchLinkedService

func (cls CassandraLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (cls CassandraLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAzureDataLakeStoreLinkedService

func (cls CassandraLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAzureDatabricksLinkedService

func (cls CassandraLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAzureKeyVaultLinkedService

func (cls CassandraLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAzureMLLinkedService

func (cls CassandraLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAzureMySQLLinkedService

func (cls CassandraLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAzurePostgreSQLLinkedService

func (cls CassandraLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAzureSQLDWLinkedService

func (cls CassandraLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAzureSQLDatabaseLinkedService

func (cls CassandraLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAzureSearchLinkedService

func (cls CassandraLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsAzureStorageLinkedService

func (cls CassandraLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsBasicLinkedService

func (cls CassandraLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsCassandraLinkedService

func (cls CassandraLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsConcurLinkedService

func (cls CassandraLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsCosmosDbLinkedService

func (cls CassandraLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsCouchbaseLinkedService

func (cls CassandraLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsCustomDataSourceLinkedService

func (cls CassandraLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsDb2LinkedService

func (cls CassandraLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsDrillLinkedService

func (cls CassandraLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsDynamicsLinkedService

func (cls CassandraLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsEloquaLinkedService

func (cls CassandraLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsFileServerLinkedService

func (cls CassandraLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsFtpServerLinkedService

func (cls CassandraLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsGoogleBigQueryLinkedService

func (cls CassandraLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsGreenplumLinkedService

func (cls CassandraLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsHBaseLinkedService

func (cls CassandraLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsHDInsightLinkedService

func (cls CassandraLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsHDInsightOnDemandLinkedService

func (cls CassandraLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsHTTPLinkedService

func (cls CassandraLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsHdfsLinkedService

func (cls CassandraLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsHiveLinkedService

func (cls CassandraLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsHubspotLinkedService

func (cls CassandraLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsImpalaLinkedService

func (cls CassandraLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsJiraLinkedService

func (cls CassandraLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsLinkedService

func (cls CassandraLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsMagentoLinkedService

func (cls CassandraLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsMariaDBLinkedService

func (cls CassandraLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsMarketoLinkedService

func (cls CassandraLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsMongoDbLinkedService

func (cls CassandraLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsMySQLLinkedService

func (cls CassandraLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsNetezzaLinkedService

func (cls CassandraLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsODataLinkedService

func (cls CassandraLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsOdbcLinkedService

func (cls CassandraLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsOracleLinkedService

func (cls CassandraLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsPaypalLinkedService

func (cls CassandraLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsPhoenixLinkedService

func (cls CassandraLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsPostgreSQLLinkedService

func (cls CassandraLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsPrestoLinkedService

func (cls CassandraLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsQuickBooksLinkedService

func (cls CassandraLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsResponsysLinkedService

func (cls CassandraLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsSQLServerLinkedService

func (cls CassandraLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsSalesforceLinkedService

func (cls CassandraLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsSalesforceMarketingCloudLinkedService

func (cls CassandraLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsSapBWLinkedService

func (cls CassandraLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsSapCloudForCustomerLinkedService

func (cls CassandraLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsSapEccLinkedService

func (cls CassandraLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsSapHanaLinkedService

func (cls CassandraLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsServiceNowLinkedService

func (cls CassandraLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsSftpServerLinkedService

func (cls CassandraLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsShopifyLinkedService

func (cls CassandraLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsSparkLinkedService

func (cls CassandraLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsSquareLinkedService

func (cls CassandraLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsSybaseLinkedService

func (cls CassandraLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsTeradataLinkedService

func (cls CassandraLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsVerticaLinkedService

func (cls CassandraLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsWebLinkedService

func (cls CassandraLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsXeroLinkedService

func (cls CassandraLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) AsZohoLinkedService

func (cls CassandraLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for CassandraLinkedService.

func (CassandraLinkedService) MarshalJSON

func (cls CassandraLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CassandraLinkedService.

func (*CassandraLinkedService) UnmarshalJSON

func (cls *CassandraLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for CassandraLinkedService struct.

type CassandraLinkedServiceTypeProperties

type CassandraLinkedServiceTypeProperties struct {
	// Host - Host name for connection. Type: string (or Expression with resultType string).
	Host interface{} `json:"host,omitempty"`
	// AuthenticationType - AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
	AuthenticationType interface{} `json:"authenticationType,omitempty"`
	// Port - The port for the connection. Type: integer (or Expression with resultType integer).
	Port interface{} `json:"port,omitempty"`
	// Username - Username for authentication. Type: string (or Expression with resultType string).
	Username interface{} `json:"username,omitempty"`
	// Password - Password for authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

CassandraLinkedServiceTypeProperties cassandra linked service properties.

func (*CassandraLinkedServiceTypeProperties) UnmarshalJSON

func (clstp *CassandraLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for CassandraLinkedServiceTypeProperties struct.

type CassandraSource

type CassandraSource struct {
	// Query - Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// ConsistencyLevel - The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive. Possible values include: 'ALL', 'EACHQUORUM', 'QUORUM', 'LOCALQUORUM', 'ONE', 'TWO', 'THREE', 'LOCALONE', 'SERIAL', 'LOCALSERIAL'
	ConsistencyLevel CassandraSourceReadConsistencyLevels `json:"consistencyLevel,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

CassandraSource a copy activity source for a Cassandra database.

func (CassandraSource) AsAmazonMWSSource

func (cs CassandraSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsAmazonRedshiftSource

func (cs CassandraSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsAzureDataLakeStoreSource

func (cs CassandraSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsAzureMySQLSource

func (cs CassandraSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsAzurePostgreSQLSource

func (cs CassandraSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsAzureTableSource

func (cs CassandraSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsBasicCopySource

func (cs CassandraSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsBlobSource

func (cs CassandraSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsCassandraSource

func (cs CassandraSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsConcurSource

func (cs CassandraSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsCopySource

func (cs CassandraSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsCouchbaseSource

func (cs CassandraSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsDocumentDbCollectionSource

func (cs CassandraSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsDrillSource

func (cs CassandraSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsDynamicsSource

func (cs CassandraSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsEloquaSource

func (cs CassandraSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsFileSystemSource

func (cs CassandraSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsGoogleBigQuerySource

func (cs CassandraSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsGreenplumSource

func (cs CassandraSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsHBaseSource

func (cs CassandraSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsHTTPSource

func (cs CassandraSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsHdfsSource

func (cs CassandraSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsHiveSource

func (cs CassandraSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsHubspotSource

func (cs CassandraSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsImpalaSource

func (cs CassandraSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsJiraSource

func (cs CassandraSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsMagentoSource

func (cs CassandraSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsMariaDBSource

func (cs CassandraSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsMarketoSource

func (cs CassandraSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsMongoDbSource

func (cs CassandraSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsNetezzaSource

func (cs CassandraSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsOracleSource

func (cs CassandraSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsPaypalSource

func (cs CassandraSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsPhoenixSource

func (cs CassandraSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsPrestoSource

func (cs CassandraSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsQuickBooksSource

func (cs CassandraSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsRelationalSource

func (cs CassandraSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsResponsysSource

func (cs CassandraSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsSQLDWSource

func (cs CassandraSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsSQLSource

func (cs CassandraSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsSalesforceMarketingCloudSource

func (cs CassandraSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsSalesforceSource

func (cs CassandraSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsSapCloudForCustomerSource

func (cs CassandraSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsSapEccSource

func (cs CassandraSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsServiceNowSource

func (cs CassandraSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsShopifySource

func (cs CassandraSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsSparkSource

func (cs CassandraSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsSquareSource

func (cs CassandraSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsVerticaSource

func (cs CassandraSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsWebSource

func (cs CassandraSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsXeroSource

func (cs CassandraSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) AsZohoSource

func (cs CassandraSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for CassandraSource.

func (CassandraSource) MarshalJSON

func (cs CassandraSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CassandraSource.

type CassandraSourceReadConsistencyLevels

type CassandraSourceReadConsistencyLevels string

CassandraSourceReadConsistencyLevels enumerates the values for cassandra source read consistency levels.

const (
	// ALL ...
	ALL CassandraSourceReadConsistencyLevels = "ALL"
	// EACHQUORUM ...
	EACHQUORUM CassandraSourceReadConsistencyLevels = "EACH_QUORUM"
	// LOCALONE ...
	LOCALONE CassandraSourceReadConsistencyLevels = "LOCAL_ONE"
	// LOCALQUORUM ...
	LOCALQUORUM CassandraSourceReadConsistencyLevels = "LOCAL_QUORUM"
	// LOCALSERIAL ...
	LOCALSERIAL CassandraSourceReadConsistencyLevels = "LOCAL_SERIAL"
	// ONE ...
	ONE CassandraSourceReadConsistencyLevels = "ONE"
	// QUORUM ...
	QUORUM CassandraSourceReadConsistencyLevels = "QUORUM"
	// SERIAL ...
	SERIAL CassandraSourceReadConsistencyLevels = "SERIAL"
	// THREE ...
	THREE CassandraSourceReadConsistencyLevels = "THREE"
	// TWO ...
	TWO CassandraSourceReadConsistencyLevels = "TWO"
)

func PossibleCassandraSourceReadConsistencyLevelsValues

func PossibleCassandraSourceReadConsistencyLevelsValues() []CassandraSourceReadConsistencyLevels

PossibleCassandraSourceReadConsistencyLevelsValues returns an array of possible values for the CassandraSourceReadConsistencyLevels const type.

type CassandraTableDataset

type CassandraTableDataset struct {
	// CassandraTableDatasetTypeProperties - Cassandra dataset properties.
	*CassandraTableDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

CassandraTableDataset the Cassandra database dataset.

func (CassandraTableDataset) AsAmazonMWSObjectDataset

func (ctd CassandraTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsAmazonS3Dataset

func (ctd CassandraTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsAzureBlobDataset

func (ctd CassandraTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsAzureDataLakeStoreDataset

func (ctd CassandraTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsAzureMySQLTableDataset

func (ctd CassandraTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsAzurePostgreSQLTableDataset

func (ctd CassandraTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsAzureSQLDWTableDataset

func (ctd CassandraTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsAzureSQLTableDataset

func (ctd CassandraTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsAzureSearchIndexDataset

func (ctd CassandraTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsAzureTableDataset

func (ctd CassandraTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsBasicDataset

func (ctd CassandraTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsCassandraTableDataset

func (ctd CassandraTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsConcurObjectDataset

func (ctd CassandraTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsCouchbaseTableDataset

func (ctd CassandraTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsCustomDataset

func (ctd CassandraTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsDataset

func (ctd CassandraTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsDocumentDbCollectionDataset

func (ctd CassandraTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsDrillTableDataset

func (ctd CassandraTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsDynamicsEntityDataset

func (ctd CassandraTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsEloquaObjectDataset

func (ctd CassandraTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsFileShareDataset

func (ctd CassandraTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsGoogleBigQueryObjectDataset

func (ctd CassandraTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsGreenplumTableDataset

func (ctd CassandraTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsHBaseObjectDataset

func (ctd CassandraTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsHTTPDataset

func (ctd CassandraTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsHiveObjectDataset

func (ctd CassandraTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsHubspotObjectDataset

func (ctd CassandraTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsImpalaObjectDataset

func (ctd CassandraTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsJiraObjectDataset

func (ctd CassandraTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsMagentoObjectDataset

func (ctd CassandraTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsMariaDBTableDataset

func (ctd CassandraTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsMarketoObjectDataset

func (ctd CassandraTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsMongoDbCollectionDataset

func (ctd CassandraTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsNetezzaTableDataset

func (ctd CassandraTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsODataResourceDataset

func (ctd CassandraTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsOracleTableDataset

func (ctd CassandraTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsPaypalObjectDataset

func (ctd CassandraTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsPhoenixObjectDataset

func (ctd CassandraTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsPrestoObjectDataset

func (ctd CassandraTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsQuickBooksObjectDataset

func (ctd CassandraTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsRelationalTableDataset

func (ctd CassandraTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsResponsysObjectDataset

func (ctd CassandraTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsSQLServerTableDataset

func (ctd CassandraTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsSalesforceMarketingCloudObjectDataset

func (ctd CassandraTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsSalesforceObjectDataset

func (ctd CassandraTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsSapCloudForCustomerResourceDataset

func (ctd CassandraTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsSapEccResourceDataset

func (ctd CassandraTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsServiceNowObjectDataset

func (ctd CassandraTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsShopifyObjectDataset

func (ctd CassandraTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsSparkObjectDataset

func (ctd CassandraTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsSquareObjectDataset

func (ctd CassandraTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsVerticaTableDataset

func (ctd CassandraTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsWebTableDataset

func (ctd CassandraTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsXeroObjectDataset

func (ctd CassandraTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) AsZohoObjectDataset

func (ctd CassandraTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for CassandraTableDataset.

func (CassandraTableDataset) MarshalJSON

func (ctd CassandraTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CassandraTableDataset.

func (*CassandraTableDataset) UnmarshalJSON

func (ctd *CassandraTableDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for CassandraTableDataset struct.

type CassandraTableDatasetTypeProperties

type CassandraTableDatasetTypeProperties struct {
	// TableName - The table name of the Cassandra database. Type: string (or Expression with resultType string).
	TableName interface{} `json:"tableName,omitempty"`
	// Keyspace - The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
	Keyspace interface{} `json:"keyspace,omitempty"`
}

CassandraTableDatasetTypeProperties cassandra dataset properties.

type ConcurLinkedService

type ConcurLinkedService struct {
	// ConcurLinkedServiceTypeProperties - Concur Serivce linked service properties.
	*ConcurLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

ConcurLinkedService concur Serivce linked service.

func (ConcurLinkedService) AsAmazonMWSLinkedService

func (cls ConcurLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAmazonRedshiftLinkedService

func (cls ConcurLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAmazonS3LinkedService

func (cls ConcurLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAzureBatchLinkedService

func (cls ConcurLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (cls ConcurLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAzureDataLakeStoreLinkedService

func (cls ConcurLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAzureDatabricksLinkedService

func (cls ConcurLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAzureKeyVaultLinkedService

func (cls ConcurLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAzureMLLinkedService

func (cls ConcurLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAzureMySQLLinkedService

func (cls ConcurLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAzurePostgreSQLLinkedService

func (cls ConcurLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAzureSQLDWLinkedService

func (cls ConcurLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAzureSQLDatabaseLinkedService

func (cls ConcurLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAzureSearchLinkedService

func (cls ConcurLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsAzureStorageLinkedService

func (cls ConcurLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsBasicLinkedService

func (cls ConcurLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsCassandraLinkedService

func (cls ConcurLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsConcurLinkedService

func (cls ConcurLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsCosmosDbLinkedService

func (cls ConcurLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsCouchbaseLinkedService

func (cls ConcurLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsCustomDataSourceLinkedService

func (cls ConcurLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsDb2LinkedService

func (cls ConcurLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsDrillLinkedService

func (cls ConcurLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsDynamicsLinkedService

func (cls ConcurLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsEloquaLinkedService

func (cls ConcurLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsFileServerLinkedService

func (cls ConcurLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsFtpServerLinkedService

func (cls ConcurLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsGoogleBigQueryLinkedService

func (cls ConcurLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsGreenplumLinkedService

func (cls ConcurLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsHBaseLinkedService

func (cls ConcurLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsHDInsightLinkedService

func (cls ConcurLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsHDInsightOnDemandLinkedService

func (cls ConcurLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsHTTPLinkedService

func (cls ConcurLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsHdfsLinkedService

func (cls ConcurLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsHiveLinkedService

func (cls ConcurLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsHubspotLinkedService

func (cls ConcurLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsImpalaLinkedService

func (cls ConcurLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsJiraLinkedService

func (cls ConcurLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsLinkedService

func (cls ConcurLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsMagentoLinkedService

func (cls ConcurLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsMariaDBLinkedService

func (cls ConcurLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsMarketoLinkedService

func (cls ConcurLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsMongoDbLinkedService

func (cls ConcurLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsMySQLLinkedService

func (cls ConcurLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsNetezzaLinkedService

func (cls ConcurLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsODataLinkedService

func (cls ConcurLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsOdbcLinkedService

func (cls ConcurLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsOracleLinkedService

func (cls ConcurLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsPaypalLinkedService

func (cls ConcurLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsPhoenixLinkedService

func (cls ConcurLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsPostgreSQLLinkedService

func (cls ConcurLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsPrestoLinkedService

func (cls ConcurLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsQuickBooksLinkedService

func (cls ConcurLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsResponsysLinkedService

func (cls ConcurLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsSQLServerLinkedService

func (cls ConcurLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsSalesforceLinkedService

func (cls ConcurLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsSalesforceMarketingCloudLinkedService

func (cls ConcurLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsSapBWLinkedService

func (cls ConcurLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsSapCloudForCustomerLinkedService

func (cls ConcurLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsSapEccLinkedService

func (cls ConcurLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsSapHanaLinkedService

func (cls ConcurLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsServiceNowLinkedService

func (cls ConcurLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsSftpServerLinkedService

func (cls ConcurLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsShopifyLinkedService

func (cls ConcurLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsSparkLinkedService

func (cls ConcurLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsSquareLinkedService

func (cls ConcurLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsSybaseLinkedService

func (cls ConcurLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsTeradataLinkedService

func (cls ConcurLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsVerticaLinkedService

func (cls ConcurLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsWebLinkedService

func (cls ConcurLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsXeroLinkedService

func (cls ConcurLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) AsZohoLinkedService

func (cls ConcurLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for ConcurLinkedService.

func (ConcurLinkedService) MarshalJSON

func (cls ConcurLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ConcurLinkedService.

func (*ConcurLinkedService) UnmarshalJSON

func (cls *ConcurLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ConcurLinkedService struct.

type ConcurLinkedServiceTypeProperties

type ConcurLinkedServiceTypeProperties struct {
	// ClientID - Application client_id supplied by Concur App Management.
	ClientID interface{} `json:"clientId,omitempty"`
	// Username - The user name that you use to access Concur Service.
	Username interface{} `json:"username,omitempty"`
	// Password - The password corresponding to the user name that you provided in the username field.
	Password BasicSecretBase `json:"password,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

ConcurLinkedServiceTypeProperties concur Serivce linked service properties.

func (*ConcurLinkedServiceTypeProperties) UnmarshalJSON

func (clstp *ConcurLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ConcurLinkedServiceTypeProperties struct.

type ConcurObjectDataset

type ConcurObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

ConcurObjectDataset concur Serivce dataset.

func (ConcurObjectDataset) AsAmazonMWSObjectDataset

func (cod ConcurObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsAmazonS3Dataset

func (cod ConcurObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsAzureBlobDataset

func (cod ConcurObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsAzureDataLakeStoreDataset

func (cod ConcurObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsAzureMySQLTableDataset

func (cod ConcurObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsAzurePostgreSQLTableDataset

func (cod ConcurObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsAzureSQLDWTableDataset

func (cod ConcurObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsAzureSQLTableDataset

func (cod ConcurObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsAzureSearchIndexDataset

func (cod ConcurObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsAzureTableDataset

func (cod ConcurObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsBasicDataset

func (cod ConcurObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsCassandraTableDataset

func (cod ConcurObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsConcurObjectDataset

func (cod ConcurObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsCouchbaseTableDataset

func (cod ConcurObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsCustomDataset

func (cod ConcurObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsDataset

func (cod ConcurObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsDocumentDbCollectionDataset

func (cod ConcurObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsDrillTableDataset

func (cod ConcurObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsDynamicsEntityDataset

func (cod ConcurObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsEloquaObjectDataset

func (cod ConcurObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsFileShareDataset

func (cod ConcurObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsGoogleBigQueryObjectDataset

func (cod ConcurObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsGreenplumTableDataset

func (cod ConcurObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsHBaseObjectDataset

func (cod ConcurObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsHTTPDataset

func (cod ConcurObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsHiveObjectDataset

func (cod ConcurObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsHubspotObjectDataset

func (cod ConcurObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsImpalaObjectDataset

func (cod ConcurObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsJiraObjectDataset

func (cod ConcurObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsMagentoObjectDataset

func (cod ConcurObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsMariaDBTableDataset

func (cod ConcurObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsMarketoObjectDataset

func (cod ConcurObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsMongoDbCollectionDataset

func (cod ConcurObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsNetezzaTableDataset

func (cod ConcurObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsODataResourceDataset

func (cod ConcurObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsOracleTableDataset

func (cod ConcurObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsPaypalObjectDataset

func (cod ConcurObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsPhoenixObjectDataset

func (cod ConcurObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsPrestoObjectDataset

func (cod ConcurObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsQuickBooksObjectDataset

func (cod ConcurObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsRelationalTableDataset

func (cod ConcurObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsResponsysObjectDataset

func (cod ConcurObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsSQLServerTableDataset

func (cod ConcurObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (cod ConcurObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsSalesforceObjectDataset

func (cod ConcurObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsSapCloudForCustomerResourceDataset

func (cod ConcurObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsSapEccResourceDataset

func (cod ConcurObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsServiceNowObjectDataset

func (cod ConcurObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsShopifyObjectDataset

func (cod ConcurObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsSparkObjectDataset

func (cod ConcurObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsSquareObjectDataset

func (cod ConcurObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsVerticaTableDataset

func (cod ConcurObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsWebTableDataset

func (cod ConcurObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsXeroObjectDataset

func (cod ConcurObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) AsZohoObjectDataset

func (cod ConcurObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for ConcurObjectDataset.

func (ConcurObjectDataset) MarshalJSON

func (cod ConcurObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ConcurObjectDataset.

type ConcurSource

type ConcurSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

ConcurSource a copy activity Concur Serivce source.

func (ConcurSource) AsAmazonMWSSource

func (cs ConcurSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsAmazonRedshiftSource

func (cs ConcurSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsAzureDataLakeStoreSource

func (cs ConcurSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsAzureMySQLSource

func (cs ConcurSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsAzurePostgreSQLSource

func (cs ConcurSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsAzureTableSource

func (cs ConcurSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsBasicCopySource

func (cs ConcurSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsBlobSource

func (cs ConcurSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsCassandraSource

func (cs ConcurSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsConcurSource

func (cs ConcurSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsCopySource

func (cs ConcurSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsCouchbaseSource

func (cs ConcurSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsDocumentDbCollectionSource

func (cs ConcurSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsDrillSource

func (cs ConcurSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsDynamicsSource

func (cs ConcurSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsEloquaSource

func (cs ConcurSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsFileSystemSource

func (cs ConcurSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsGoogleBigQuerySource

func (cs ConcurSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsGreenplumSource

func (cs ConcurSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsHBaseSource

func (cs ConcurSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsHTTPSource

func (cs ConcurSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsHdfsSource

func (cs ConcurSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsHiveSource

func (cs ConcurSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsHubspotSource

func (cs ConcurSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsImpalaSource

func (cs ConcurSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsJiraSource

func (cs ConcurSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsMagentoSource

func (cs ConcurSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsMariaDBSource

func (cs ConcurSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsMarketoSource

func (cs ConcurSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsMongoDbSource

func (cs ConcurSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsNetezzaSource

func (cs ConcurSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsOracleSource

func (cs ConcurSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsPaypalSource

func (cs ConcurSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsPhoenixSource

func (cs ConcurSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsPrestoSource

func (cs ConcurSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsQuickBooksSource

func (cs ConcurSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsRelationalSource

func (cs ConcurSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsResponsysSource

func (cs ConcurSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsSQLDWSource

func (cs ConcurSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsSQLSource

func (cs ConcurSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsSalesforceMarketingCloudSource

func (cs ConcurSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsSalesforceSource

func (cs ConcurSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsSapCloudForCustomerSource

func (cs ConcurSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsSapEccSource

func (cs ConcurSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsServiceNowSource

func (cs ConcurSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsShopifySource

func (cs ConcurSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsSparkSource

func (cs ConcurSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsSquareSource

func (cs ConcurSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsVerticaSource

func (cs ConcurSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsWebSource

func (cs ConcurSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsXeroSource

func (cs ConcurSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) AsZohoSource

func (cs ConcurSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for ConcurSource.

func (ConcurSource) MarshalJSON

func (cs ConcurSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ConcurSource.

type ControlActivity

type ControlActivity struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

ControlActivity base class for all control activities like IfCondition, ForEach , Until.

func (ControlActivity) AsActivity

func (ca ControlActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsAzureMLBatchExecutionActivity

func (ca ControlActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsAzureMLUpdateResourceActivity

func (ca ControlActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsBasicActivity

func (ca ControlActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsBasicControlActivity

func (ca ControlActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsBasicExecutionActivity

func (ca ControlActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsControlActivity

func (ca ControlActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsCopyActivity

func (ca ControlActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsCustomActivity

func (ca ControlActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsDataLakeAnalyticsUSQLActivity

func (ca ControlActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsDatabricksNotebookActivity

func (ca ControlActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsExecutePipelineActivity

func (ca ControlActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsExecuteSSISPackageActivity

func (ca ControlActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsExecutionActivity

func (ca ControlActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsFilterActivity

func (ca ControlActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsForEachActivity

func (ca ControlActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsGetMetadataActivity

func (ca ControlActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsHDInsightHiveActivity

func (ca ControlActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsHDInsightMapReduceActivity

func (ca ControlActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsHDInsightPigActivity

func (ca ControlActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsHDInsightSparkActivity

func (ca ControlActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsHDInsightStreamingActivity

func (ca ControlActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsIfConditionActivity

func (ca ControlActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsLookupActivity

func (ca ControlActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsSQLServerStoredProcedureActivity

func (ca ControlActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsUntilActivity

func (ca ControlActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsWaitActivity

func (ca ControlActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) AsWebActivity

func (ca ControlActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for ControlActivity.

func (ControlActivity) MarshalJSON

func (ca ControlActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ControlActivity.

type CopyActivity

type CopyActivity struct {
	// CopyActivityTypeProperties - Copy activity properties.
	*CopyActivityTypeProperties `json:"typeProperties,omitempty"`
	// Inputs - List of inputs for the activity.
	Inputs *[]DatasetReference `json:"inputs,omitempty"`
	// Outputs - List of outputs for the activity.
	Outputs *[]DatasetReference `json:"outputs,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

CopyActivity copy activity.

func (CopyActivity) AsActivity

func (ca CopyActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsAzureMLBatchExecutionActivity

func (ca CopyActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsAzureMLUpdateResourceActivity

func (ca CopyActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsBasicActivity

func (ca CopyActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsBasicControlActivity

func (ca CopyActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsBasicExecutionActivity

func (ca CopyActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsControlActivity

func (ca CopyActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsCopyActivity

func (ca CopyActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsCustomActivity

func (ca CopyActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsDataLakeAnalyticsUSQLActivity

func (ca CopyActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsDatabricksNotebookActivity

func (ca CopyActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsExecutePipelineActivity

func (ca CopyActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsExecuteSSISPackageActivity

func (ca CopyActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsExecutionActivity

func (ca CopyActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsFilterActivity

func (ca CopyActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsForEachActivity

func (ca CopyActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsGetMetadataActivity

func (ca CopyActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsHDInsightHiveActivity

func (ca CopyActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsHDInsightMapReduceActivity

func (ca CopyActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsHDInsightPigActivity

func (ca CopyActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsHDInsightSparkActivity

func (ca CopyActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsHDInsightStreamingActivity

func (ca CopyActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsIfConditionActivity

func (ca CopyActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsLookupActivity

func (ca CopyActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsSQLServerStoredProcedureActivity

func (ca CopyActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsUntilActivity

func (ca CopyActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsWaitActivity

func (ca CopyActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) AsWebActivity

func (ca CopyActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for CopyActivity.

func (CopyActivity) MarshalJSON

func (ca CopyActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CopyActivity.

func (*CopyActivity) UnmarshalJSON

func (ca *CopyActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for CopyActivity struct.

type CopyActivityTypeProperties

type CopyActivityTypeProperties struct {
	// Source - Copy activity source.
	Source BasicCopySource `json:"source,omitempty"`
	// Sink - Copy activity sink.
	Sink BasicCopySink `json:"sink,omitempty"`
	// Translator - Copy activity translator. If not specificed, tabular translator is used.
	Translator BasicCopyTranslator `json:"translator,omitempty"`
	// EnableStaging - Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
	EnableStaging interface{} `json:"enableStaging,omitempty"`
	// StagingSettings - Specifies interim staging settings when EnableStaging is true.
	StagingSettings *StagingSettings `json:"stagingSettings,omitempty"`
	// ParallelCopies - Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.
	ParallelCopies interface{} `json:"parallelCopies,omitempty"`
	// CloudDataMovementUnits - Maximum number of cloud data movement units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.
	CloudDataMovementUnits interface{} `json:"cloudDataMovementUnits,omitempty"`
	// EnableSkipIncompatibleRow - Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).
	EnableSkipIncompatibleRow interface{} `json:"enableSkipIncompatibleRow,omitempty"`
	// RedirectIncompatibleRowSettings - Redirect incompatible row settings when EnableSkipIncompatibleRow is true.
	RedirectIncompatibleRowSettings *RedirectIncompatibleRowSettings `json:"redirectIncompatibleRowSettings,omitempty"`
}

CopyActivityTypeProperties copy activity properties.

func (*CopyActivityTypeProperties) UnmarshalJSON

func (catp *CopyActivityTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for CopyActivityTypeProperties struct.

type CopyBehaviorType

type CopyBehaviorType string

CopyBehaviorType enumerates the values for copy behavior type.

const (
	// FlattenHierarchy ...
	FlattenHierarchy CopyBehaviorType = "FlattenHierarchy"
	// MergeFiles ...
	MergeFiles CopyBehaviorType = "MergeFiles"
	// PreserveHierarchy ...
	PreserveHierarchy CopyBehaviorType = "PreserveHierarchy"
)

func PossibleCopyBehaviorTypeValues

func PossibleCopyBehaviorTypeValues() []CopyBehaviorType

PossibleCopyBehaviorTypeValues returns an array of possible values for the CopyBehaviorType const type.

type CopySink

type CopySink struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

CopySink a copy activity sink.

func (CopySink) AsAzureDataLakeStoreSink

func (cs CopySink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for CopySink.

func (CopySink) AsAzureQueueSink

func (cs CopySink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for CopySink.

func (CopySink) AsAzureSearchIndexSink

func (cs CopySink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for CopySink.

func (CopySink) AsAzureTableSink

func (cs CopySink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for CopySink.

func (CopySink) AsBasicCopySink

func (cs CopySink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for CopySink.

func (CopySink) AsBlobSink

func (cs CopySink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for CopySink.

func (CopySink) AsCopySink

func (cs CopySink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for CopySink.

func (CopySink) AsDocumentDbCollectionSink

func (cs CopySink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for CopySink.

func (CopySink) AsDynamicsSink

func (cs CopySink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for CopySink.

func (CopySink) AsFileSystemSink

func (cs CopySink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for CopySink.

func (CopySink) AsOdbcSink

func (cs CopySink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for CopySink.

func (CopySink) AsOracleSink

func (cs CopySink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for CopySink.

func (CopySink) AsSQLDWSink

func (cs CopySink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for CopySink.

func (CopySink) AsSQLSink

func (cs CopySink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for CopySink.

func (CopySink) AsSalesforceSink

func (cs CopySink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for CopySink.

func (CopySink) AsSapCloudForCustomerSink

func (cs CopySink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for CopySink.

func (CopySink) MarshalJSON

func (cs CopySink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CopySink.

type CopySource

type CopySource struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

CopySource a copy activity source.

func (CopySource) AsAmazonMWSSource

func (cs CopySource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsAmazonRedshiftSource

func (cs CopySource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsAzureDataLakeStoreSource

func (cs CopySource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsAzureMySQLSource

func (cs CopySource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsAzurePostgreSQLSource

func (cs CopySource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsAzureTableSource

func (cs CopySource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsBasicCopySource

func (cs CopySource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for CopySource.

func (CopySource) AsBlobSource

func (cs CopySource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsCassandraSource

func (cs CopySource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsConcurSource

func (cs CopySource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsCopySource

func (cs CopySource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for CopySource.

func (CopySource) AsCouchbaseSource

func (cs CopySource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsDocumentDbCollectionSource

func (cs CopySource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsDrillSource

func (cs CopySource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsDynamicsSource

func (cs CopySource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsEloquaSource

func (cs CopySource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsFileSystemSource

func (cs CopySource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsGoogleBigQuerySource

func (cs CopySource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for CopySource.

func (CopySource) AsGreenplumSource

func (cs CopySource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsHBaseSource

func (cs CopySource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsHTTPSource

func (cs CopySource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsHdfsSource

func (cs CopySource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsHiveSource

func (cs CopySource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsHubspotSource

func (cs CopySource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsImpalaSource

func (cs CopySource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsJiraSource

func (cs CopySource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsMagentoSource

func (cs CopySource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsMariaDBSource

func (cs CopySource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsMarketoSource

func (cs CopySource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsMongoDbSource

func (cs CopySource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsNetezzaSource

func (cs CopySource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsOracleSource

func (cs CopySource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsPaypalSource

func (cs CopySource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsPhoenixSource

func (cs CopySource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsPrestoSource

func (cs CopySource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsQuickBooksSource

func (cs CopySource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsRelationalSource

func (cs CopySource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsResponsysSource

func (cs CopySource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsSQLDWSource

func (cs CopySource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsSQLSource

func (cs CopySource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsSalesforceMarketingCloudSource

func (cs CopySource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsSalesforceSource

func (cs CopySource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsSapCloudForCustomerSource

func (cs CopySource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsSapEccSource

func (cs CopySource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsServiceNowSource

func (cs CopySource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsShopifySource

func (cs CopySource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for CopySource.

func (CopySource) AsSparkSource

func (cs CopySource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsSquareSource

func (cs CopySource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsVerticaSource

func (cs CopySource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsWebSource

func (cs CopySource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsXeroSource

func (cs CopySource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for CopySource.

func (CopySource) AsZohoSource

func (cs CopySource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for CopySource.

func (CopySource) MarshalJSON

func (cs CopySource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CopySource.

type CopyTranslator

type CopyTranslator struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Type - Possible values include: 'TypeCopyTranslator', 'TypeTabularTranslator'
	Type TypeBasicCopyTranslator `json:"type,omitempty"`
}

CopyTranslator a copy activity translator.

func (CopyTranslator) AsBasicCopyTranslator

func (ct CopyTranslator) AsBasicCopyTranslator() (BasicCopyTranslator, bool)

AsBasicCopyTranslator is the BasicCopyTranslator implementation for CopyTranslator.

func (CopyTranslator) AsCopyTranslator

func (ct CopyTranslator) AsCopyTranslator() (*CopyTranslator, bool)

AsCopyTranslator is the BasicCopyTranslator implementation for CopyTranslator.

func (CopyTranslator) AsTabularTranslator

func (ct CopyTranslator) AsTabularTranslator() (*TabularTranslator, bool)

AsTabularTranslator is the BasicCopyTranslator implementation for CopyTranslator.

func (CopyTranslator) MarshalJSON

func (ct CopyTranslator) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CopyTranslator.

type CosmosDbLinkedService

type CosmosDbLinkedService struct {
	// CosmosDbLinkedServiceTypeProperties - CosmosDB linked service properties.
	*CosmosDbLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

CosmosDbLinkedService microsoft Azure Cosmos Database (CosmosDB) linked service.

func (CosmosDbLinkedService) AsAmazonMWSLinkedService

func (cdls CosmosDbLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAmazonRedshiftLinkedService

func (cdls CosmosDbLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAmazonS3LinkedService

func (cdls CosmosDbLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAzureBatchLinkedService

func (cdls CosmosDbLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (cdls CosmosDbLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAzureDataLakeStoreLinkedService

func (cdls CosmosDbLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAzureDatabricksLinkedService

func (cdls CosmosDbLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAzureKeyVaultLinkedService

func (cdls CosmosDbLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAzureMLLinkedService

func (cdls CosmosDbLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAzureMySQLLinkedService

func (cdls CosmosDbLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAzurePostgreSQLLinkedService

func (cdls CosmosDbLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAzureSQLDWLinkedService

func (cdls CosmosDbLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAzureSQLDatabaseLinkedService

func (cdls CosmosDbLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAzureSearchLinkedService

func (cdls CosmosDbLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsAzureStorageLinkedService

func (cdls CosmosDbLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsBasicLinkedService

func (cdls CosmosDbLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsCassandraLinkedService

func (cdls CosmosDbLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsConcurLinkedService

func (cdls CosmosDbLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsCosmosDbLinkedService

func (cdls CosmosDbLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsCouchbaseLinkedService

func (cdls CosmosDbLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsCustomDataSourceLinkedService

func (cdls CosmosDbLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsDb2LinkedService

func (cdls CosmosDbLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsDrillLinkedService

func (cdls CosmosDbLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsDynamicsLinkedService

func (cdls CosmosDbLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsEloquaLinkedService

func (cdls CosmosDbLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsFileServerLinkedService

func (cdls CosmosDbLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsFtpServerLinkedService

func (cdls CosmosDbLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsGoogleBigQueryLinkedService

func (cdls CosmosDbLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsGreenplumLinkedService

func (cdls CosmosDbLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsHBaseLinkedService

func (cdls CosmosDbLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsHDInsightLinkedService

func (cdls CosmosDbLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsHDInsightOnDemandLinkedService

func (cdls CosmosDbLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsHTTPLinkedService

func (cdls CosmosDbLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsHdfsLinkedService

func (cdls CosmosDbLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsHiveLinkedService

func (cdls CosmosDbLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsHubspotLinkedService

func (cdls CosmosDbLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsImpalaLinkedService

func (cdls CosmosDbLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsJiraLinkedService

func (cdls CosmosDbLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsLinkedService

func (cdls CosmosDbLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsMagentoLinkedService

func (cdls CosmosDbLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsMariaDBLinkedService

func (cdls CosmosDbLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsMarketoLinkedService

func (cdls CosmosDbLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsMongoDbLinkedService

func (cdls CosmosDbLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsMySQLLinkedService

func (cdls CosmosDbLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsNetezzaLinkedService

func (cdls CosmosDbLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsODataLinkedService

func (cdls CosmosDbLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsOdbcLinkedService

func (cdls CosmosDbLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsOracleLinkedService

func (cdls CosmosDbLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsPaypalLinkedService

func (cdls CosmosDbLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsPhoenixLinkedService

func (cdls CosmosDbLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsPostgreSQLLinkedService

func (cdls CosmosDbLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsPrestoLinkedService

func (cdls CosmosDbLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsQuickBooksLinkedService

func (cdls CosmosDbLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsResponsysLinkedService

func (cdls CosmosDbLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsSQLServerLinkedService

func (cdls CosmosDbLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsSalesforceLinkedService

func (cdls CosmosDbLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsSalesforceMarketingCloudLinkedService

func (cdls CosmosDbLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsSapBWLinkedService

func (cdls CosmosDbLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsSapCloudForCustomerLinkedService

func (cdls CosmosDbLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsSapEccLinkedService

func (cdls CosmosDbLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsSapHanaLinkedService

func (cdls CosmosDbLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsServiceNowLinkedService

func (cdls CosmosDbLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsSftpServerLinkedService

func (cdls CosmosDbLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsShopifyLinkedService

func (cdls CosmosDbLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsSparkLinkedService

func (cdls CosmosDbLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsSquareLinkedService

func (cdls CosmosDbLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsSybaseLinkedService

func (cdls CosmosDbLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsTeradataLinkedService

func (cdls CosmosDbLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsVerticaLinkedService

func (cdls CosmosDbLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsWebLinkedService

func (cdls CosmosDbLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsXeroLinkedService

func (cdls CosmosDbLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) AsZohoLinkedService

func (cdls CosmosDbLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for CosmosDbLinkedService.

func (CosmosDbLinkedService) MarshalJSON

func (cdls CosmosDbLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CosmosDbLinkedService.

func (*CosmosDbLinkedService) UnmarshalJSON

func (cdls *CosmosDbLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for CosmosDbLinkedService struct.

type CosmosDbLinkedServiceTypeProperties

type CosmosDbLinkedServiceTypeProperties struct {
	// ConnectionString - The connection string.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

CosmosDbLinkedServiceTypeProperties cosmosDB linked service properties.

func (*CosmosDbLinkedServiceTypeProperties) UnmarshalJSON

func (cdlstp *CosmosDbLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for CosmosDbLinkedServiceTypeProperties struct.

type CouchbaseLinkedService

type CouchbaseLinkedService struct {
	// CouchbaseLinkedServiceTypeProperties - Couchbase server linked service properties.
	*CouchbaseLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

CouchbaseLinkedService couchbase server linked service.

func (CouchbaseLinkedService) AsAmazonMWSLinkedService

func (cls CouchbaseLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAmazonRedshiftLinkedService

func (cls CouchbaseLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAmazonS3LinkedService

func (cls CouchbaseLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAzureBatchLinkedService

func (cls CouchbaseLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (cls CouchbaseLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAzureDataLakeStoreLinkedService

func (cls CouchbaseLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAzureDatabricksLinkedService

func (cls CouchbaseLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAzureKeyVaultLinkedService

func (cls CouchbaseLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAzureMLLinkedService

func (cls CouchbaseLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAzureMySQLLinkedService

func (cls CouchbaseLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAzurePostgreSQLLinkedService

func (cls CouchbaseLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAzureSQLDWLinkedService

func (cls CouchbaseLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAzureSQLDatabaseLinkedService

func (cls CouchbaseLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAzureSearchLinkedService

func (cls CouchbaseLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsAzureStorageLinkedService

func (cls CouchbaseLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsBasicLinkedService

func (cls CouchbaseLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsCassandraLinkedService

func (cls CouchbaseLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsConcurLinkedService

func (cls CouchbaseLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsCosmosDbLinkedService

func (cls CouchbaseLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsCouchbaseLinkedService

func (cls CouchbaseLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsCustomDataSourceLinkedService

func (cls CouchbaseLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsDb2LinkedService

func (cls CouchbaseLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsDrillLinkedService

func (cls CouchbaseLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsDynamicsLinkedService

func (cls CouchbaseLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsEloquaLinkedService

func (cls CouchbaseLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsFileServerLinkedService

func (cls CouchbaseLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsFtpServerLinkedService

func (cls CouchbaseLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsGoogleBigQueryLinkedService

func (cls CouchbaseLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsGreenplumLinkedService

func (cls CouchbaseLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsHBaseLinkedService

func (cls CouchbaseLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsHDInsightLinkedService

func (cls CouchbaseLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsHDInsightOnDemandLinkedService

func (cls CouchbaseLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsHTTPLinkedService

func (cls CouchbaseLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsHdfsLinkedService

func (cls CouchbaseLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsHiveLinkedService

func (cls CouchbaseLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsHubspotLinkedService

func (cls CouchbaseLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsImpalaLinkedService

func (cls CouchbaseLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsJiraLinkedService

func (cls CouchbaseLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsLinkedService

func (cls CouchbaseLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsMagentoLinkedService

func (cls CouchbaseLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsMariaDBLinkedService

func (cls CouchbaseLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsMarketoLinkedService

func (cls CouchbaseLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsMongoDbLinkedService

func (cls CouchbaseLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsMySQLLinkedService

func (cls CouchbaseLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsNetezzaLinkedService

func (cls CouchbaseLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsODataLinkedService

func (cls CouchbaseLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsOdbcLinkedService

func (cls CouchbaseLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsOracleLinkedService

func (cls CouchbaseLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsPaypalLinkedService

func (cls CouchbaseLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsPhoenixLinkedService

func (cls CouchbaseLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsPostgreSQLLinkedService

func (cls CouchbaseLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsPrestoLinkedService

func (cls CouchbaseLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsQuickBooksLinkedService

func (cls CouchbaseLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsResponsysLinkedService

func (cls CouchbaseLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsSQLServerLinkedService

func (cls CouchbaseLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsSalesforceLinkedService

func (cls CouchbaseLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsSalesforceMarketingCloudLinkedService

func (cls CouchbaseLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsSapBWLinkedService

func (cls CouchbaseLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsSapCloudForCustomerLinkedService

func (cls CouchbaseLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsSapEccLinkedService

func (cls CouchbaseLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsSapHanaLinkedService

func (cls CouchbaseLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsServiceNowLinkedService

func (cls CouchbaseLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsSftpServerLinkedService

func (cls CouchbaseLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsShopifyLinkedService

func (cls CouchbaseLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsSparkLinkedService

func (cls CouchbaseLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsSquareLinkedService

func (cls CouchbaseLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsSybaseLinkedService

func (cls CouchbaseLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsTeradataLinkedService

func (cls CouchbaseLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsVerticaLinkedService

func (cls CouchbaseLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsWebLinkedService

func (cls CouchbaseLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsXeroLinkedService

func (cls CouchbaseLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) AsZohoLinkedService

func (cls CouchbaseLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for CouchbaseLinkedService.

func (CouchbaseLinkedService) MarshalJSON

func (cls CouchbaseLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CouchbaseLinkedService.

func (*CouchbaseLinkedService) UnmarshalJSON

func (cls *CouchbaseLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for CouchbaseLinkedService struct.

type CouchbaseLinkedServiceTypeProperties

type CouchbaseLinkedServiceTypeProperties struct {
	// ConnectionString - An ODBC connection string.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

CouchbaseLinkedServiceTypeProperties couchbase server linked service properties.

func (*CouchbaseLinkedServiceTypeProperties) UnmarshalJSON

func (clstp *CouchbaseLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for CouchbaseLinkedServiceTypeProperties struct.

type CouchbaseSource

type CouchbaseSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

CouchbaseSource a copy activity Couchbase server source.

func (CouchbaseSource) AsAmazonMWSSource

func (cs CouchbaseSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsAmazonRedshiftSource

func (cs CouchbaseSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsAzureDataLakeStoreSource

func (cs CouchbaseSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsAzureMySQLSource

func (cs CouchbaseSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsAzurePostgreSQLSource

func (cs CouchbaseSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsAzureTableSource

func (cs CouchbaseSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsBasicCopySource

func (cs CouchbaseSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsBlobSource

func (cs CouchbaseSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsCassandraSource

func (cs CouchbaseSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsConcurSource

func (cs CouchbaseSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsCopySource

func (cs CouchbaseSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsCouchbaseSource

func (cs CouchbaseSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsDocumentDbCollectionSource

func (cs CouchbaseSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsDrillSource

func (cs CouchbaseSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsDynamicsSource

func (cs CouchbaseSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsEloquaSource

func (cs CouchbaseSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsFileSystemSource

func (cs CouchbaseSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsGoogleBigQuerySource

func (cs CouchbaseSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsGreenplumSource

func (cs CouchbaseSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsHBaseSource

func (cs CouchbaseSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsHTTPSource

func (cs CouchbaseSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsHdfsSource

func (cs CouchbaseSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsHiveSource

func (cs CouchbaseSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsHubspotSource

func (cs CouchbaseSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsImpalaSource

func (cs CouchbaseSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsJiraSource

func (cs CouchbaseSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsMagentoSource

func (cs CouchbaseSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsMariaDBSource

func (cs CouchbaseSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsMarketoSource

func (cs CouchbaseSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsMongoDbSource

func (cs CouchbaseSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsNetezzaSource

func (cs CouchbaseSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsOracleSource

func (cs CouchbaseSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsPaypalSource

func (cs CouchbaseSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsPhoenixSource

func (cs CouchbaseSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsPrestoSource

func (cs CouchbaseSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsQuickBooksSource

func (cs CouchbaseSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsRelationalSource

func (cs CouchbaseSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsResponsysSource

func (cs CouchbaseSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsSQLDWSource

func (cs CouchbaseSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsSQLSource

func (cs CouchbaseSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsSalesforceMarketingCloudSource

func (cs CouchbaseSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsSalesforceSource

func (cs CouchbaseSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsSapCloudForCustomerSource

func (cs CouchbaseSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsSapEccSource

func (cs CouchbaseSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsServiceNowSource

func (cs CouchbaseSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsShopifySource

func (cs CouchbaseSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsSparkSource

func (cs CouchbaseSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsSquareSource

func (cs CouchbaseSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsVerticaSource

func (cs CouchbaseSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsWebSource

func (cs CouchbaseSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsXeroSource

func (cs CouchbaseSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) AsZohoSource

func (cs CouchbaseSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for CouchbaseSource.

func (CouchbaseSource) MarshalJSON

func (cs CouchbaseSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CouchbaseSource.

type CouchbaseTableDataset

type CouchbaseTableDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

CouchbaseTableDataset couchbase server dataset.

func (CouchbaseTableDataset) AsAmazonMWSObjectDataset

func (ctd CouchbaseTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsAmazonS3Dataset

func (ctd CouchbaseTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsAzureBlobDataset

func (ctd CouchbaseTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsAzureDataLakeStoreDataset

func (ctd CouchbaseTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsAzureMySQLTableDataset

func (ctd CouchbaseTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsAzurePostgreSQLTableDataset

func (ctd CouchbaseTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsAzureSQLDWTableDataset

func (ctd CouchbaseTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsAzureSQLTableDataset

func (ctd CouchbaseTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsAzureSearchIndexDataset

func (ctd CouchbaseTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsAzureTableDataset

func (ctd CouchbaseTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsBasicDataset

func (ctd CouchbaseTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsCassandraTableDataset

func (ctd CouchbaseTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsConcurObjectDataset

func (ctd CouchbaseTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsCouchbaseTableDataset

func (ctd CouchbaseTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsCustomDataset

func (ctd CouchbaseTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsDataset

func (ctd CouchbaseTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsDocumentDbCollectionDataset

func (ctd CouchbaseTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsDrillTableDataset

func (ctd CouchbaseTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsDynamicsEntityDataset

func (ctd CouchbaseTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsEloquaObjectDataset

func (ctd CouchbaseTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsFileShareDataset

func (ctd CouchbaseTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsGoogleBigQueryObjectDataset

func (ctd CouchbaseTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsGreenplumTableDataset

func (ctd CouchbaseTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsHBaseObjectDataset

func (ctd CouchbaseTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsHTTPDataset

func (ctd CouchbaseTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsHiveObjectDataset

func (ctd CouchbaseTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsHubspotObjectDataset

func (ctd CouchbaseTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsImpalaObjectDataset

func (ctd CouchbaseTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsJiraObjectDataset

func (ctd CouchbaseTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsMagentoObjectDataset

func (ctd CouchbaseTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsMariaDBTableDataset

func (ctd CouchbaseTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsMarketoObjectDataset

func (ctd CouchbaseTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsMongoDbCollectionDataset

func (ctd CouchbaseTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsNetezzaTableDataset

func (ctd CouchbaseTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsODataResourceDataset

func (ctd CouchbaseTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsOracleTableDataset

func (ctd CouchbaseTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsPaypalObjectDataset

func (ctd CouchbaseTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsPhoenixObjectDataset

func (ctd CouchbaseTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsPrestoObjectDataset

func (ctd CouchbaseTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsQuickBooksObjectDataset

func (ctd CouchbaseTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsRelationalTableDataset

func (ctd CouchbaseTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsResponsysObjectDataset

func (ctd CouchbaseTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsSQLServerTableDataset

func (ctd CouchbaseTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsSalesforceMarketingCloudObjectDataset

func (ctd CouchbaseTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsSalesforceObjectDataset

func (ctd CouchbaseTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsSapCloudForCustomerResourceDataset

func (ctd CouchbaseTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsSapEccResourceDataset

func (ctd CouchbaseTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsServiceNowObjectDataset

func (ctd CouchbaseTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsShopifyObjectDataset

func (ctd CouchbaseTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsSparkObjectDataset

func (ctd CouchbaseTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsSquareObjectDataset

func (ctd CouchbaseTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsVerticaTableDataset

func (ctd CouchbaseTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsWebTableDataset

func (ctd CouchbaseTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsXeroObjectDataset

func (ctd CouchbaseTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) AsZohoObjectDataset

func (ctd CouchbaseTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for CouchbaseTableDataset.

func (CouchbaseTableDataset) MarshalJSON

func (ctd CouchbaseTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CouchbaseTableDataset.

type CreateRunResponse

type CreateRunResponse struct {
	autorest.Response `json:"-"`
	// RunID - Identifier of a run.
	RunID *string `json:"runId,omitempty"`
}

CreateRunResponse response body with a run identifier.

type CustomActivity

type CustomActivity struct {
	// CustomActivityTypeProperties - Custom activity properties.
	*CustomActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

CustomActivity custom activity type.

func (CustomActivity) AsActivity

func (ca CustomActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsAzureMLBatchExecutionActivity

func (ca CustomActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsAzureMLUpdateResourceActivity

func (ca CustomActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsBasicActivity

func (ca CustomActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsBasicControlActivity

func (ca CustomActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsBasicExecutionActivity

func (ca CustomActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsControlActivity

func (ca CustomActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsCopyActivity

func (ca CustomActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsCustomActivity

func (ca CustomActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsDataLakeAnalyticsUSQLActivity

func (ca CustomActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsDatabricksNotebookActivity

func (ca CustomActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsExecutePipelineActivity

func (ca CustomActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsExecuteSSISPackageActivity

func (ca CustomActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsExecutionActivity

func (ca CustomActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsFilterActivity

func (ca CustomActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsForEachActivity

func (ca CustomActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsGetMetadataActivity

func (ca CustomActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsHDInsightHiveActivity

func (ca CustomActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsHDInsightMapReduceActivity

func (ca CustomActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsHDInsightPigActivity

func (ca CustomActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsHDInsightSparkActivity

func (ca CustomActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsHDInsightStreamingActivity

func (ca CustomActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsIfConditionActivity

func (ca CustomActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsLookupActivity

func (ca CustomActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsSQLServerStoredProcedureActivity

func (ca CustomActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsUntilActivity

func (ca CustomActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsWaitActivity

func (ca CustomActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) AsWebActivity

func (ca CustomActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for CustomActivity.

func (CustomActivity) MarshalJSON

func (ca CustomActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CustomActivity.

func (*CustomActivity) UnmarshalJSON

func (ca *CustomActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for CustomActivity struct.

type CustomActivityReferenceObject

type CustomActivityReferenceObject struct {
	// LinkedServices - Linked service references.
	LinkedServices *[]LinkedServiceReference `json:"linkedServices,omitempty"`
	// Datasets - Dataset references.
	Datasets *[]DatasetReference `json:"datasets,omitempty"`
}

CustomActivityReferenceObject reference objects for custom activity

type CustomActivityTypeProperties

type CustomActivityTypeProperties struct {
	// Command - Command for custom activity Type: string (or Expression with resultType string).
	Command interface{} `json:"command,omitempty"`
	// ResourceLinkedService - Resource linked service reference.
	ResourceLinkedService *LinkedServiceReference `json:"resourceLinkedService,omitempty"`
	// FolderPath - Folder path for resource files Type: string (or Expression with resultType string).
	FolderPath interface{} `json:"folderPath,omitempty"`
	// ReferenceObjects - Reference objects
	ReferenceObjects *CustomActivityReferenceObject `json:"referenceObjects,omitempty"`
	// ExtendedProperties - User defined property bag. There is no restriction on the keys or values that can be used. The user specified custom activity has the full responsibility to consume and interpret the content defined.
	ExtendedProperties map[string]interface{} `json:"extendedProperties"`
}

CustomActivityTypeProperties custom activity properties.

func (CustomActivityTypeProperties) MarshalJSON

func (catp CustomActivityTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CustomActivityTypeProperties.

type CustomDataSourceLinkedService

type CustomDataSourceLinkedService struct {
	// TypeProperties - Custom linked service properties.
	TypeProperties interface{} `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

CustomDataSourceLinkedService custom linked service.

func (CustomDataSourceLinkedService) AsAmazonMWSLinkedService

func (cdsls CustomDataSourceLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAmazonRedshiftLinkedService

func (cdsls CustomDataSourceLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAmazonS3LinkedService

func (cdsls CustomDataSourceLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAzureBatchLinkedService

func (cdsls CustomDataSourceLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (cdsls CustomDataSourceLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAzureDataLakeStoreLinkedService

func (cdsls CustomDataSourceLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAzureDatabricksLinkedService

func (cdsls CustomDataSourceLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAzureKeyVaultLinkedService

func (cdsls CustomDataSourceLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAzureMLLinkedService

func (cdsls CustomDataSourceLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAzureMySQLLinkedService

func (cdsls CustomDataSourceLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAzurePostgreSQLLinkedService

func (cdsls CustomDataSourceLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAzureSQLDWLinkedService

func (cdsls CustomDataSourceLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAzureSQLDatabaseLinkedService

func (cdsls CustomDataSourceLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAzureSearchLinkedService

func (cdsls CustomDataSourceLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsAzureStorageLinkedService

func (cdsls CustomDataSourceLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsBasicLinkedService

func (cdsls CustomDataSourceLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsCassandraLinkedService

func (cdsls CustomDataSourceLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsConcurLinkedService

func (cdsls CustomDataSourceLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsCosmosDbLinkedService

func (cdsls CustomDataSourceLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsCouchbaseLinkedService

func (cdsls CustomDataSourceLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsCustomDataSourceLinkedService

func (cdsls CustomDataSourceLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsDb2LinkedService

func (cdsls CustomDataSourceLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsDrillLinkedService

func (cdsls CustomDataSourceLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsDynamicsLinkedService

func (cdsls CustomDataSourceLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsEloquaLinkedService

func (cdsls CustomDataSourceLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsFileServerLinkedService

func (cdsls CustomDataSourceLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsFtpServerLinkedService

func (cdsls CustomDataSourceLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsGoogleBigQueryLinkedService

func (cdsls CustomDataSourceLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsGreenplumLinkedService

func (cdsls CustomDataSourceLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsHBaseLinkedService

func (cdsls CustomDataSourceLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsHDInsightLinkedService

func (cdsls CustomDataSourceLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsHDInsightOnDemandLinkedService

func (cdsls CustomDataSourceLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsHTTPLinkedService

func (cdsls CustomDataSourceLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsHdfsLinkedService

func (cdsls CustomDataSourceLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsHiveLinkedService

func (cdsls CustomDataSourceLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsHubspotLinkedService

func (cdsls CustomDataSourceLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsImpalaLinkedService

func (cdsls CustomDataSourceLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsJiraLinkedService

func (cdsls CustomDataSourceLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsLinkedService

func (cdsls CustomDataSourceLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsMagentoLinkedService

func (cdsls CustomDataSourceLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsMariaDBLinkedService

func (cdsls CustomDataSourceLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsMarketoLinkedService

func (cdsls CustomDataSourceLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsMongoDbLinkedService

func (cdsls CustomDataSourceLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsMySQLLinkedService

func (cdsls CustomDataSourceLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsNetezzaLinkedService

func (cdsls CustomDataSourceLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsODataLinkedService

func (cdsls CustomDataSourceLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsOdbcLinkedService

func (cdsls CustomDataSourceLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsOracleLinkedService

func (cdsls CustomDataSourceLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsPaypalLinkedService

func (cdsls CustomDataSourceLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsPhoenixLinkedService

func (cdsls CustomDataSourceLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsPostgreSQLLinkedService

func (cdsls CustomDataSourceLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsPrestoLinkedService

func (cdsls CustomDataSourceLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsQuickBooksLinkedService

func (cdsls CustomDataSourceLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsResponsysLinkedService

func (cdsls CustomDataSourceLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsSQLServerLinkedService

func (cdsls CustomDataSourceLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsSalesforceLinkedService

func (cdsls CustomDataSourceLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsSalesforceMarketingCloudLinkedService

func (cdsls CustomDataSourceLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsSapBWLinkedService

func (cdsls CustomDataSourceLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsSapCloudForCustomerLinkedService

func (cdsls CustomDataSourceLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsSapEccLinkedService

func (cdsls CustomDataSourceLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsSapHanaLinkedService

func (cdsls CustomDataSourceLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsServiceNowLinkedService

func (cdsls CustomDataSourceLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsSftpServerLinkedService

func (cdsls CustomDataSourceLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsShopifyLinkedService

func (cdsls CustomDataSourceLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsSparkLinkedService

func (cdsls CustomDataSourceLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsSquareLinkedService

func (cdsls CustomDataSourceLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsSybaseLinkedService

func (cdsls CustomDataSourceLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsTeradataLinkedService

func (cdsls CustomDataSourceLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsVerticaLinkedService

func (cdsls CustomDataSourceLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsWebLinkedService

func (cdsls CustomDataSourceLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsXeroLinkedService

func (cdsls CustomDataSourceLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) AsZohoLinkedService

func (cdsls CustomDataSourceLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for CustomDataSourceLinkedService.

func (CustomDataSourceLinkedService) MarshalJSON

func (cdsls CustomDataSourceLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CustomDataSourceLinkedService.

type CustomDataset

type CustomDataset struct {
	// TypeProperties - Custom dataset properties.
	TypeProperties interface{} `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

CustomDataset the custom dataset.

func (CustomDataset) AsAmazonMWSObjectDataset

func (cd CustomDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsAmazonS3Dataset

func (cd CustomDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsAzureBlobDataset

func (cd CustomDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsAzureDataLakeStoreDataset

func (cd CustomDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsAzureMySQLTableDataset

func (cd CustomDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsAzurePostgreSQLTableDataset

func (cd CustomDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsAzureSQLDWTableDataset

func (cd CustomDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsAzureSQLTableDataset

func (cd CustomDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsAzureSearchIndexDataset

func (cd CustomDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsAzureTableDataset

func (cd CustomDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsBasicDataset

func (cd CustomDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsCassandraTableDataset

func (cd CustomDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsConcurObjectDataset

func (cd CustomDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsCouchbaseTableDataset

func (cd CustomDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsCustomDataset

func (cd CustomDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsDataset

func (cd CustomDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsDocumentDbCollectionDataset

func (cd CustomDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsDrillTableDataset

func (cd CustomDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsDynamicsEntityDataset

func (cd CustomDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsEloquaObjectDataset

func (cd CustomDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsFileShareDataset

func (cd CustomDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsGoogleBigQueryObjectDataset

func (cd CustomDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsGreenplumTableDataset

func (cd CustomDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsHBaseObjectDataset

func (cd CustomDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsHTTPDataset

func (cd CustomDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsHiveObjectDataset

func (cd CustomDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsHubspotObjectDataset

func (cd CustomDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsImpalaObjectDataset

func (cd CustomDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsJiraObjectDataset

func (cd CustomDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsMagentoObjectDataset

func (cd CustomDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsMariaDBTableDataset

func (cd CustomDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsMarketoObjectDataset

func (cd CustomDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsMongoDbCollectionDataset

func (cd CustomDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsNetezzaTableDataset

func (cd CustomDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsODataResourceDataset

func (cd CustomDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsOracleTableDataset

func (cd CustomDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsPaypalObjectDataset

func (cd CustomDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsPhoenixObjectDataset

func (cd CustomDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsPrestoObjectDataset

func (cd CustomDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsQuickBooksObjectDataset

func (cd CustomDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsRelationalTableDataset

func (cd CustomDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsResponsysObjectDataset

func (cd CustomDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsSQLServerTableDataset

func (cd CustomDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsSalesforceMarketingCloudObjectDataset

func (cd CustomDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsSalesforceObjectDataset

func (cd CustomDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsSapCloudForCustomerResourceDataset

func (cd CustomDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsSapEccResourceDataset

func (cd CustomDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsServiceNowObjectDataset

func (cd CustomDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsShopifyObjectDataset

func (cd CustomDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsSparkObjectDataset

func (cd CustomDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsSquareObjectDataset

func (cd CustomDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsVerticaTableDataset

func (cd CustomDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsWebTableDataset

func (cd CustomDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsXeroObjectDataset

func (cd CustomDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) AsZohoObjectDataset

func (cd CustomDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for CustomDataset.

func (CustomDataset) MarshalJSON

func (cd CustomDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for CustomDataset.

type DataLakeAnalyticsUSQLActivity

type DataLakeAnalyticsUSQLActivity struct {
	// DataLakeAnalyticsUSQLActivityTypeProperties - Data Lake Analytics U-SQL activity properties.
	*DataLakeAnalyticsUSQLActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

DataLakeAnalyticsUSQLActivity data Lake Analytics U-SQL activity.

func (DataLakeAnalyticsUSQLActivity) AsActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsAzureMLBatchExecutionActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsAzureMLUpdateResourceActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsBasicActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsBasicControlActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsBasicExecutionActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsControlActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsCopyActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsCustomActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsDataLakeAnalyticsUSQLActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsDatabricksNotebookActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsExecutePipelineActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsExecuteSSISPackageActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsExecutionActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsFilterActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsForEachActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsGetMetadataActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsHDInsightHiveActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsHDInsightMapReduceActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsHDInsightPigActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsHDInsightSparkActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsHDInsightStreamingActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsIfConditionActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsLookupActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsSQLServerStoredProcedureActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsUntilActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsWaitActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) AsWebActivity

func (dlaua DataLakeAnalyticsUSQLActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for DataLakeAnalyticsUSQLActivity.

func (DataLakeAnalyticsUSQLActivity) MarshalJSON

func (dlaua DataLakeAnalyticsUSQLActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DataLakeAnalyticsUSQLActivity.

func (*DataLakeAnalyticsUSQLActivity) UnmarshalJSON

func (dlaua *DataLakeAnalyticsUSQLActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for DataLakeAnalyticsUSQLActivity struct.

type DataLakeAnalyticsUSQLActivityTypeProperties

type DataLakeAnalyticsUSQLActivityTypeProperties struct {
	// ScriptPath - Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
	ScriptPath interface{} `json:"scriptPath,omitempty"`
	// ScriptLinkedService - Script linked service reference.
	ScriptLinkedService *LinkedServiceReference `json:"scriptLinkedService,omitempty"`
	// DegreeOfParallelism - The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
	DegreeOfParallelism interface{} `json:"degreeOfParallelism,omitempty"`
	// Priority - Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
	Priority interface{} `json:"priority,omitempty"`
	// Parameters - Parameters for U-SQL job request.
	Parameters map[string]interface{} `json:"parameters"`
	// RuntimeVersion - Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
	RuntimeVersion interface{} `json:"runtimeVersion,omitempty"`
	// CompilationMode - Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
	CompilationMode interface{} `json:"compilationMode,omitempty"`
}

DataLakeAnalyticsUSQLActivityTypeProperties dataLakeAnalyticsU-SQL activity properties.

func (DataLakeAnalyticsUSQLActivityTypeProperties) MarshalJSON

func (dlauatp DataLakeAnalyticsUSQLActivityTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DataLakeAnalyticsUSQLActivityTypeProperties.

type DatabricksNotebookActivity

type DatabricksNotebookActivity struct {
	// DatabricksNotebookActivityTypeProperties - Databricks Notebook activity properties.
	*DatabricksNotebookActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

DatabricksNotebookActivity databricksNotebook activity.

func (DatabricksNotebookActivity) AsActivity

func (dna DatabricksNotebookActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsAzureMLBatchExecutionActivity

func (dna DatabricksNotebookActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsAzureMLUpdateResourceActivity

func (dna DatabricksNotebookActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsBasicActivity

func (dna DatabricksNotebookActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsBasicControlActivity

func (dna DatabricksNotebookActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsBasicExecutionActivity

func (dna DatabricksNotebookActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsControlActivity

func (dna DatabricksNotebookActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsCopyActivity

func (dna DatabricksNotebookActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsCustomActivity

func (dna DatabricksNotebookActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsDataLakeAnalyticsUSQLActivity

func (dna DatabricksNotebookActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsDatabricksNotebookActivity

func (dna DatabricksNotebookActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsExecutePipelineActivity

func (dna DatabricksNotebookActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsExecuteSSISPackageActivity

func (dna DatabricksNotebookActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsExecutionActivity

func (dna DatabricksNotebookActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsFilterActivity

func (dna DatabricksNotebookActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsForEachActivity

func (dna DatabricksNotebookActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsGetMetadataActivity

func (dna DatabricksNotebookActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsHDInsightHiveActivity

func (dna DatabricksNotebookActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsHDInsightMapReduceActivity

func (dna DatabricksNotebookActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsHDInsightPigActivity

func (dna DatabricksNotebookActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsHDInsightSparkActivity

func (dna DatabricksNotebookActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsHDInsightStreamingActivity

func (dna DatabricksNotebookActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsIfConditionActivity

func (dna DatabricksNotebookActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsLookupActivity

func (dna DatabricksNotebookActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsSQLServerStoredProcedureActivity

func (dna DatabricksNotebookActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsUntilActivity

func (dna DatabricksNotebookActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsWaitActivity

func (dna DatabricksNotebookActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) AsWebActivity

func (dna DatabricksNotebookActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for DatabricksNotebookActivity.

func (DatabricksNotebookActivity) MarshalJSON

func (dna DatabricksNotebookActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DatabricksNotebookActivity.

func (*DatabricksNotebookActivity) UnmarshalJSON

func (dna *DatabricksNotebookActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for DatabricksNotebookActivity struct.

type DatabricksNotebookActivityTypeProperties

type DatabricksNotebookActivityTypeProperties struct {
	// NotebookPath - The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
	NotebookPath interface{} `json:"notebookPath,omitempty"`
	// BaseParameters - Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.
	BaseParameters map[string]interface{} `json:"baseParameters"`
}

DatabricksNotebookActivityTypeProperties databricks Notebook activity properties.

func (DatabricksNotebookActivityTypeProperties) MarshalJSON

func (dnatp DatabricksNotebookActivityTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DatabricksNotebookActivityTypeProperties.

type Dataset

type Dataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

Dataset the Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents.

func (Dataset) AsAmazonMWSObjectDataset

func (d Dataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsAmazonS3Dataset

func (d Dataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for Dataset.

func (Dataset) AsAzureBlobDataset

func (d Dataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsAzureDataLakeStoreDataset

func (d Dataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsAzureMySQLTableDataset

func (d Dataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsAzurePostgreSQLTableDataset

func (d Dataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsAzureSQLDWTableDataset

func (d Dataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsAzureSQLTableDataset

func (d Dataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsAzureSearchIndexDataset

func (d Dataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsAzureTableDataset

func (d Dataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsBasicDataset

func (d Dataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsCassandraTableDataset

func (d Dataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsConcurObjectDataset

func (d Dataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsCouchbaseTableDataset

func (d Dataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsCustomDataset

func (d Dataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsDataset

func (d Dataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsDocumentDbCollectionDataset

func (d Dataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsDrillTableDataset

func (d Dataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsDynamicsEntityDataset

func (d Dataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsEloquaObjectDataset

func (d Dataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsFileShareDataset

func (d Dataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsGoogleBigQueryObjectDataset

func (d Dataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsGreenplumTableDataset

func (d Dataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsHBaseObjectDataset

func (d Dataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsHTTPDataset

func (d Dataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsHiveObjectDataset

func (d Dataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsHubspotObjectDataset

func (d Dataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsImpalaObjectDataset

func (d Dataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsJiraObjectDataset

func (d Dataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsMagentoObjectDataset

func (d Dataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsMariaDBTableDataset

func (d Dataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsMarketoObjectDataset

func (d Dataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsMongoDbCollectionDataset

func (d Dataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsNetezzaTableDataset

func (d Dataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsODataResourceDataset

func (d Dataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsOracleTableDataset

func (d Dataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsPaypalObjectDataset

func (d Dataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsPhoenixObjectDataset

func (d Dataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsPrestoObjectDataset

func (d Dataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsQuickBooksObjectDataset

func (d Dataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsRelationalTableDataset

func (d Dataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsResponsysObjectDataset

func (d Dataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsSQLServerTableDataset

func (d Dataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsSalesforceMarketingCloudObjectDataset

func (d Dataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsSalesforceObjectDataset

func (d Dataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsSapCloudForCustomerResourceDataset

func (d Dataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsSapEccResourceDataset

func (d Dataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsServiceNowObjectDataset

func (d Dataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsShopifyObjectDataset

func (d Dataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsSparkObjectDataset

func (d Dataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsSquareObjectDataset

func (d Dataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsVerticaTableDataset

func (d Dataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsWebTableDataset

func (d Dataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsXeroObjectDataset

func (d Dataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) AsZohoObjectDataset

func (d Dataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for Dataset.

func (Dataset) MarshalJSON

func (d Dataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for Dataset.

type DatasetBZip2Compression

type DatasetBZip2Compression struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Type - Possible values include: 'TypeDatasetCompression', 'TypeZipDeflate', 'TypeDeflate', 'TypeGZip', 'TypeBZip2'
	Type TypeBasicDatasetCompression `json:"type,omitempty"`
}

DatasetBZip2Compression the BZip2 compression method used on a dataset.

func (DatasetBZip2Compression) AsBasicDatasetCompression

func (dbz2c DatasetBZip2Compression) AsBasicDatasetCompression() (BasicDatasetCompression, bool)

AsBasicDatasetCompression is the BasicDatasetCompression implementation for DatasetBZip2Compression.

func (DatasetBZip2Compression) AsDatasetBZip2Compression

func (dbz2c DatasetBZip2Compression) AsDatasetBZip2Compression() (*DatasetBZip2Compression, bool)

AsDatasetBZip2Compression is the BasicDatasetCompression implementation for DatasetBZip2Compression.

func (DatasetBZip2Compression) AsDatasetCompression

func (dbz2c DatasetBZip2Compression) AsDatasetCompression() (*DatasetCompression, bool)

AsDatasetCompression is the BasicDatasetCompression implementation for DatasetBZip2Compression.

func (DatasetBZip2Compression) AsDatasetDeflateCompression

func (dbz2c DatasetBZip2Compression) AsDatasetDeflateCompression() (*DatasetDeflateCompression, bool)

AsDatasetDeflateCompression is the BasicDatasetCompression implementation for DatasetBZip2Compression.

func (DatasetBZip2Compression) AsDatasetGZipCompression

func (dbz2c DatasetBZip2Compression) AsDatasetGZipCompression() (*DatasetGZipCompression, bool)

AsDatasetGZipCompression is the BasicDatasetCompression implementation for DatasetBZip2Compression.

func (DatasetBZip2Compression) AsDatasetZipDeflateCompression

func (dbz2c DatasetBZip2Compression) AsDatasetZipDeflateCompression() (*DatasetZipDeflateCompression, bool)

AsDatasetZipDeflateCompression is the BasicDatasetCompression implementation for DatasetBZip2Compression.

func (DatasetBZip2Compression) MarshalJSON

func (dbz2c DatasetBZip2Compression) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DatasetBZip2Compression.

type DatasetCompression

type DatasetCompression struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Type - Possible values include: 'TypeDatasetCompression', 'TypeZipDeflate', 'TypeDeflate', 'TypeGZip', 'TypeBZip2'
	Type TypeBasicDatasetCompression `json:"type,omitempty"`
}

DatasetCompression the compression method used on a dataset.

func (DatasetCompression) AsBasicDatasetCompression

func (dc DatasetCompression) AsBasicDatasetCompression() (BasicDatasetCompression, bool)

AsBasicDatasetCompression is the BasicDatasetCompression implementation for DatasetCompression.

func (DatasetCompression) AsDatasetBZip2Compression

func (dc DatasetCompression) AsDatasetBZip2Compression() (*DatasetBZip2Compression, bool)

AsDatasetBZip2Compression is the BasicDatasetCompression implementation for DatasetCompression.

func (DatasetCompression) AsDatasetCompression

func (dc DatasetCompression) AsDatasetCompression() (*DatasetCompression, bool)

AsDatasetCompression is the BasicDatasetCompression implementation for DatasetCompression.

func (DatasetCompression) AsDatasetDeflateCompression

func (dc DatasetCompression) AsDatasetDeflateCompression() (*DatasetDeflateCompression, bool)

AsDatasetDeflateCompression is the BasicDatasetCompression implementation for DatasetCompression.

func (DatasetCompression) AsDatasetGZipCompression

func (dc DatasetCompression) AsDatasetGZipCompression() (*DatasetGZipCompression, bool)

AsDatasetGZipCompression is the BasicDatasetCompression implementation for DatasetCompression.

func (DatasetCompression) AsDatasetZipDeflateCompression

func (dc DatasetCompression) AsDatasetZipDeflateCompression() (*DatasetZipDeflateCompression, bool)

AsDatasetZipDeflateCompression is the BasicDatasetCompression implementation for DatasetCompression.

func (DatasetCompression) MarshalJSON

func (dc DatasetCompression) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DatasetCompression.

type DatasetCompressionLevel

type DatasetCompressionLevel string

DatasetCompressionLevel enumerates the values for dataset compression level.

const (
	// Fastest ...
	Fastest DatasetCompressionLevel = "Fastest"
	// Optimal ...
	Optimal DatasetCompressionLevel = "Optimal"
)

func PossibleDatasetCompressionLevelValues

func PossibleDatasetCompressionLevelValues() []DatasetCompressionLevel

PossibleDatasetCompressionLevelValues returns an array of possible values for the DatasetCompressionLevel const type.

type DatasetDeflateCompression

type DatasetDeflateCompression struct {
	// Level - The Deflate compression level. Possible values include: 'Optimal', 'Fastest'
	Level DatasetCompressionLevel `json:"level,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Type - Possible values include: 'TypeDatasetCompression', 'TypeZipDeflate', 'TypeDeflate', 'TypeGZip', 'TypeBZip2'
	Type TypeBasicDatasetCompression `json:"type,omitempty"`
}

DatasetDeflateCompression the Deflate compression method used on a dataset.

func (DatasetDeflateCompression) AsBasicDatasetCompression

func (ddc DatasetDeflateCompression) AsBasicDatasetCompression() (BasicDatasetCompression, bool)

AsBasicDatasetCompression is the BasicDatasetCompression implementation for DatasetDeflateCompression.

func (DatasetDeflateCompression) AsDatasetBZip2Compression

func (ddc DatasetDeflateCompression) AsDatasetBZip2Compression() (*DatasetBZip2Compression, bool)

AsDatasetBZip2Compression is the BasicDatasetCompression implementation for DatasetDeflateCompression.

func (DatasetDeflateCompression) AsDatasetCompression

func (ddc DatasetDeflateCompression) AsDatasetCompression() (*DatasetCompression, bool)

AsDatasetCompression is the BasicDatasetCompression implementation for DatasetDeflateCompression.

func (DatasetDeflateCompression) AsDatasetDeflateCompression

func (ddc DatasetDeflateCompression) AsDatasetDeflateCompression() (*DatasetDeflateCompression, bool)

AsDatasetDeflateCompression is the BasicDatasetCompression implementation for DatasetDeflateCompression.

func (DatasetDeflateCompression) AsDatasetGZipCompression

func (ddc DatasetDeflateCompression) AsDatasetGZipCompression() (*DatasetGZipCompression, bool)

AsDatasetGZipCompression is the BasicDatasetCompression implementation for DatasetDeflateCompression.

func (DatasetDeflateCompression) AsDatasetZipDeflateCompression

func (ddc DatasetDeflateCompression) AsDatasetZipDeflateCompression() (*DatasetZipDeflateCompression, bool)

AsDatasetZipDeflateCompression is the BasicDatasetCompression implementation for DatasetDeflateCompression.

func (DatasetDeflateCompression) MarshalJSON

func (ddc DatasetDeflateCompression) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DatasetDeflateCompression.

type DatasetGZipCompression

type DatasetGZipCompression struct {
	// Level - The GZip compression level. Possible values include: 'Optimal', 'Fastest'
	Level DatasetCompressionLevel `json:"level,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Type - Possible values include: 'TypeDatasetCompression', 'TypeZipDeflate', 'TypeDeflate', 'TypeGZip', 'TypeBZip2'
	Type TypeBasicDatasetCompression `json:"type,omitempty"`
}

DatasetGZipCompression the GZip compression method used on a dataset.

func (DatasetGZipCompression) AsBasicDatasetCompression

func (dgzc DatasetGZipCompression) AsBasicDatasetCompression() (BasicDatasetCompression, bool)

AsBasicDatasetCompression is the BasicDatasetCompression implementation for DatasetGZipCompression.

func (DatasetGZipCompression) AsDatasetBZip2Compression

func (dgzc DatasetGZipCompression) AsDatasetBZip2Compression() (*DatasetBZip2Compression, bool)

AsDatasetBZip2Compression is the BasicDatasetCompression implementation for DatasetGZipCompression.

func (DatasetGZipCompression) AsDatasetCompression

func (dgzc DatasetGZipCompression) AsDatasetCompression() (*DatasetCompression, bool)

AsDatasetCompression is the BasicDatasetCompression implementation for DatasetGZipCompression.

func (DatasetGZipCompression) AsDatasetDeflateCompression

func (dgzc DatasetGZipCompression) AsDatasetDeflateCompression() (*DatasetDeflateCompression, bool)

AsDatasetDeflateCompression is the BasicDatasetCompression implementation for DatasetGZipCompression.

func (DatasetGZipCompression) AsDatasetGZipCompression

func (dgzc DatasetGZipCompression) AsDatasetGZipCompression() (*DatasetGZipCompression, bool)

AsDatasetGZipCompression is the BasicDatasetCompression implementation for DatasetGZipCompression.

func (DatasetGZipCompression) AsDatasetZipDeflateCompression

func (dgzc DatasetGZipCompression) AsDatasetZipDeflateCompression() (*DatasetZipDeflateCompression, bool)

AsDatasetZipDeflateCompression is the BasicDatasetCompression implementation for DatasetGZipCompression.

func (DatasetGZipCompression) MarshalJSON

func (dgzc DatasetGZipCompression) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DatasetGZipCompression.

type DatasetListResponse

type DatasetListResponse struct {
	autorest.Response `json:"-"`
	// Value - List of datasets.
	Value *[]DatasetResource `json:"value,omitempty"`
	// NextLink - The link to the next page of results, if any remaining results exist.
	NextLink *string `json:"nextLink,omitempty"`
}

DatasetListResponse a list of dataset resources.

func (DatasetListResponse) IsEmpty

func (dlr DatasetListResponse) IsEmpty() bool

IsEmpty returns true if the ListResult contains no values.

type DatasetListResponseIterator

type DatasetListResponseIterator struct {
	// contains filtered or unexported fields
}

DatasetListResponseIterator provides access to a complete listing of DatasetResource values.

func (*DatasetListResponseIterator) Next

func (iter *DatasetListResponseIterator) Next() error

Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.

func (DatasetListResponseIterator) NotDone

func (iter DatasetListResponseIterator) NotDone() bool

NotDone returns true if the enumeration should be started or is not yet complete.

func (DatasetListResponseIterator) Response

Response returns the raw server response from the last page request.

func (DatasetListResponseIterator) Value

Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.

type DatasetListResponsePage

type DatasetListResponsePage struct {
	// contains filtered or unexported fields
}

DatasetListResponsePage contains a page of DatasetResource values.

func (*DatasetListResponsePage) Next

func (page *DatasetListResponsePage) Next() error

Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.

func (DatasetListResponsePage) NotDone

func (page DatasetListResponsePage) NotDone() bool

NotDone returns true if the page enumeration should be started or is not yet complete.

func (DatasetListResponsePage) Response

Response returns the raw server response from the last page request.

func (DatasetListResponsePage) Values

func (page DatasetListResponsePage) Values() []DatasetResource

Values returns the slice of values for the current page or nil if there are no values.

type DatasetReference

type DatasetReference struct {
	// Type - Dataset reference type.
	Type *string `json:"type,omitempty"`
	// ReferenceName - Reference dataset name.
	ReferenceName *string `json:"referenceName,omitempty"`
	// Parameters - Arguments for dataset.
	Parameters map[string]interface{} `json:"parameters"`
}

DatasetReference dataset reference type.

func (DatasetReference) MarshalJSON

func (dr DatasetReference) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DatasetReference.

type DatasetResource

type DatasetResource struct {
	autorest.Response `json:"-"`
	// Properties - Dataset properties.
	Properties BasicDataset `json:"properties,omitempty"`
	// ID - The resource identifier.
	ID *string `json:"id,omitempty"`
	// Name - The resource name.
	Name *string `json:"name,omitempty"`
	// Type - The resource type.
	Type *string `json:"type,omitempty"`
	// Etag - Etag identifies change in the resource.
	Etag *string `json:"etag,omitempty"`
}

DatasetResource dataset resource type.

func (*DatasetResource) UnmarshalJSON

func (dr *DatasetResource) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for DatasetResource struct.

type DatasetStorageFormat

type DatasetStorageFormat struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Serializer - Serializer. Type: string (or Expression with resultType string).
	Serializer interface{} `json:"serializer,omitempty"`
	// Deserializer - Deserializer. Type: string (or Expression with resultType string).
	Deserializer interface{} `json:"deserializer,omitempty"`
	// Type - Possible values include: 'TypeDatasetStorageFormat', 'TypeParquetFormat', 'TypeOrcFormat', 'TypeAvroFormat', 'TypeJSONFormat', 'TypeTextFormat'
	Type TypeBasicDatasetStorageFormat `json:"type,omitempty"`
}

DatasetStorageFormat the format definition of a storage.

func (DatasetStorageFormat) AsAvroFormat

func (dsf DatasetStorageFormat) AsAvroFormat() (*AvroFormat, bool)

AsAvroFormat is the BasicDatasetStorageFormat implementation for DatasetStorageFormat.

func (DatasetStorageFormat) AsBasicDatasetStorageFormat

func (dsf DatasetStorageFormat) AsBasicDatasetStorageFormat() (BasicDatasetStorageFormat, bool)

AsBasicDatasetStorageFormat is the BasicDatasetStorageFormat implementation for DatasetStorageFormat.

func (DatasetStorageFormat) AsDatasetStorageFormat

func (dsf DatasetStorageFormat) AsDatasetStorageFormat() (*DatasetStorageFormat, bool)

AsDatasetStorageFormat is the BasicDatasetStorageFormat implementation for DatasetStorageFormat.

func (DatasetStorageFormat) AsJSONFormat

func (dsf DatasetStorageFormat) AsJSONFormat() (*JSONFormat, bool)

AsJSONFormat is the BasicDatasetStorageFormat implementation for DatasetStorageFormat.

func (DatasetStorageFormat) AsOrcFormat

func (dsf DatasetStorageFormat) AsOrcFormat() (*OrcFormat, bool)

AsOrcFormat is the BasicDatasetStorageFormat implementation for DatasetStorageFormat.

func (DatasetStorageFormat) AsParquetFormat

func (dsf DatasetStorageFormat) AsParquetFormat() (*ParquetFormat, bool)

AsParquetFormat is the BasicDatasetStorageFormat implementation for DatasetStorageFormat.

func (DatasetStorageFormat) AsTextFormat

func (dsf DatasetStorageFormat) AsTextFormat() (*TextFormat, bool)

AsTextFormat is the BasicDatasetStorageFormat implementation for DatasetStorageFormat.

func (DatasetStorageFormat) MarshalJSON

func (dsf DatasetStorageFormat) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DatasetStorageFormat.

type DatasetZipDeflateCompression

type DatasetZipDeflateCompression struct {
	// Level - The ZipDeflate compression level. Possible values include: 'Optimal', 'Fastest'
	Level DatasetCompressionLevel `json:"level,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Type - Possible values include: 'TypeDatasetCompression', 'TypeZipDeflate', 'TypeDeflate', 'TypeGZip', 'TypeBZip2'
	Type TypeBasicDatasetCompression `json:"type,omitempty"`
}

DatasetZipDeflateCompression the ZipDeflate compression method used on a dataset.

func (DatasetZipDeflateCompression) AsBasicDatasetCompression

func (dzdc DatasetZipDeflateCompression) AsBasicDatasetCompression() (BasicDatasetCompression, bool)

AsBasicDatasetCompression is the BasicDatasetCompression implementation for DatasetZipDeflateCompression.

func (DatasetZipDeflateCompression) AsDatasetBZip2Compression

func (dzdc DatasetZipDeflateCompression) AsDatasetBZip2Compression() (*DatasetBZip2Compression, bool)

AsDatasetBZip2Compression is the BasicDatasetCompression implementation for DatasetZipDeflateCompression.

func (DatasetZipDeflateCompression) AsDatasetCompression

func (dzdc DatasetZipDeflateCompression) AsDatasetCompression() (*DatasetCompression, bool)

AsDatasetCompression is the BasicDatasetCompression implementation for DatasetZipDeflateCompression.

func (DatasetZipDeflateCompression) AsDatasetDeflateCompression

func (dzdc DatasetZipDeflateCompression) AsDatasetDeflateCompression() (*DatasetDeflateCompression, bool)

AsDatasetDeflateCompression is the BasicDatasetCompression implementation for DatasetZipDeflateCompression.

func (DatasetZipDeflateCompression) AsDatasetGZipCompression

func (dzdc DatasetZipDeflateCompression) AsDatasetGZipCompression() (*DatasetGZipCompression, bool)

AsDatasetGZipCompression is the BasicDatasetCompression implementation for DatasetZipDeflateCompression.

func (DatasetZipDeflateCompression) AsDatasetZipDeflateCompression

func (dzdc DatasetZipDeflateCompression) AsDatasetZipDeflateCompression() (*DatasetZipDeflateCompression, bool)

AsDatasetZipDeflateCompression is the BasicDatasetCompression implementation for DatasetZipDeflateCompression.

func (DatasetZipDeflateCompression) MarshalJSON

func (dzdc DatasetZipDeflateCompression) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DatasetZipDeflateCompression.

type DatasetsClient

type DatasetsClient struct {
	BaseClient
}

DatasetsClient is the the Azure Data Factory V2 management API provides a RESTful set of web services that interact with Azure Data Factory V2 services.

func NewDatasetsClient

func NewDatasetsClient(subscriptionID string) DatasetsClient

NewDatasetsClient creates an instance of the DatasetsClient client.

func NewDatasetsClientWithBaseURI

func NewDatasetsClientWithBaseURI(baseURI string, subscriptionID string) DatasetsClient

NewDatasetsClientWithBaseURI creates an instance of the DatasetsClient client.

func (DatasetsClient) CreateOrUpdate

func (client DatasetsClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, factoryName string, datasetName string, dataset DatasetResource, ifMatch string) (result DatasetResource, err error)

CreateOrUpdate creates or updates a dataset. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. datasetName - the dataset name. dataset - dataset resource definition. ifMatch - eTag of the dataset entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update.

func (DatasetsClient) CreateOrUpdatePreparer

func (client DatasetsClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, factoryName string, datasetName string, dataset DatasetResource, ifMatch string) (*http.Request, error)

CreateOrUpdatePreparer prepares the CreateOrUpdate request.

func (DatasetsClient) CreateOrUpdateResponder

func (client DatasetsClient) CreateOrUpdateResponder(resp *http.Response) (result DatasetResource, err error)

CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always closes the http.Response Body.

func (DatasetsClient) CreateOrUpdateSender

func (client DatasetsClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error)

CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the http.Response Body if it receives an error.

func (DatasetsClient) Delete

func (client DatasetsClient) Delete(ctx context.Context, resourceGroupName string, factoryName string, datasetName string) (result autorest.Response, err error)

Delete deletes a dataset. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. datasetName - the dataset name.

func (DatasetsClient) DeletePreparer

func (client DatasetsClient) DeletePreparer(ctx context.Context, resourceGroupName string, factoryName string, datasetName string) (*http.Request, error)

DeletePreparer prepares the Delete request.

func (DatasetsClient) DeleteResponder

func (client DatasetsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)

DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.

func (DatasetsClient) DeleteSender

func (client DatasetsClient) DeleteSender(req *http.Request) (*http.Response, error)

DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.

func (DatasetsClient) Get

func (client DatasetsClient) Get(ctx context.Context, resourceGroupName string, factoryName string, datasetName string) (result DatasetResource, err error)

Get gets a dataset. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. datasetName - the dataset name.

func (DatasetsClient) GetPreparer

func (client DatasetsClient) GetPreparer(ctx context.Context, resourceGroupName string, factoryName string, datasetName string) (*http.Request, error)

GetPreparer prepares the Get request.

func (DatasetsClient) GetResponder

func (client DatasetsClient) GetResponder(resp *http.Response) (result DatasetResource, err error)

GetResponder handles the response to the Get request. The method always closes the http.Response Body.

func (DatasetsClient) GetSender

func (client DatasetsClient) GetSender(req *http.Request) (*http.Response, error)

GetSender sends the Get request. The method will close the http.Response Body if it receives an error.

func (DatasetsClient) ListByFactory

func (client DatasetsClient) ListByFactory(ctx context.Context, resourceGroupName string, factoryName string) (result DatasetListResponsePage, err error)

ListByFactory lists datasets. Parameters: resourceGroupName - the resource group name. factoryName - the factory name.

func (DatasetsClient) ListByFactoryComplete

func (client DatasetsClient) ListByFactoryComplete(ctx context.Context, resourceGroupName string, factoryName string) (result DatasetListResponseIterator, err error)

ListByFactoryComplete enumerates all values, automatically crossing page boundaries as required.

func (DatasetsClient) ListByFactoryPreparer

func (client DatasetsClient) ListByFactoryPreparer(ctx context.Context, resourceGroupName string, factoryName string) (*http.Request, error)

ListByFactoryPreparer prepares the ListByFactory request.

func (DatasetsClient) ListByFactoryResponder

func (client DatasetsClient) ListByFactoryResponder(resp *http.Response) (result DatasetListResponse, err error)

ListByFactoryResponder handles the response to the ListByFactory request. The method always closes the http.Response Body.

func (DatasetsClient) ListByFactorySender

func (client DatasetsClient) ListByFactorySender(req *http.Request) (*http.Response, error)

ListByFactorySender sends the ListByFactory request. The method will close the http.Response Body if it receives an error.

type DayOfWeek

type DayOfWeek string

DayOfWeek enumerates the values for day of week.

const (
	// Friday ...
	Friday DayOfWeek = "Friday"
	// Monday ...
	Monday DayOfWeek = "Monday"
	// Saturday ...
	Saturday DayOfWeek = "Saturday"
	// Sunday ...
	Sunday DayOfWeek = "Sunday"
	// Thursday ...
	Thursday DayOfWeek = "Thursday"
	// Tuesday ...
	Tuesday DayOfWeek = "Tuesday"
	// Wednesday ...
	Wednesday DayOfWeek = "Wednesday"
)

func PossibleDayOfWeekValues

func PossibleDayOfWeekValues() []DayOfWeek

PossibleDayOfWeekValues returns an array of possible values for the DayOfWeek const type.

type DaysOfWeek

type DaysOfWeek string

DaysOfWeek enumerates the values for days of week.

const (
	// DaysOfWeekFriday ...
	DaysOfWeekFriday DaysOfWeek = "Friday"
	// DaysOfWeekMonday ...
	DaysOfWeekMonday DaysOfWeek = "Monday"
	// DaysOfWeekSaturday ...
	DaysOfWeekSaturday DaysOfWeek = "Saturday"
	// DaysOfWeekSunday ...
	DaysOfWeekSunday DaysOfWeek = "Sunday"
	// DaysOfWeekThursday ...
	DaysOfWeekThursday DaysOfWeek = "Thursday"
	// DaysOfWeekTuesday ...
	DaysOfWeekTuesday DaysOfWeek = "Tuesday"
	// DaysOfWeekWednesday ...
	DaysOfWeekWednesday DaysOfWeek = "Wednesday"
)

func PossibleDaysOfWeekValues

func PossibleDaysOfWeekValues() []DaysOfWeek

PossibleDaysOfWeekValues returns an array of possible values for the DaysOfWeek const type.

type Db2AuthenticationType

type Db2AuthenticationType string

Db2AuthenticationType enumerates the values for db 2 authentication type.

const (
	// Basic ...
	Basic Db2AuthenticationType = "Basic"
)

func PossibleDb2AuthenticationTypeValues

func PossibleDb2AuthenticationTypeValues() []Db2AuthenticationType

PossibleDb2AuthenticationTypeValues returns an array of possible values for the Db2AuthenticationType const type.

type Db2LinkedService

type Db2LinkedService struct {
	// Db2LinkedServiceTypeProperties - DB2 linked service properties.
	*Db2LinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

Db2LinkedService linked service for DB2 data source.

func (Db2LinkedService) AsAmazonMWSLinkedService

func (d2ls Db2LinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAmazonRedshiftLinkedService

func (d2ls Db2LinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAmazonS3LinkedService

func (d2ls Db2LinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAzureBatchLinkedService

func (d2ls Db2LinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAzureDataLakeAnalyticsLinkedService

func (d2ls Db2LinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAzureDataLakeStoreLinkedService

func (d2ls Db2LinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAzureDatabricksLinkedService

func (d2ls Db2LinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAzureKeyVaultLinkedService

func (d2ls Db2LinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAzureMLLinkedService

func (d2ls Db2LinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAzureMySQLLinkedService

func (d2ls Db2LinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAzurePostgreSQLLinkedService

func (d2ls Db2LinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAzureSQLDWLinkedService

func (d2ls Db2LinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAzureSQLDatabaseLinkedService

func (d2ls Db2LinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAzureSearchLinkedService

func (d2ls Db2LinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsAzureStorageLinkedService

func (d2ls Db2LinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsBasicLinkedService

func (d2ls Db2LinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsCassandraLinkedService

func (d2ls Db2LinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsConcurLinkedService

func (d2ls Db2LinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsCosmosDbLinkedService

func (d2ls Db2LinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsCouchbaseLinkedService

func (d2ls Db2LinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsCustomDataSourceLinkedService

func (d2ls Db2LinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsDb2LinkedService

func (d2ls Db2LinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsDrillLinkedService

func (d2ls Db2LinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsDynamicsLinkedService

func (d2ls Db2LinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsEloquaLinkedService

func (d2ls Db2LinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsFileServerLinkedService

func (d2ls Db2LinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsFtpServerLinkedService

func (d2ls Db2LinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsGoogleBigQueryLinkedService

func (d2ls Db2LinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsGreenplumLinkedService

func (d2ls Db2LinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsHBaseLinkedService

func (d2ls Db2LinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsHDInsightLinkedService

func (d2ls Db2LinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsHDInsightOnDemandLinkedService

func (d2ls Db2LinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsHTTPLinkedService

func (d2ls Db2LinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsHdfsLinkedService

func (d2ls Db2LinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsHiveLinkedService

func (d2ls Db2LinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsHubspotLinkedService

func (d2ls Db2LinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsImpalaLinkedService

func (d2ls Db2LinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsJiraLinkedService

func (d2ls Db2LinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsLinkedService

func (d2ls Db2LinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsMagentoLinkedService

func (d2ls Db2LinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsMariaDBLinkedService

func (d2ls Db2LinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsMarketoLinkedService

func (d2ls Db2LinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsMongoDbLinkedService

func (d2ls Db2LinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsMySQLLinkedService

func (d2ls Db2LinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsNetezzaLinkedService

func (d2ls Db2LinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsODataLinkedService

func (d2ls Db2LinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsOdbcLinkedService

func (d2ls Db2LinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsOracleLinkedService

func (d2ls Db2LinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsPaypalLinkedService

func (d2ls Db2LinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsPhoenixLinkedService

func (d2ls Db2LinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsPostgreSQLLinkedService

func (d2ls Db2LinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsPrestoLinkedService

func (d2ls Db2LinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsQuickBooksLinkedService

func (d2ls Db2LinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsResponsysLinkedService

func (d2ls Db2LinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsSQLServerLinkedService

func (d2ls Db2LinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsSalesforceLinkedService

func (d2ls Db2LinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsSalesforceMarketingCloudLinkedService

func (d2ls Db2LinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsSapBWLinkedService

func (d2ls Db2LinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsSapCloudForCustomerLinkedService

func (d2ls Db2LinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsSapEccLinkedService

func (d2ls Db2LinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsSapHanaLinkedService

func (d2ls Db2LinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsServiceNowLinkedService

func (d2ls Db2LinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsSftpServerLinkedService

func (d2ls Db2LinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsShopifyLinkedService

func (d2ls Db2LinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsSparkLinkedService

func (d2ls Db2LinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsSquareLinkedService

func (d2ls Db2LinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsSybaseLinkedService

func (d2ls Db2LinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsTeradataLinkedService

func (d2ls Db2LinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsVerticaLinkedService

func (d2ls Db2LinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsWebLinkedService

func (d2ls Db2LinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsXeroLinkedService

func (d2ls Db2LinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) AsZohoLinkedService

func (d2ls Db2LinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for Db2LinkedService.

func (Db2LinkedService) MarshalJSON

func (d2ls Db2LinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for Db2LinkedService.

func (*Db2LinkedService) UnmarshalJSON

func (d2ls *Db2LinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for Db2LinkedService struct.

type Db2LinkedServiceTypeProperties

type Db2LinkedServiceTypeProperties struct {
	// Server - Server name for connection. Type: string (or Expression with resultType string).
	Server interface{} `json:"server,omitempty"`
	// Database - Database name for connection. Type: string (or Expression with resultType string).
	Database interface{} `json:"database,omitempty"`
	// Schema - Schema name for connection. Type: string (or Expression with resultType string).
	Schema interface{} `json:"schema,omitempty"`
	// AuthenticationType - AuthenticationType to be used for connection. Possible values include: 'Basic'
	AuthenticationType Db2AuthenticationType `json:"authenticationType,omitempty"`
	// Username - Username for authentication. Type: string (or Expression with resultType string).
	Username interface{} `json:"username,omitempty"`
	// Password - Password for authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

Db2LinkedServiceTypeProperties dB2 linked service properties.

func (*Db2LinkedServiceTypeProperties) UnmarshalJSON

func (d2lstp *Db2LinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for Db2LinkedServiceTypeProperties struct.

type DependencyCondition

type DependencyCondition string

DependencyCondition enumerates the values for dependency condition.

const (
	// Completed ...
	Completed DependencyCondition = "Completed"
	// Failed ...
	Failed DependencyCondition = "Failed"
	// Skipped ...
	Skipped DependencyCondition = "Skipped"
	// Succeeded ...
	Succeeded DependencyCondition = "Succeeded"
)

func PossibleDependencyConditionValues

func PossibleDependencyConditionValues() []DependencyCondition

PossibleDependencyConditionValues returns an array of possible values for the DependencyCondition const type.

type DistcpSettings

type DistcpSettings struct {
	// ResourceManagerEndpoint - Specifies the Yarn ResourceManager endpoint. Type: string (or Expression with resultType string).
	ResourceManagerEndpoint interface{} `json:"resourceManagerEndpoint,omitempty"`
	// TempScriptPath - Specifies an existing folder path which will be used to store temp Distcp command script. The script file is generated by ADF and will be removed after Copy job finished. Type: string (or Expression with resultType string).
	TempScriptPath interface{} `json:"tempScriptPath,omitempty"`
	// DistcpOptions - Specifies the Distcp options. Type: string (or Expression with resultType string).
	DistcpOptions interface{} `json:"distcpOptions,omitempty"`
}

DistcpSettings distcp settings.

type DocumentDbCollectionDataset

type DocumentDbCollectionDataset struct {
	// DocumentDbCollectionDatasetTypeProperties - DocumentDB Collection dataset properties.
	*DocumentDbCollectionDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

DocumentDbCollectionDataset microsoft Azure Document Database Collection dataset.

func (DocumentDbCollectionDataset) AsAmazonMWSObjectDataset

func (ddcd DocumentDbCollectionDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsAmazonS3Dataset

func (ddcd DocumentDbCollectionDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsAzureBlobDataset

func (ddcd DocumentDbCollectionDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsAzureDataLakeStoreDataset

func (ddcd DocumentDbCollectionDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsAzureMySQLTableDataset

func (ddcd DocumentDbCollectionDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsAzurePostgreSQLTableDataset

func (ddcd DocumentDbCollectionDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsAzureSQLDWTableDataset

func (ddcd DocumentDbCollectionDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsAzureSQLTableDataset

func (ddcd DocumentDbCollectionDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsAzureSearchIndexDataset

func (ddcd DocumentDbCollectionDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsAzureTableDataset

func (ddcd DocumentDbCollectionDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsBasicDataset

func (ddcd DocumentDbCollectionDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsCassandraTableDataset

func (ddcd DocumentDbCollectionDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsConcurObjectDataset

func (ddcd DocumentDbCollectionDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsCouchbaseTableDataset

func (ddcd DocumentDbCollectionDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsCustomDataset

func (ddcd DocumentDbCollectionDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsDataset

func (ddcd DocumentDbCollectionDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsDocumentDbCollectionDataset

func (ddcd DocumentDbCollectionDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsDrillTableDataset

func (ddcd DocumentDbCollectionDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsDynamicsEntityDataset

func (ddcd DocumentDbCollectionDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsEloquaObjectDataset

func (ddcd DocumentDbCollectionDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsFileShareDataset

func (ddcd DocumentDbCollectionDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsGoogleBigQueryObjectDataset

func (ddcd DocumentDbCollectionDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsGreenplumTableDataset

func (ddcd DocumentDbCollectionDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsHBaseObjectDataset

func (ddcd DocumentDbCollectionDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsHTTPDataset

func (ddcd DocumentDbCollectionDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsHiveObjectDataset

func (ddcd DocumentDbCollectionDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsHubspotObjectDataset

func (ddcd DocumentDbCollectionDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsImpalaObjectDataset

func (ddcd DocumentDbCollectionDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsJiraObjectDataset

func (ddcd DocumentDbCollectionDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsMagentoObjectDataset

func (ddcd DocumentDbCollectionDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsMariaDBTableDataset

func (ddcd DocumentDbCollectionDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsMarketoObjectDataset

func (ddcd DocumentDbCollectionDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsMongoDbCollectionDataset

func (ddcd DocumentDbCollectionDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsNetezzaTableDataset

func (ddcd DocumentDbCollectionDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsODataResourceDataset

func (ddcd DocumentDbCollectionDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsOracleTableDataset

func (ddcd DocumentDbCollectionDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsPaypalObjectDataset

func (ddcd DocumentDbCollectionDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsPhoenixObjectDataset

func (ddcd DocumentDbCollectionDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsPrestoObjectDataset

func (ddcd DocumentDbCollectionDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsQuickBooksObjectDataset

func (ddcd DocumentDbCollectionDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsRelationalTableDataset

func (ddcd DocumentDbCollectionDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsResponsysObjectDataset

func (ddcd DocumentDbCollectionDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsSQLServerTableDataset

func (ddcd DocumentDbCollectionDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsSalesforceMarketingCloudObjectDataset

func (ddcd DocumentDbCollectionDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsSalesforceObjectDataset

func (ddcd DocumentDbCollectionDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsSapCloudForCustomerResourceDataset

func (ddcd DocumentDbCollectionDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsSapEccResourceDataset

func (ddcd DocumentDbCollectionDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsServiceNowObjectDataset

func (ddcd DocumentDbCollectionDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsShopifyObjectDataset

func (ddcd DocumentDbCollectionDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsSparkObjectDataset

func (ddcd DocumentDbCollectionDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsSquareObjectDataset

func (ddcd DocumentDbCollectionDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsVerticaTableDataset

func (ddcd DocumentDbCollectionDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsWebTableDataset

func (ddcd DocumentDbCollectionDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsXeroObjectDataset

func (ddcd DocumentDbCollectionDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) AsZohoObjectDataset

func (ddcd DocumentDbCollectionDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for DocumentDbCollectionDataset.

func (DocumentDbCollectionDataset) MarshalJSON

func (ddcd DocumentDbCollectionDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DocumentDbCollectionDataset.

func (*DocumentDbCollectionDataset) UnmarshalJSON

func (ddcd *DocumentDbCollectionDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for DocumentDbCollectionDataset struct.

type DocumentDbCollectionDatasetTypeProperties

type DocumentDbCollectionDatasetTypeProperties struct {
	// CollectionName - Document Database collection name. Type: string (or Expression with resultType string).
	CollectionName interface{} `json:"collectionName,omitempty"`
}

DocumentDbCollectionDatasetTypeProperties documentDB Collection dataset properties.

type DocumentDbCollectionSink

type DocumentDbCollectionSink struct {
	// NestingSeparator - Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
	NestingSeparator interface{} `json:"nestingSeparator,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

DocumentDbCollectionSink a copy activity Document Database Collection sink.

func (DocumentDbCollectionSink) AsAzureDataLakeStoreSink

func (ddcs DocumentDbCollectionSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsAzureQueueSink

func (ddcs DocumentDbCollectionSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsAzureSearchIndexSink

func (ddcs DocumentDbCollectionSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsAzureTableSink

func (ddcs DocumentDbCollectionSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsBasicCopySink

func (ddcs DocumentDbCollectionSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsBlobSink

func (ddcs DocumentDbCollectionSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsCopySink

func (ddcs DocumentDbCollectionSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsDocumentDbCollectionSink

func (ddcs DocumentDbCollectionSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsDynamicsSink

func (ddcs DocumentDbCollectionSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsFileSystemSink

func (ddcs DocumentDbCollectionSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsOdbcSink

func (ddcs DocumentDbCollectionSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsOracleSink

func (ddcs DocumentDbCollectionSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsSQLDWSink

func (ddcs DocumentDbCollectionSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsSQLSink

func (ddcs DocumentDbCollectionSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsSalesforceSink

func (ddcs DocumentDbCollectionSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) AsSapCloudForCustomerSink

func (ddcs DocumentDbCollectionSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for DocumentDbCollectionSink.

func (DocumentDbCollectionSink) MarshalJSON

func (ddcs DocumentDbCollectionSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DocumentDbCollectionSink.

type DocumentDbCollectionSource

type DocumentDbCollectionSource struct {
	// Query - Documents query. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// NestingSeparator - Nested properties separator. Type: string (or Expression with resultType string).
	NestingSeparator interface{} `json:"nestingSeparator,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

DocumentDbCollectionSource a copy activity Document Database Collection source.

func (DocumentDbCollectionSource) AsAmazonMWSSource

func (ddcs DocumentDbCollectionSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsAmazonRedshiftSource

func (ddcs DocumentDbCollectionSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsAzureDataLakeStoreSource

func (ddcs DocumentDbCollectionSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsAzureMySQLSource

func (ddcs DocumentDbCollectionSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsAzurePostgreSQLSource

func (ddcs DocumentDbCollectionSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsAzureTableSource

func (ddcs DocumentDbCollectionSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsBasicCopySource

func (ddcs DocumentDbCollectionSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsBlobSource

func (ddcs DocumentDbCollectionSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsCassandraSource

func (ddcs DocumentDbCollectionSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsConcurSource

func (ddcs DocumentDbCollectionSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsCopySource

func (ddcs DocumentDbCollectionSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsCouchbaseSource

func (ddcs DocumentDbCollectionSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsDocumentDbCollectionSource

func (ddcs DocumentDbCollectionSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsDrillSource

func (ddcs DocumentDbCollectionSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsDynamicsSource

func (ddcs DocumentDbCollectionSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsEloquaSource

func (ddcs DocumentDbCollectionSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsFileSystemSource

func (ddcs DocumentDbCollectionSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsGoogleBigQuerySource

func (ddcs DocumentDbCollectionSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsGreenplumSource

func (ddcs DocumentDbCollectionSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsHBaseSource

func (ddcs DocumentDbCollectionSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsHTTPSource

func (ddcs DocumentDbCollectionSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsHdfsSource

func (ddcs DocumentDbCollectionSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsHiveSource

func (ddcs DocumentDbCollectionSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsHubspotSource

func (ddcs DocumentDbCollectionSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsImpalaSource

func (ddcs DocumentDbCollectionSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsJiraSource

func (ddcs DocumentDbCollectionSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsMagentoSource

func (ddcs DocumentDbCollectionSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsMariaDBSource

func (ddcs DocumentDbCollectionSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsMarketoSource

func (ddcs DocumentDbCollectionSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsMongoDbSource

func (ddcs DocumentDbCollectionSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsNetezzaSource

func (ddcs DocumentDbCollectionSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsOracleSource

func (ddcs DocumentDbCollectionSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsPaypalSource

func (ddcs DocumentDbCollectionSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsPhoenixSource

func (ddcs DocumentDbCollectionSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsPrestoSource

func (ddcs DocumentDbCollectionSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsQuickBooksSource

func (ddcs DocumentDbCollectionSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsRelationalSource

func (ddcs DocumentDbCollectionSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsResponsysSource

func (ddcs DocumentDbCollectionSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsSQLDWSource

func (ddcs DocumentDbCollectionSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsSQLSource

func (ddcs DocumentDbCollectionSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsSalesforceMarketingCloudSource

func (ddcs DocumentDbCollectionSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsSalesforceSource

func (ddcs DocumentDbCollectionSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsSapCloudForCustomerSource

func (ddcs DocumentDbCollectionSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsSapEccSource

func (ddcs DocumentDbCollectionSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsServiceNowSource

func (ddcs DocumentDbCollectionSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsShopifySource

func (ddcs DocumentDbCollectionSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsSparkSource

func (ddcs DocumentDbCollectionSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsSquareSource

func (ddcs DocumentDbCollectionSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsVerticaSource

func (ddcs DocumentDbCollectionSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsWebSource

func (ddcs DocumentDbCollectionSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsXeroSource

func (ddcs DocumentDbCollectionSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) AsZohoSource

func (ddcs DocumentDbCollectionSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for DocumentDbCollectionSource.

func (DocumentDbCollectionSource) MarshalJSON

func (ddcs DocumentDbCollectionSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DocumentDbCollectionSource.

type DrillLinkedService

type DrillLinkedService struct {
	// DrillLinkedServiceTypeProperties - Drill server linked service properties.
	*DrillLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

DrillLinkedService drill server linked service.

func (DrillLinkedService) AsAmazonMWSLinkedService

func (dls DrillLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAmazonRedshiftLinkedService

func (dls DrillLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAmazonS3LinkedService

func (dls DrillLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAzureBatchLinkedService

func (dls DrillLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (dls DrillLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAzureDataLakeStoreLinkedService

func (dls DrillLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAzureDatabricksLinkedService

func (dls DrillLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAzureKeyVaultLinkedService

func (dls DrillLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAzureMLLinkedService

func (dls DrillLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAzureMySQLLinkedService

func (dls DrillLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAzurePostgreSQLLinkedService

func (dls DrillLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAzureSQLDWLinkedService

func (dls DrillLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAzureSQLDatabaseLinkedService

func (dls DrillLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAzureSearchLinkedService

func (dls DrillLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsAzureStorageLinkedService

func (dls DrillLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsBasicLinkedService

func (dls DrillLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsCassandraLinkedService

func (dls DrillLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsConcurLinkedService

func (dls DrillLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsCosmosDbLinkedService

func (dls DrillLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsCouchbaseLinkedService

func (dls DrillLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsCustomDataSourceLinkedService

func (dls DrillLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsDb2LinkedService

func (dls DrillLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsDrillLinkedService

func (dls DrillLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsDynamicsLinkedService

func (dls DrillLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsEloquaLinkedService

func (dls DrillLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsFileServerLinkedService

func (dls DrillLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsFtpServerLinkedService

func (dls DrillLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsGoogleBigQueryLinkedService

func (dls DrillLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsGreenplumLinkedService

func (dls DrillLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsHBaseLinkedService

func (dls DrillLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsHDInsightLinkedService

func (dls DrillLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsHDInsightOnDemandLinkedService

func (dls DrillLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsHTTPLinkedService

func (dls DrillLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsHdfsLinkedService

func (dls DrillLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsHiveLinkedService

func (dls DrillLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsHubspotLinkedService

func (dls DrillLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsImpalaLinkedService

func (dls DrillLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsJiraLinkedService

func (dls DrillLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsLinkedService

func (dls DrillLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsMagentoLinkedService

func (dls DrillLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsMariaDBLinkedService

func (dls DrillLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsMarketoLinkedService

func (dls DrillLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsMongoDbLinkedService

func (dls DrillLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsMySQLLinkedService

func (dls DrillLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsNetezzaLinkedService

func (dls DrillLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsODataLinkedService

func (dls DrillLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsOdbcLinkedService

func (dls DrillLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsOracleLinkedService

func (dls DrillLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsPaypalLinkedService

func (dls DrillLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsPhoenixLinkedService

func (dls DrillLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsPostgreSQLLinkedService

func (dls DrillLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsPrestoLinkedService

func (dls DrillLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsQuickBooksLinkedService

func (dls DrillLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsResponsysLinkedService

func (dls DrillLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsSQLServerLinkedService

func (dls DrillLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsSalesforceLinkedService

func (dls DrillLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsSalesforceMarketingCloudLinkedService

func (dls DrillLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsSapBWLinkedService

func (dls DrillLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsSapCloudForCustomerLinkedService

func (dls DrillLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsSapEccLinkedService

func (dls DrillLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsSapHanaLinkedService

func (dls DrillLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsServiceNowLinkedService

func (dls DrillLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsSftpServerLinkedService

func (dls DrillLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsShopifyLinkedService

func (dls DrillLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsSparkLinkedService

func (dls DrillLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsSquareLinkedService

func (dls DrillLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsSybaseLinkedService

func (dls DrillLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsTeradataLinkedService

func (dls DrillLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsVerticaLinkedService

func (dls DrillLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsWebLinkedService

func (dls DrillLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsXeroLinkedService

func (dls DrillLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) AsZohoLinkedService

func (dls DrillLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for DrillLinkedService.

func (DrillLinkedService) MarshalJSON

func (dls DrillLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DrillLinkedService.

func (*DrillLinkedService) UnmarshalJSON

func (dls *DrillLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for DrillLinkedService struct.

type DrillLinkedServiceTypeProperties

type DrillLinkedServiceTypeProperties struct {
	// ConnectionString - An ODBC connection string.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

DrillLinkedServiceTypeProperties drill server linked service properties.

func (*DrillLinkedServiceTypeProperties) UnmarshalJSON

func (dlstp *DrillLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for DrillLinkedServiceTypeProperties struct.

type DrillSource

type DrillSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

DrillSource a copy activity Drill server source.

func (DrillSource) AsAmazonMWSSource

func (ds DrillSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsAmazonRedshiftSource

func (ds DrillSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsAzureDataLakeStoreSource

func (ds DrillSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsAzureMySQLSource

func (ds DrillSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsAzurePostgreSQLSource

func (ds DrillSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsAzureTableSource

func (ds DrillSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsBasicCopySource

func (ds DrillSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsBlobSource

func (ds DrillSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsCassandraSource

func (ds DrillSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsConcurSource

func (ds DrillSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsCopySource

func (ds DrillSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsCouchbaseSource

func (ds DrillSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsDocumentDbCollectionSource

func (ds DrillSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsDrillSource

func (ds DrillSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsDynamicsSource

func (ds DrillSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsEloquaSource

func (ds DrillSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsFileSystemSource

func (ds DrillSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsGoogleBigQuerySource

func (ds DrillSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsGreenplumSource

func (ds DrillSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsHBaseSource

func (ds DrillSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsHTTPSource

func (ds DrillSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsHdfsSource

func (ds DrillSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsHiveSource

func (ds DrillSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsHubspotSource

func (ds DrillSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsImpalaSource

func (ds DrillSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsJiraSource

func (ds DrillSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsMagentoSource

func (ds DrillSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsMariaDBSource

func (ds DrillSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsMarketoSource

func (ds DrillSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsMongoDbSource

func (ds DrillSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsNetezzaSource

func (ds DrillSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsOracleSource

func (ds DrillSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsPaypalSource

func (ds DrillSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsPhoenixSource

func (ds DrillSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsPrestoSource

func (ds DrillSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsQuickBooksSource

func (ds DrillSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsRelationalSource

func (ds DrillSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsResponsysSource

func (ds DrillSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsSQLDWSource

func (ds DrillSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsSQLSource

func (ds DrillSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsSalesforceMarketingCloudSource

func (ds DrillSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsSalesforceSource

func (ds DrillSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsSapCloudForCustomerSource

func (ds DrillSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsSapEccSource

func (ds DrillSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsServiceNowSource

func (ds DrillSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsShopifySource

func (ds DrillSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsSparkSource

func (ds DrillSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsSquareSource

func (ds DrillSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsVerticaSource

func (ds DrillSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsWebSource

func (ds DrillSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsXeroSource

func (ds DrillSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) AsZohoSource

func (ds DrillSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for DrillSource.

func (DrillSource) MarshalJSON

func (ds DrillSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DrillSource.

type DrillTableDataset

type DrillTableDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

DrillTableDataset drill server dataset.

func (DrillTableDataset) AsAmazonMWSObjectDataset

func (dtd DrillTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsAmazonS3Dataset

func (dtd DrillTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsAzureBlobDataset

func (dtd DrillTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsAzureDataLakeStoreDataset

func (dtd DrillTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsAzureMySQLTableDataset

func (dtd DrillTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsAzurePostgreSQLTableDataset

func (dtd DrillTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsAzureSQLDWTableDataset

func (dtd DrillTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsAzureSQLTableDataset

func (dtd DrillTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsAzureSearchIndexDataset

func (dtd DrillTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsAzureTableDataset

func (dtd DrillTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsBasicDataset

func (dtd DrillTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsCassandraTableDataset

func (dtd DrillTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsConcurObjectDataset

func (dtd DrillTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsCouchbaseTableDataset

func (dtd DrillTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsCustomDataset

func (dtd DrillTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsDataset

func (dtd DrillTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsDocumentDbCollectionDataset

func (dtd DrillTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsDrillTableDataset

func (dtd DrillTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsDynamicsEntityDataset

func (dtd DrillTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsEloquaObjectDataset

func (dtd DrillTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsFileShareDataset

func (dtd DrillTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsGoogleBigQueryObjectDataset

func (dtd DrillTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsGreenplumTableDataset

func (dtd DrillTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsHBaseObjectDataset

func (dtd DrillTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsHTTPDataset

func (dtd DrillTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsHiveObjectDataset

func (dtd DrillTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsHubspotObjectDataset

func (dtd DrillTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsImpalaObjectDataset

func (dtd DrillTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsJiraObjectDataset

func (dtd DrillTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsMagentoObjectDataset

func (dtd DrillTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsMariaDBTableDataset

func (dtd DrillTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsMarketoObjectDataset

func (dtd DrillTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsMongoDbCollectionDataset

func (dtd DrillTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsNetezzaTableDataset

func (dtd DrillTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsODataResourceDataset

func (dtd DrillTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsOracleTableDataset

func (dtd DrillTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsPaypalObjectDataset

func (dtd DrillTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsPhoenixObjectDataset

func (dtd DrillTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsPrestoObjectDataset

func (dtd DrillTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsQuickBooksObjectDataset

func (dtd DrillTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsRelationalTableDataset

func (dtd DrillTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsResponsysObjectDataset

func (dtd DrillTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsSQLServerTableDataset

func (dtd DrillTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsSalesforceMarketingCloudObjectDataset

func (dtd DrillTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsSalesforceObjectDataset

func (dtd DrillTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsSapCloudForCustomerResourceDataset

func (dtd DrillTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsSapEccResourceDataset

func (dtd DrillTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsServiceNowObjectDataset

func (dtd DrillTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsShopifyObjectDataset

func (dtd DrillTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsSparkObjectDataset

func (dtd DrillTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsSquareObjectDataset

func (dtd DrillTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsVerticaTableDataset

func (dtd DrillTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsWebTableDataset

func (dtd DrillTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsXeroObjectDataset

func (dtd DrillTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) AsZohoObjectDataset

func (dtd DrillTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for DrillTableDataset.

func (DrillTableDataset) MarshalJSON

func (dtd DrillTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DrillTableDataset.

type DynamicsEntityDataset

type DynamicsEntityDataset struct {
	// DynamicsEntityDatasetTypeProperties - Dynamics entity dataset properties.
	*DynamicsEntityDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

DynamicsEntityDataset the Dynamics entity dataset.

func (DynamicsEntityDataset) AsAmazonMWSObjectDataset

func (ded DynamicsEntityDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsAmazonS3Dataset

func (ded DynamicsEntityDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsAzureBlobDataset

func (ded DynamicsEntityDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsAzureDataLakeStoreDataset

func (ded DynamicsEntityDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsAzureMySQLTableDataset

func (ded DynamicsEntityDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsAzurePostgreSQLTableDataset

func (ded DynamicsEntityDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsAzureSQLDWTableDataset

func (ded DynamicsEntityDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsAzureSQLTableDataset

func (ded DynamicsEntityDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsAzureSearchIndexDataset

func (ded DynamicsEntityDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsAzureTableDataset

func (ded DynamicsEntityDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsBasicDataset

func (ded DynamicsEntityDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsCassandraTableDataset

func (ded DynamicsEntityDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsConcurObjectDataset

func (ded DynamicsEntityDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsCouchbaseTableDataset

func (ded DynamicsEntityDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsCustomDataset

func (ded DynamicsEntityDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsDataset

func (ded DynamicsEntityDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsDocumentDbCollectionDataset

func (ded DynamicsEntityDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsDrillTableDataset

func (ded DynamicsEntityDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsDynamicsEntityDataset

func (ded DynamicsEntityDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsEloquaObjectDataset

func (ded DynamicsEntityDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsFileShareDataset

func (ded DynamicsEntityDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsGoogleBigQueryObjectDataset

func (ded DynamicsEntityDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsGreenplumTableDataset

func (ded DynamicsEntityDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsHBaseObjectDataset

func (ded DynamicsEntityDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsHTTPDataset

func (ded DynamicsEntityDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsHiveObjectDataset

func (ded DynamicsEntityDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsHubspotObjectDataset

func (ded DynamicsEntityDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsImpalaObjectDataset

func (ded DynamicsEntityDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsJiraObjectDataset

func (ded DynamicsEntityDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsMagentoObjectDataset

func (ded DynamicsEntityDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsMariaDBTableDataset

func (ded DynamicsEntityDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsMarketoObjectDataset

func (ded DynamicsEntityDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsMongoDbCollectionDataset

func (ded DynamicsEntityDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsNetezzaTableDataset

func (ded DynamicsEntityDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsODataResourceDataset

func (ded DynamicsEntityDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsOracleTableDataset

func (ded DynamicsEntityDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsPaypalObjectDataset

func (ded DynamicsEntityDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsPhoenixObjectDataset

func (ded DynamicsEntityDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsPrestoObjectDataset

func (ded DynamicsEntityDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsQuickBooksObjectDataset

func (ded DynamicsEntityDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsRelationalTableDataset

func (ded DynamicsEntityDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsResponsysObjectDataset

func (ded DynamicsEntityDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsSQLServerTableDataset

func (ded DynamicsEntityDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsSalesforceMarketingCloudObjectDataset

func (ded DynamicsEntityDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsSalesforceObjectDataset

func (ded DynamicsEntityDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsSapCloudForCustomerResourceDataset

func (ded DynamicsEntityDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsSapEccResourceDataset

func (ded DynamicsEntityDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsServiceNowObjectDataset

func (ded DynamicsEntityDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsShopifyObjectDataset

func (ded DynamicsEntityDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsSparkObjectDataset

func (ded DynamicsEntityDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsSquareObjectDataset

func (ded DynamicsEntityDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsVerticaTableDataset

func (ded DynamicsEntityDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsWebTableDataset

func (ded DynamicsEntityDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsXeroObjectDataset

func (ded DynamicsEntityDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) AsZohoObjectDataset

func (ded DynamicsEntityDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for DynamicsEntityDataset.

func (DynamicsEntityDataset) MarshalJSON

func (ded DynamicsEntityDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DynamicsEntityDataset.

func (*DynamicsEntityDataset) UnmarshalJSON

func (ded *DynamicsEntityDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for DynamicsEntityDataset struct.

type DynamicsEntityDatasetTypeProperties

type DynamicsEntityDatasetTypeProperties struct {
	// EntityName - The logical name of the entity. Type: string (or Expression with resultType string).
	EntityName interface{} `json:"entityName,omitempty"`
}

DynamicsEntityDatasetTypeProperties dynamics entity dataset properties.

type DynamicsLinkedService

type DynamicsLinkedService struct {
	// DynamicsLinkedServiceTypeProperties - Dynamics linked service properties.
	*DynamicsLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

DynamicsLinkedService dynamics linked service.

func (DynamicsLinkedService) AsAmazonMWSLinkedService

func (dls DynamicsLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAmazonRedshiftLinkedService

func (dls DynamicsLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAmazonS3LinkedService

func (dls DynamicsLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAzureBatchLinkedService

func (dls DynamicsLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (dls DynamicsLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAzureDataLakeStoreLinkedService

func (dls DynamicsLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAzureDatabricksLinkedService

func (dls DynamicsLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAzureKeyVaultLinkedService

func (dls DynamicsLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAzureMLLinkedService

func (dls DynamicsLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAzureMySQLLinkedService

func (dls DynamicsLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAzurePostgreSQLLinkedService

func (dls DynamicsLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAzureSQLDWLinkedService

func (dls DynamicsLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAzureSQLDatabaseLinkedService

func (dls DynamicsLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAzureSearchLinkedService

func (dls DynamicsLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsAzureStorageLinkedService

func (dls DynamicsLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsBasicLinkedService

func (dls DynamicsLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsCassandraLinkedService

func (dls DynamicsLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsConcurLinkedService

func (dls DynamicsLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsCosmosDbLinkedService

func (dls DynamicsLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsCouchbaseLinkedService

func (dls DynamicsLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsCustomDataSourceLinkedService

func (dls DynamicsLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsDb2LinkedService

func (dls DynamicsLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsDrillLinkedService

func (dls DynamicsLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsDynamicsLinkedService

func (dls DynamicsLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsEloquaLinkedService

func (dls DynamicsLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsFileServerLinkedService

func (dls DynamicsLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsFtpServerLinkedService

func (dls DynamicsLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsGoogleBigQueryLinkedService

func (dls DynamicsLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsGreenplumLinkedService

func (dls DynamicsLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsHBaseLinkedService

func (dls DynamicsLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsHDInsightLinkedService

func (dls DynamicsLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsHDInsightOnDemandLinkedService

func (dls DynamicsLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsHTTPLinkedService

func (dls DynamicsLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsHdfsLinkedService

func (dls DynamicsLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsHiveLinkedService

func (dls DynamicsLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsHubspotLinkedService

func (dls DynamicsLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsImpalaLinkedService

func (dls DynamicsLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsJiraLinkedService

func (dls DynamicsLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsLinkedService

func (dls DynamicsLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsMagentoLinkedService

func (dls DynamicsLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsMariaDBLinkedService

func (dls DynamicsLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsMarketoLinkedService

func (dls DynamicsLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsMongoDbLinkedService

func (dls DynamicsLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsMySQLLinkedService

func (dls DynamicsLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsNetezzaLinkedService

func (dls DynamicsLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsODataLinkedService

func (dls DynamicsLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsOdbcLinkedService

func (dls DynamicsLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsOracleLinkedService

func (dls DynamicsLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsPaypalLinkedService

func (dls DynamicsLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsPhoenixLinkedService

func (dls DynamicsLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsPostgreSQLLinkedService

func (dls DynamicsLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsPrestoLinkedService

func (dls DynamicsLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsQuickBooksLinkedService

func (dls DynamicsLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsResponsysLinkedService

func (dls DynamicsLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsSQLServerLinkedService

func (dls DynamicsLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsSalesforceLinkedService

func (dls DynamicsLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsSalesforceMarketingCloudLinkedService

func (dls DynamicsLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsSapBWLinkedService

func (dls DynamicsLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsSapCloudForCustomerLinkedService

func (dls DynamicsLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsSapEccLinkedService

func (dls DynamicsLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsSapHanaLinkedService

func (dls DynamicsLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsServiceNowLinkedService

func (dls DynamicsLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsSftpServerLinkedService

func (dls DynamicsLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsShopifyLinkedService

func (dls DynamicsLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsSparkLinkedService

func (dls DynamicsLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsSquareLinkedService

func (dls DynamicsLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsSybaseLinkedService

func (dls DynamicsLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsTeradataLinkedService

func (dls DynamicsLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsVerticaLinkedService

func (dls DynamicsLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsWebLinkedService

func (dls DynamicsLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsXeroLinkedService

func (dls DynamicsLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) AsZohoLinkedService

func (dls DynamicsLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for DynamicsLinkedService.

func (DynamicsLinkedService) MarshalJSON

func (dls DynamicsLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DynamicsLinkedService.

func (*DynamicsLinkedService) UnmarshalJSON

func (dls *DynamicsLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for DynamicsLinkedService struct.

type DynamicsLinkedServiceTypeProperties

type DynamicsLinkedServiceTypeProperties struct {
	// DeploymentType - The deployment type of the Dynamics instance. 'Online' for Dynamics Online and 'OnPremisesWithIfd' for Dynamics on-premises with Ifd. Type: string (or Expression with resultType string).
	DeploymentType interface{} `json:"deploymentType,omitempty"`
	// HostName - The host name of the on-premises Dynamics server. The property is required for on-prem and not allowed for online. Type: string (or Expression with resultType string).
	HostName interface{} `json:"hostName,omitempty"`
	// Port - The port of on-premises Dynamics server. The property is required for on-prem and not allowed for online. Default is 443. Type: integer (or Expression with resultType integer), minimum: 0.
	Port interface{} `json:"port,omitempty"`
	// ServiceURI - The URL to the Microsoft Dynamics server. The property is required for on-line and not allowed for on-prem. Type: string (or Expression with resultType string).
	ServiceURI interface{} `json:"serviceUri,omitempty"`
	// OrganizationName - The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string).
	OrganizationName interface{} `json:"organizationName,omitempty"`
	// AuthenticationType - The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. Type: string (or Expression with resultType string).
	AuthenticationType interface{} `json:"authenticationType,omitempty"`
	// Username - User name to access the Dynamics instance. Type: string (or Expression with resultType string).
	Username interface{} `json:"username,omitempty"`
	// Password - Password to access the Dynamics instance.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

DynamicsLinkedServiceTypeProperties dynamics linked service properties.

func (*DynamicsLinkedServiceTypeProperties) UnmarshalJSON

func (dlstp *DynamicsLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for DynamicsLinkedServiceTypeProperties struct.

type DynamicsSink

type DynamicsSink struct {
	// WriteBehavior - The write behavior for the operation.
	WriteBehavior *string `json:"writeBehavior,omitempty"`
	// IgnoreNullValues - The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
	IgnoreNullValues interface{} `json:"ignoreNullValues,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

DynamicsSink a copy activity Dynamics sink.

func (DynamicsSink) AsAzureDataLakeStoreSink

func (ds DynamicsSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsAzureQueueSink

func (ds DynamicsSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsAzureSearchIndexSink

func (ds DynamicsSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsAzureTableSink

func (ds DynamicsSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsBasicCopySink

func (ds DynamicsSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsBlobSink

func (ds DynamicsSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsCopySink

func (ds DynamicsSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsDocumentDbCollectionSink

func (ds DynamicsSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsDynamicsSink

func (ds DynamicsSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsFileSystemSink

func (ds DynamicsSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsOdbcSink

func (ds DynamicsSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsOracleSink

func (ds DynamicsSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsSQLDWSink

func (ds DynamicsSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsSQLSink

func (ds DynamicsSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsSalesforceSink

func (ds DynamicsSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) AsSapCloudForCustomerSink

func (ds DynamicsSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for DynamicsSink.

func (DynamicsSink) MarshalJSON

func (ds DynamicsSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DynamicsSink.

type DynamicsSource

type DynamicsSource struct {
	// Query - FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

DynamicsSource a copy activity Dynamics source.

func (DynamicsSource) AsAmazonMWSSource

func (ds DynamicsSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsAmazonRedshiftSource

func (ds DynamicsSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsAzureDataLakeStoreSource

func (ds DynamicsSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsAzureMySQLSource

func (ds DynamicsSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsAzurePostgreSQLSource

func (ds DynamicsSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsAzureTableSource

func (ds DynamicsSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsBasicCopySource

func (ds DynamicsSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsBlobSource

func (ds DynamicsSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsCassandraSource

func (ds DynamicsSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsConcurSource

func (ds DynamicsSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsCopySource

func (ds DynamicsSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsCouchbaseSource

func (ds DynamicsSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsDocumentDbCollectionSource

func (ds DynamicsSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsDrillSource

func (ds DynamicsSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsDynamicsSource

func (ds DynamicsSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsEloquaSource

func (ds DynamicsSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsFileSystemSource

func (ds DynamicsSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsGoogleBigQuerySource

func (ds DynamicsSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsGreenplumSource

func (ds DynamicsSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsHBaseSource

func (ds DynamicsSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsHTTPSource

func (ds DynamicsSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsHdfsSource

func (ds DynamicsSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsHiveSource

func (ds DynamicsSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsHubspotSource

func (ds DynamicsSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsImpalaSource

func (ds DynamicsSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsJiraSource

func (ds DynamicsSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsMagentoSource

func (ds DynamicsSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsMariaDBSource

func (ds DynamicsSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsMarketoSource

func (ds DynamicsSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsMongoDbSource

func (ds DynamicsSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsNetezzaSource

func (ds DynamicsSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsOracleSource

func (ds DynamicsSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsPaypalSource

func (ds DynamicsSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsPhoenixSource

func (ds DynamicsSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsPrestoSource

func (ds DynamicsSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsQuickBooksSource

func (ds DynamicsSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsRelationalSource

func (ds DynamicsSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsResponsysSource

func (ds DynamicsSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsSQLDWSource

func (ds DynamicsSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsSQLSource

func (ds DynamicsSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsSalesforceMarketingCloudSource

func (ds DynamicsSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsSalesforceSource

func (ds DynamicsSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsSapCloudForCustomerSource

func (ds DynamicsSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsSapEccSource

func (ds DynamicsSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsServiceNowSource

func (ds DynamicsSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsShopifySource

func (ds DynamicsSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsSparkSource

func (ds DynamicsSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsSquareSource

func (ds DynamicsSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsVerticaSource

func (ds DynamicsSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsWebSource

func (ds DynamicsSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsXeroSource

func (ds DynamicsSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) AsZohoSource

func (ds DynamicsSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for DynamicsSource.

func (DynamicsSource) MarshalJSON

func (ds DynamicsSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for DynamicsSource.

type EloquaLinkedService

type EloquaLinkedService struct {
	// EloquaLinkedServiceTypeProperties - Eloqua server linked service properties.
	*EloquaLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

EloquaLinkedService eloqua server linked service.

func (EloquaLinkedService) AsAmazonMWSLinkedService

func (els EloquaLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAmazonRedshiftLinkedService

func (els EloquaLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAmazonS3LinkedService

func (els EloquaLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAzureBatchLinkedService

func (els EloquaLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (els EloquaLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAzureDataLakeStoreLinkedService

func (els EloquaLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAzureDatabricksLinkedService

func (els EloquaLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAzureKeyVaultLinkedService

func (els EloquaLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAzureMLLinkedService

func (els EloquaLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAzureMySQLLinkedService

func (els EloquaLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAzurePostgreSQLLinkedService

func (els EloquaLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAzureSQLDWLinkedService

func (els EloquaLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAzureSQLDatabaseLinkedService

func (els EloquaLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAzureSearchLinkedService

func (els EloquaLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsAzureStorageLinkedService

func (els EloquaLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsBasicLinkedService

func (els EloquaLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsCassandraLinkedService

func (els EloquaLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsConcurLinkedService

func (els EloquaLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsCosmosDbLinkedService

func (els EloquaLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsCouchbaseLinkedService

func (els EloquaLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsCustomDataSourceLinkedService

func (els EloquaLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsDb2LinkedService

func (els EloquaLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsDrillLinkedService

func (els EloquaLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsDynamicsLinkedService

func (els EloquaLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsEloquaLinkedService

func (els EloquaLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsFileServerLinkedService

func (els EloquaLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsFtpServerLinkedService

func (els EloquaLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsGoogleBigQueryLinkedService

func (els EloquaLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsGreenplumLinkedService

func (els EloquaLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsHBaseLinkedService

func (els EloquaLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsHDInsightLinkedService

func (els EloquaLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsHDInsightOnDemandLinkedService

func (els EloquaLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsHTTPLinkedService

func (els EloquaLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsHdfsLinkedService

func (els EloquaLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsHiveLinkedService

func (els EloquaLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsHubspotLinkedService

func (els EloquaLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsImpalaLinkedService

func (els EloquaLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsJiraLinkedService

func (els EloquaLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsLinkedService

func (els EloquaLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsMagentoLinkedService

func (els EloquaLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsMariaDBLinkedService

func (els EloquaLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsMarketoLinkedService

func (els EloquaLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsMongoDbLinkedService

func (els EloquaLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsMySQLLinkedService

func (els EloquaLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsNetezzaLinkedService

func (els EloquaLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsODataLinkedService

func (els EloquaLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsOdbcLinkedService

func (els EloquaLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsOracleLinkedService

func (els EloquaLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsPaypalLinkedService

func (els EloquaLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsPhoenixLinkedService

func (els EloquaLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsPostgreSQLLinkedService

func (els EloquaLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsPrestoLinkedService

func (els EloquaLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsQuickBooksLinkedService

func (els EloquaLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsResponsysLinkedService

func (els EloquaLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsSQLServerLinkedService

func (els EloquaLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsSalesforceLinkedService

func (els EloquaLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsSalesforceMarketingCloudLinkedService

func (els EloquaLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsSapBWLinkedService

func (els EloquaLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsSapCloudForCustomerLinkedService

func (els EloquaLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsSapEccLinkedService

func (els EloquaLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsSapHanaLinkedService

func (els EloquaLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsServiceNowLinkedService

func (els EloquaLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsSftpServerLinkedService

func (els EloquaLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsShopifyLinkedService

func (els EloquaLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsSparkLinkedService

func (els EloquaLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsSquareLinkedService

func (els EloquaLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsSybaseLinkedService

func (els EloquaLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsTeradataLinkedService

func (els EloquaLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsVerticaLinkedService

func (els EloquaLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsWebLinkedService

func (els EloquaLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsXeroLinkedService

func (els EloquaLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) AsZohoLinkedService

func (els EloquaLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for EloquaLinkedService.

func (EloquaLinkedService) MarshalJSON

func (els EloquaLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for EloquaLinkedService.

func (*EloquaLinkedService) UnmarshalJSON

func (els *EloquaLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for EloquaLinkedService struct.

type EloquaLinkedServiceTypeProperties

type EloquaLinkedServiceTypeProperties struct {
	// Endpoint - The endpoint of the Eloqua server. (i.e. eloqua.example.com)
	Endpoint interface{} `json:"endpoint,omitempty"`
	// Username - The site name and user name of your Eloqua account in the form: sitename/username. (i.e. Eloqua/Alice)
	Username interface{} `json:"username,omitempty"`
	// Password - The password corresponding to the user name.
	Password BasicSecretBase `json:"password,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

EloquaLinkedServiceTypeProperties eloqua server linked service properties.

func (*EloquaLinkedServiceTypeProperties) UnmarshalJSON

func (elstp *EloquaLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for EloquaLinkedServiceTypeProperties struct.

type EloquaObjectDataset

type EloquaObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

EloquaObjectDataset eloqua server dataset.

func (EloquaObjectDataset) AsAmazonMWSObjectDataset

func (eod EloquaObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsAmazonS3Dataset

func (eod EloquaObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsAzureBlobDataset

func (eod EloquaObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsAzureDataLakeStoreDataset

func (eod EloquaObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsAzureMySQLTableDataset

func (eod EloquaObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsAzurePostgreSQLTableDataset

func (eod EloquaObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsAzureSQLDWTableDataset

func (eod EloquaObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsAzureSQLTableDataset

func (eod EloquaObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsAzureSearchIndexDataset

func (eod EloquaObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsAzureTableDataset

func (eod EloquaObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsBasicDataset

func (eod EloquaObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsCassandraTableDataset

func (eod EloquaObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsConcurObjectDataset

func (eod EloquaObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsCouchbaseTableDataset

func (eod EloquaObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsCustomDataset

func (eod EloquaObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsDataset

func (eod EloquaObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsDocumentDbCollectionDataset

func (eod EloquaObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsDrillTableDataset

func (eod EloquaObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsDynamicsEntityDataset

func (eod EloquaObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsEloquaObjectDataset

func (eod EloquaObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsFileShareDataset

func (eod EloquaObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsGoogleBigQueryObjectDataset

func (eod EloquaObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsGreenplumTableDataset

func (eod EloquaObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsHBaseObjectDataset

func (eod EloquaObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsHTTPDataset

func (eod EloquaObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsHiveObjectDataset

func (eod EloquaObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsHubspotObjectDataset

func (eod EloquaObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsImpalaObjectDataset

func (eod EloquaObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsJiraObjectDataset

func (eod EloquaObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsMagentoObjectDataset

func (eod EloquaObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsMariaDBTableDataset

func (eod EloquaObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsMarketoObjectDataset

func (eod EloquaObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsMongoDbCollectionDataset

func (eod EloquaObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsNetezzaTableDataset

func (eod EloquaObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsODataResourceDataset

func (eod EloquaObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsOracleTableDataset

func (eod EloquaObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsPaypalObjectDataset

func (eod EloquaObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsPhoenixObjectDataset

func (eod EloquaObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsPrestoObjectDataset

func (eod EloquaObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsQuickBooksObjectDataset

func (eod EloquaObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsRelationalTableDataset

func (eod EloquaObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsResponsysObjectDataset

func (eod EloquaObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsSQLServerTableDataset

func (eod EloquaObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (eod EloquaObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsSalesforceObjectDataset

func (eod EloquaObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsSapCloudForCustomerResourceDataset

func (eod EloquaObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsSapEccResourceDataset

func (eod EloquaObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsServiceNowObjectDataset

func (eod EloquaObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsShopifyObjectDataset

func (eod EloquaObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsSparkObjectDataset

func (eod EloquaObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsSquareObjectDataset

func (eod EloquaObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsVerticaTableDataset

func (eod EloquaObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsWebTableDataset

func (eod EloquaObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsXeroObjectDataset

func (eod EloquaObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) AsZohoObjectDataset

func (eod EloquaObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for EloquaObjectDataset.

func (EloquaObjectDataset) MarshalJSON

func (eod EloquaObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for EloquaObjectDataset.

type EloquaSource

type EloquaSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

EloquaSource a copy activity Eloqua server source.

func (EloquaSource) AsAmazonMWSSource

func (es EloquaSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsAmazonRedshiftSource

func (es EloquaSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsAzureDataLakeStoreSource

func (es EloquaSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsAzureMySQLSource

func (es EloquaSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsAzurePostgreSQLSource

func (es EloquaSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsAzureTableSource

func (es EloquaSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsBasicCopySource

func (es EloquaSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsBlobSource

func (es EloquaSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsCassandraSource

func (es EloquaSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsConcurSource

func (es EloquaSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsCopySource

func (es EloquaSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsCouchbaseSource

func (es EloquaSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsDocumentDbCollectionSource

func (es EloquaSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsDrillSource

func (es EloquaSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsDynamicsSource

func (es EloquaSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsEloquaSource

func (es EloquaSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsFileSystemSource

func (es EloquaSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsGoogleBigQuerySource

func (es EloquaSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsGreenplumSource

func (es EloquaSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsHBaseSource

func (es EloquaSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsHTTPSource

func (es EloquaSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsHdfsSource

func (es EloquaSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsHiveSource

func (es EloquaSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsHubspotSource

func (es EloquaSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsImpalaSource

func (es EloquaSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsJiraSource

func (es EloquaSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsMagentoSource

func (es EloquaSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsMariaDBSource

func (es EloquaSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsMarketoSource

func (es EloquaSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsMongoDbSource

func (es EloquaSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsNetezzaSource

func (es EloquaSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsOracleSource

func (es EloquaSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsPaypalSource

func (es EloquaSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsPhoenixSource

func (es EloquaSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsPrestoSource

func (es EloquaSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsQuickBooksSource

func (es EloquaSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsRelationalSource

func (es EloquaSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsResponsysSource

func (es EloquaSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsSQLDWSource

func (es EloquaSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsSQLSource

func (es EloquaSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsSalesforceMarketingCloudSource

func (es EloquaSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsSalesforceSource

func (es EloquaSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsSapCloudForCustomerSource

func (es EloquaSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsSapEccSource

func (es EloquaSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsServiceNowSource

func (es EloquaSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsShopifySource

func (es EloquaSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsSparkSource

func (es EloquaSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsSquareSource

func (es EloquaSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsVerticaSource

func (es EloquaSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsWebSource

func (es EloquaSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsXeroSource

func (es EloquaSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) AsZohoSource

func (es EloquaSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for EloquaSource.

func (EloquaSource) MarshalJSON

func (es EloquaSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for EloquaSource.

type ErrorResponse

type ErrorResponse struct {
	// Code - Error code.
	Code *string `json:"code,omitempty"`
	// Message - Error message.
	Message *string `json:"message,omitempty"`
	// Target - Property name/path in request associated with error.
	Target *string `json:"target,omitempty"`
	// Details - Array with additional error details.
	Details *[]ErrorResponse `json:"details,omitempty"`
}

ErrorResponse the object that defines the structure of an Azure Data Factory response.

type ExecutePipelineActivity

type ExecutePipelineActivity struct {
	// ExecutePipelineActivityTypeProperties - Execute pipeline activity properties.
	*ExecutePipelineActivityTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

ExecutePipelineActivity execute pipeline activity.

func (ExecutePipelineActivity) AsActivity

func (epa ExecutePipelineActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsAzureMLBatchExecutionActivity

func (epa ExecutePipelineActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsAzureMLUpdateResourceActivity

func (epa ExecutePipelineActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsBasicActivity

func (epa ExecutePipelineActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsBasicControlActivity

func (epa ExecutePipelineActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsBasicExecutionActivity

func (epa ExecutePipelineActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsControlActivity

func (epa ExecutePipelineActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsCopyActivity

func (epa ExecutePipelineActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsCustomActivity

func (epa ExecutePipelineActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsDataLakeAnalyticsUSQLActivity

func (epa ExecutePipelineActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsDatabricksNotebookActivity

func (epa ExecutePipelineActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsExecutePipelineActivity

func (epa ExecutePipelineActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsExecuteSSISPackageActivity

func (epa ExecutePipelineActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsExecutionActivity

func (epa ExecutePipelineActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsFilterActivity

func (epa ExecutePipelineActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsForEachActivity

func (epa ExecutePipelineActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsGetMetadataActivity

func (epa ExecutePipelineActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsHDInsightHiveActivity

func (epa ExecutePipelineActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsHDInsightMapReduceActivity

func (epa ExecutePipelineActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsHDInsightPigActivity

func (epa ExecutePipelineActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsHDInsightSparkActivity

func (epa ExecutePipelineActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsHDInsightStreamingActivity

func (epa ExecutePipelineActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsIfConditionActivity

func (epa ExecutePipelineActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsLookupActivity

func (epa ExecutePipelineActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsSQLServerStoredProcedureActivity

func (epa ExecutePipelineActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsUntilActivity

func (epa ExecutePipelineActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsWaitActivity

func (epa ExecutePipelineActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) AsWebActivity

func (epa ExecutePipelineActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for ExecutePipelineActivity.

func (ExecutePipelineActivity) MarshalJSON

func (epa ExecutePipelineActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ExecutePipelineActivity.

func (*ExecutePipelineActivity) UnmarshalJSON

func (epa *ExecutePipelineActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ExecutePipelineActivity struct.

type ExecutePipelineActivityTypeProperties

type ExecutePipelineActivityTypeProperties struct {
	// Pipeline - Pipeline reference.
	Pipeline *PipelineReference `json:"pipeline,omitempty"`
	// Parameters - Pipeline parameters.
	Parameters map[string]interface{} `json:"parameters"`
	// WaitOnCompletion - Defines whether activity execution will wait for the dependent pipeline execution to finish. Default is false.
	WaitOnCompletion *bool `json:"waitOnCompletion,omitempty"`
}

ExecutePipelineActivityTypeProperties execute pipeline activity properties.

func (ExecutePipelineActivityTypeProperties) MarshalJSON

func (epatp ExecutePipelineActivityTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ExecutePipelineActivityTypeProperties.

type ExecuteSSISPackageActivity

type ExecuteSSISPackageActivity struct {
	// ExecuteSSISPackageActivityTypeProperties - Execute SSIS package activity properties.
	*ExecuteSSISPackageActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

ExecuteSSISPackageActivity execute SSIS package activity.

func (ExecuteSSISPackageActivity) AsActivity

func (espa ExecuteSSISPackageActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsAzureMLBatchExecutionActivity

func (espa ExecuteSSISPackageActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsAzureMLUpdateResourceActivity

func (espa ExecuteSSISPackageActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsBasicActivity

func (espa ExecuteSSISPackageActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsBasicControlActivity

func (espa ExecuteSSISPackageActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsBasicExecutionActivity

func (espa ExecuteSSISPackageActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsControlActivity

func (espa ExecuteSSISPackageActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsCopyActivity

func (espa ExecuteSSISPackageActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsCustomActivity

func (espa ExecuteSSISPackageActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsDataLakeAnalyticsUSQLActivity

func (espa ExecuteSSISPackageActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsDatabricksNotebookActivity

func (espa ExecuteSSISPackageActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsExecutePipelineActivity

func (espa ExecuteSSISPackageActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsExecuteSSISPackageActivity

func (espa ExecuteSSISPackageActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsExecutionActivity

func (espa ExecuteSSISPackageActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsFilterActivity

func (espa ExecuteSSISPackageActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsForEachActivity

func (espa ExecuteSSISPackageActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsGetMetadataActivity

func (espa ExecuteSSISPackageActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsHDInsightHiveActivity

func (espa ExecuteSSISPackageActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsHDInsightMapReduceActivity

func (espa ExecuteSSISPackageActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsHDInsightPigActivity

func (espa ExecuteSSISPackageActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsHDInsightSparkActivity

func (espa ExecuteSSISPackageActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsHDInsightStreamingActivity

func (espa ExecuteSSISPackageActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsIfConditionActivity

func (espa ExecuteSSISPackageActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsLookupActivity

func (espa ExecuteSSISPackageActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsSQLServerStoredProcedureActivity

func (espa ExecuteSSISPackageActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsUntilActivity

func (espa ExecuteSSISPackageActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsWaitActivity

func (espa ExecuteSSISPackageActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) AsWebActivity

func (espa ExecuteSSISPackageActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for ExecuteSSISPackageActivity.

func (ExecuteSSISPackageActivity) MarshalJSON

func (espa ExecuteSSISPackageActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ExecuteSSISPackageActivity.

func (*ExecuteSSISPackageActivity) UnmarshalJSON

func (espa *ExecuteSSISPackageActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ExecuteSSISPackageActivity struct.

type ExecuteSSISPackageActivityTypeProperties

type ExecuteSSISPackageActivityTypeProperties struct {
	// PackageLocation - SSIS package location.
	PackageLocation *SSISPackageLocation `json:"packageLocation,omitempty"`
	// Runtime - Specifies the runtime to execute SSIS package. Possible values include: 'X64', 'X86'
	Runtime SSISExecutionRuntime `json:"runtime,omitempty"`
	// LoggingLevel - The logging level of SSIS package execution.
	LoggingLevel *string `json:"loggingLevel,omitempty"`
	// EnvironmentPath - The environment path to execute the SSIS package.
	EnvironmentPath *string `json:"environmentPath,omitempty"`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// ProjectParameters - The project level parameters to execute the SSIS package.
	ProjectParameters map[string]*SSISExecutionParameter `json:"projectParameters"`
	// PackageParameters - The package level parameters to execute the SSIS package.
	PackageParameters map[string]*SSISExecutionParameter `json:"packageParameters"`
	// ProjectConnectionManagers - The project level connection managers to execute the SSIS package.
	ProjectConnectionManagers map[string]map[string]*SSISExecutionParameter `json:"projectConnectionManagers"`
	// PackageConnectionManagers - The package level connection managers to execute the SSIS package.
	PackageConnectionManagers map[string]map[string]*SSISExecutionParameter `json:"packageConnectionManagers"`
	// PropertyOverrides - The property overrides to execute the SSIS package.
	PropertyOverrides map[string]*SSISPropertyOverride `json:"propertyOverrides"`
}

ExecuteSSISPackageActivityTypeProperties execute SSIS package activity properties.

func (ExecuteSSISPackageActivityTypeProperties) MarshalJSON

func (espatp ExecuteSSISPackageActivityTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ExecuteSSISPackageActivityTypeProperties.

type ExecutionActivity

type ExecutionActivity struct {
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

ExecutionActivity base class for all execution activities.

func (ExecutionActivity) AsActivity

func (ea ExecutionActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsAzureMLBatchExecutionActivity

func (ea ExecutionActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsAzureMLUpdateResourceActivity

func (ea ExecutionActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsBasicActivity

func (ea ExecutionActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsBasicControlActivity

func (ea ExecutionActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsBasicExecutionActivity

func (ea ExecutionActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsControlActivity

func (ea ExecutionActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsCopyActivity

func (ea ExecutionActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsCustomActivity

func (ea ExecutionActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsDataLakeAnalyticsUSQLActivity

func (ea ExecutionActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsDatabricksNotebookActivity

func (ea ExecutionActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsExecutePipelineActivity

func (ea ExecutionActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsExecuteSSISPackageActivity

func (ea ExecutionActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsExecutionActivity

func (ea ExecutionActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsFilterActivity

func (ea ExecutionActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsForEachActivity

func (ea ExecutionActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsGetMetadataActivity

func (ea ExecutionActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsHDInsightHiveActivity

func (ea ExecutionActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsHDInsightMapReduceActivity

func (ea ExecutionActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsHDInsightPigActivity

func (ea ExecutionActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsHDInsightSparkActivity

func (ea ExecutionActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsHDInsightStreamingActivity

func (ea ExecutionActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsIfConditionActivity

func (ea ExecutionActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsLookupActivity

func (ea ExecutionActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsSQLServerStoredProcedureActivity

func (ea ExecutionActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsUntilActivity

func (ea ExecutionActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsWaitActivity

func (ea ExecutionActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) AsWebActivity

func (ea ExecutionActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for ExecutionActivity.

func (ExecutionActivity) MarshalJSON

func (ea ExecutionActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ExecutionActivity.

type Expression

type Expression struct {
	// Type - Expression type.
	Type *string `json:"type,omitempty"`
	// Value - Expression value.
	Value *string `json:"value,omitempty"`
}

Expression azure Data Factory expression definition.

type FactoriesClient

type FactoriesClient struct {
	BaseClient
}

FactoriesClient is the the Azure Data Factory V2 management API provides a RESTful set of web services that interact with Azure Data Factory V2 services.

func NewFactoriesClient

func NewFactoriesClient(subscriptionID string) FactoriesClient

NewFactoriesClient creates an instance of the FactoriesClient client.

func NewFactoriesClientWithBaseURI

func NewFactoriesClientWithBaseURI(baseURI string, subscriptionID string) FactoriesClient

NewFactoriesClientWithBaseURI creates an instance of the FactoriesClient client.

func (FactoriesClient) CancelPipelineRun

func (client FactoriesClient) CancelPipelineRun(ctx context.Context, resourceGroupName string, factoryName string, runID string) (result autorest.Response, err error)

CancelPipelineRun cancel a pipeline run by its run ID. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. runID - the pipeline run identifier.

func (FactoriesClient) CancelPipelineRunPreparer

func (client FactoriesClient) CancelPipelineRunPreparer(ctx context.Context, resourceGroupName string, factoryName string, runID string) (*http.Request, error)

CancelPipelineRunPreparer prepares the CancelPipelineRun request.

func (FactoriesClient) CancelPipelineRunResponder

func (client FactoriesClient) CancelPipelineRunResponder(resp *http.Response) (result autorest.Response, err error)

CancelPipelineRunResponder handles the response to the CancelPipelineRun request. The method always closes the http.Response Body.

func (FactoriesClient) CancelPipelineRunSender

func (client FactoriesClient) CancelPipelineRunSender(req *http.Request) (*http.Response, error)

CancelPipelineRunSender sends the CancelPipelineRun request. The method will close the http.Response Body if it receives an error.

func (FactoriesClient) ConfigureFactoryRepo

func (client FactoriesClient) ConfigureFactoryRepo(ctx context.Context, locationID string, factoryRepoUpdate FactoryRepoUpdate) (result Factory, err error)

ConfigureFactoryRepo updates a factory's repo information. Parameters: locationID - the location identifier. factoryRepoUpdate - update factory repo request definition.

func (FactoriesClient) ConfigureFactoryRepoPreparer

func (client FactoriesClient) ConfigureFactoryRepoPreparer(ctx context.Context, locationID string, factoryRepoUpdate FactoryRepoUpdate) (*http.Request, error)

ConfigureFactoryRepoPreparer prepares the ConfigureFactoryRepo request.

func (FactoriesClient) ConfigureFactoryRepoResponder

func (client FactoriesClient) ConfigureFactoryRepoResponder(resp *http.Response) (result Factory, err error)

ConfigureFactoryRepoResponder handles the response to the ConfigureFactoryRepo request. The method always closes the http.Response Body.

func (FactoriesClient) ConfigureFactoryRepoSender

func (client FactoriesClient) ConfigureFactoryRepoSender(req *http.Request) (*http.Response, error)

ConfigureFactoryRepoSender sends the ConfigureFactoryRepo request. The method will close the http.Response Body if it receives an error.

func (FactoriesClient) CreateOrUpdate

func (client FactoriesClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, factoryName string, factory Factory) (result Factory, err error)

CreateOrUpdate creates or updates a factory. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. factory - factory resource definition.

func (FactoriesClient) CreateOrUpdatePreparer

func (client FactoriesClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, factoryName string, factory Factory) (*http.Request, error)

CreateOrUpdatePreparer prepares the CreateOrUpdate request.

func (FactoriesClient) CreateOrUpdateResponder

func (client FactoriesClient) CreateOrUpdateResponder(resp *http.Response) (result Factory, err error)

CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always closes the http.Response Body.

func (FactoriesClient) CreateOrUpdateSender

func (client FactoriesClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error)

CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the http.Response Body if it receives an error.

func (FactoriesClient) Delete

func (client FactoriesClient) Delete(ctx context.Context, resourceGroupName string, factoryName string) (result autorest.Response, err error)

Delete deletes a factory. Parameters: resourceGroupName - the resource group name. factoryName - the factory name.

func (FactoriesClient) DeletePreparer

func (client FactoriesClient) DeletePreparer(ctx context.Context, resourceGroupName string, factoryName string) (*http.Request, error)

DeletePreparer prepares the Delete request.

func (FactoriesClient) DeleteResponder

func (client FactoriesClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)

DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.

func (FactoriesClient) DeleteSender

func (client FactoriesClient) DeleteSender(req *http.Request) (*http.Response, error)

DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.

func (FactoriesClient) Get

func (client FactoriesClient) Get(ctx context.Context, resourceGroupName string, factoryName string) (result Factory, err error)

Get gets a factory. Parameters: resourceGroupName - the resource group name. factoryName - the factory name.

func (FactoriesClient) GetPreparer

func (client FactoriesClient) GetPreparer(ctx context.Context, resourceGroupName string, factoryName string) (*http.Request, error)

GetPreparer prepares the Get request.

func (FactoriesClient) GetResponder

func (client FactoriesClient) GetResponder(resp *http.Response) (result Factory, err error)

GetResponder handles the response to the Get request. The method always closes the http.Response Body.

func (FactoriesClient) GetSender

func (client FactoriesClient) GetSender(req *http.Request) (*http.Response, error)

GetSender sends the Get request. The method will close the http.Response Body if it receives an error.

func (FactoriesClient) List

func (client FactoriesClient) List(ctx context.Context) (result FactoryListResponsePage, err error)

List lists factories under the specified subscription.

func (FactoriesClient) ListByResourceGroup

func (client FactoriesClient) ListByResourceGroup(ctx context.Context, resourceGroupName string) (result FactoryListResponsePage, err error)

ListByResourceGroup lists factories. Parameters: resourceGroupName - the resource group name.

func (FactoriesClient) ListByResourceGroupComplete

func (client FactoriesClient) ListByResourceGroupComplete(ctx context.Context, resourceGroupName string) (result FactoryListResponseIterator, err error)

ListByResourceGroupComplete enumerates all values, automatically crossing page boundaries as required.

func (FactoriesClient) ListByResourceGroupPreparer

func (client FactoriesClient) ListByResourceGroupPreparer(ctx context.Context, resourceGroupName string) (*http.Request, error)

ListByResourceGroupPreparer prepares the ListByResourceGroup request.

func (FactoriesClient) ListByResourceGroupResponder

func (client FactoriesClient) ListByResourceGroupResponder(resp *http.Response) (result FactoryListResponse, err error)

ListByResourceGroupResponder handles the response to the ListByResourceGroup request. The method always closes the http.Response Body.

func (FactoriesClient) ListByResourceGroupSender

func (client FactoriesClient) ListByResourceGroupSender(req *http.Request) (*http.Response, error)

ListByResourceGroupSender sends the ListByResourceGroup request. The method will close the http.Response Body if it receives an error.

func (FactoriesClient) ListComplete

func (client FactoriesClient) ListComplete(ctx context.Context) (result FactoryListResponseIterator, err error)

ListComplete enumerates all values, automatically crossing page boundaries as required.

func (FactoriesClient) ListPreparer

func (client FactoriesClient) ListPreparer(ctx context.Context) (*http.Request, error)

ListPreparer prepares the List request.

func (FactoriesClient) ListResponder

func (client FactoriesClient) ListResponder(resp *http.Response) (result FactoryListResponse, err error)

ListResponder handles the response to the List request. The method always closes the http.Response Body.

func (FactoriesClient) ListSender

func (client FactoriesClient) ListSender(req *http.Request) (*http.Response, error)

ListSender sends the List request. The method will close the http.Response Body if it receives an error.

func (FactoriesClient) Update

func (client FactoriesClient) Update(ctx context.Context, resourceGroupName string, factoryName string, factoryUpdateParameters FactoryUpdateParameters) (result Factory, err error)

Update updates a factory. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. factoryUpdateParameters - the parameters for updating a factory.

func (FactoriesClient) UpdatePreparer

func (client FactoriesClient) UpdatePreparer(ctx context.Context, resourceGroupName string, factoryName string, factoryUpdateParameters FactoryUpdateParameters) (*http.Request, error)

UpdatePreparer prepares the Update request.

func (FactoriesClient) UpdateResponder

func (client FactoriesClient) UpdateResponder(resp *http.Response) (result Factory, err error)

UpdateResponder handles the response to the Update request. The method always closes the http.Response Body.

func (FactoriesClient) UpdateSender

func (client FactoriesClient) UpdateSender(req *http.Request) (*http.Response, error)

UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.

type Factory

type Factory struct {
	autorest.Response `json:"-"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Identity - Managed service identity of the factory.
	Identity *FactoryIdentity `json:"identity,omitempty"`
	// FactoryProperties - Properties of the factory.
	*FactoryProperties `json:"properties,omitempty"`
	// ID - The resource identifier.
	ID *string `json:"id,omitempty"`
	// Name - The resource name.
	Name *string `json:"name,omitempty"`
	// Type - The resource type.
	Type *string `json:"type,omitempty"`
	// Location - The resource location.
	Location *string `json:"location,omitempty"`
	// Tags - The resource tags.
	Tags map[string]*string `json:"tags"`
}

Factory factory resource type.

func (Factory) MarshalJSON

func (f Factory) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for Factory.

func (*Factory) UnmarshalJSON

func (f *Factory) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for Factory struct.

type FactoryIdentity

type FactoryIdentity struct {
	// Type - The identity type. Currently the only supported type is 'SystemAssigned'.
	Type *string `json:"type,omitempty"`
	// PrincipalID - The principal id of the identity.
	PrincipalID *uuid.UUID `json:"principalId,omitempty"`
	// TenantID - The client tenant id of the identity.
	TenantID *uuid.UUID `json:"tenantId,omitempty"`
}

FactoryIdentity identity properties of the factory resource.

type FactoryListResponse

type FactoryListResponse struct {
	autorest.Response `json:"-"`
	// Value - List of factories.
	Value *[]Factory `json:"value,omitempty"`
	// NextLink - The link to the next page of results, if any remaining results exist.
	NextLink *string `json:"nextLink,omitempty"`
}

FactoryListResponse a list of factory resources.

func (FactoryListResponse) IsEmpty

func (flr FactoryListResponse) IsEmpty() bool

IsEmpty returns true if the ListResult contains no values.

type FactoryListResponseIterator

type FactoryListResponseIterator struct {
	// contains filtered or unexported fields
}

FactoryListResponseIterator provides access to a complete listing of Factory values.

func (*FactoryListResponseIterator) Next

func (iter *FactoryListResponseIterator) Next() error

Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.

func (FactoryListResponseIterator) NotDone

func (iter FactoryListResponseIterator) NotDone() bool

NotDone returns true if the enumeration should be started or is not yet complete.

func (FactoryListResponseIterator) Response

Response returns the raw server response from the last page request.

func (FactoryListResponseIterator) Value

func (iter FactoryListResponseIterator) Value() Factory

Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.

type FactoryListResponsePage

type FactoryListResponsePage struct {
	// contains filtered or unexported fields
}

FactoryListResponsePage contains a page of Factory values.

func (*FactoryListResponsePage) Next

func (page *FactoryListResponsePage) Next() error

Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.

func (FactoryListResponsePage) NotDone

func (page FactoryListResponsePage) NotDone() bool

NotDone returns true if the page enumeration should be started or is not yet complete.

func (FactoryListResponsePage) Response

Response returns the raw server response from the last page request.

func (FactoryListResponsePage) Values

func (page FactoryListResponsePage) Values() []Factory

Values returns the slice of values for the current page or nil if there are no values.

type FactoryProperties

type FactoryProperties struct {
	// ProvisioningState - Factory provisioning state, example Succeeded.
	ProvisioningState *string `json:"provisioningState,omitempty"`
	// CreateTime - Time the factory was created in ISO8601 format.
	CreateTime *date.Time `json:"createTime,omitempty"`
	// Version - Version of the factory.
	Version *string `json:"version,omitempty"`
	// VstsConfiguration - VSTS repo information of the factory.
	VstsConfiguration *FactoryVSTSConfiguration `json:"vstsConfiguration,omitempty"`
}

FactoryProperties factory resource properties.

type FactoryRepoUpdate

type FactoryRepoUpdate struct {
	// FactoryResourceID - The factory resource id.
	FactoryResourceID *string `json:"factoryResourceId,omitempty"`
	// ResourceGroupName - The resource group name.
	ResourceGroupName *string `json:"resourceGroupName,omitempty"`
	// VstsConfiguration - VSTS repo information of the factory.
	VstsConfiguration *FactoryVSTSConfiguration `json:"vstsConfiguration,omitempty"`
}

FactoryRepoUpdate factory's VSTS repo information.

type FactoryUpdateParameters

type FactoryUpdateParameters struct {
	// Tags - The resource tags.
	Tags map[string]*string `json:"tags"`
	// Identity - Managed service identity of the factory.
	Identity *FactoryIdentity `json:"identity,omitempty"`
}

FactoryUpdateParameters parameters for updating a factory resource.

func (FactoryUpdateParameters) MarshalJSON

func (fup FactoryUpdateParameters) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for FactoryUpdateParameters.

type FactoryVSTSConfiguration

type FactoryVSTSConfiguration struct {
	// AccountName - VSTS account name.
	AccountName *string `json:"accountName,omitempty"`
	// ProjectName - VSTS project name.
	ProjectName *string `json:"projectName,omitempty"`
	// RepositoryName - VSTS repository name.
	RepositoryName *string `json:"repositoryName,omitempty"`
	// CollaborationBranch - VSTS collaboration branch.
	CollaborationBranch *string `json:"collaborationBranch,omitempty"`
	// RootFolder - VSTS root folder.
	RootFolder *string `json:"rootFolder,omitempty"`
	// LastCommitID - VSTS last commit id.
	LastCommitID *string `json:"lastCommitId,omitempty"`
	// TenantID - VSTS tenant id.
	TenantID *string `json:"tenantId,omitempty"`
}

FactoryVSTSConfiguration factory's VSTS repo information.

type FileServerLinkedService

type FileServerLinkedService struct {
	// FileServerLinkedServiceTypeProperties - File system linked service properties.
	*FileServerLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

FileServerLinkedService file system linked service.

func (FileServerLinkedService) AsAmazonMWSLinkedService

func (fsls FileServerLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAmazonRedshiftLinkedService

func (fsls FileServerLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAmazonS3LinkedService

func (fsls FileServerLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAzureBatchLinkedService

func (fsls FileServerLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (fsls FileServerLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAzureDataLakeStoreLinkedService

func (fsls FileServerLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAzureDatabricksLinkedService

func (fsls FileServerLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAzureKeyVaultLinkedService

func (fsls FileServerLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAzureMLLinkedService

func (fsls FileServerLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAzureMySQLLinkedService

func (fsls FileServerLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAzurePostgreSQLLinkedService

func (fsls FileServerLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAzureSQLDWLinkedService

func (fsls FileServerLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAzureSQLDatabaseLinkedService

func (fsls FileServerLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAzureSearchLinkedService

func (fsls FileServerLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsAzureStorageLinkedService

func (fsls FileServerLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsBasicLinkedService

func (fsls FileServerLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsCassandraLinkedService

func (fsls FileServerLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsConcurLinkedService

func (fsls FileServerLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsCosmosDbLinkedService

func (fsls FileServerLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsCouchbaseLinkedService

func (fsls FileServerLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsCustomDataSourceLinkedService

func (fsls FileServerLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsDb2LinkedService

func (fsls FileServerLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsDrillLinkedService

func (fsls FileServerLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsDynamicsLinkedService

func (fsls FileServerLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsEloquaLinkedService

func (fsls FileServerLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsFileServerLinkedService

func (fsls FileServerLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsFtpServerLinkedService

func (fsls FileServerLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsGoogleBigQueryLinkedService

func (fsls FileServerLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsGreenplumLinkedService

func (fsls FileServerLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsHBaseLinkedService

func (fsls FileServerLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsHDInsightLinkedService

func (fsls FileServerLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsHDInsightOnDemandLinkedService

func (fsls FileServerLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsHTTPLinkedService

func (fsls FileServerLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsHdfsLinkedService

func (fsls FileServerLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsHiveLinkedService

func (fsls FileServerLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsHubspotLinkedService

func (fsls FileServerLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsImpalaLinkedService

func (fsls FileServerLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsJiraLinkedService

func (fsls FileServerLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsLinkedService

func (fsls FileServerLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsMagentoLinkedService

func (fsls FileServerLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsMariaDBLinkedService

func (fsls FileServerLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsMarketoLinkedService

func (fsls FileServerLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsMongoDbLinkedService

func (fsls FileServerLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsMySQLLinkedService

func (fsls FileServerLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsNetezzaLinkedService

func (fsls FileServerLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsODataLinkedService

func (fsls FileServerLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsOdbcLinkedService

func (fsls FileServerLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsOracleLinkedService

func (fsls FileServerLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsPaypalLinkedService

func (fsls FileServerLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsPhoenixLinkedService

func (fsls FileServerLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsPostgreSQLLinkedService

func (fsls FileServerLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsPrestoLinkedService

func (fsls FileServerLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsQuickBooksLinkedService

func (fsls FileServerLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsResponsysLinkedService

func (fsls FileServerLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsSQLServerLinkedService

func (fsls FileServerLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsSalesforceLinkedService

func (fsls FileServerLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsSalesforceMarketingCloudLinkedService

func (fsls FileServerLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsSapBWLinkedService

func (fsls FileServerLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsSapCloudForCustomerLinkedService

func (fsls FileServerLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsSapEccLinkedService

func (fsls FileServerLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsSapHanaLinkedService

func (fsls FileServerLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsServiceNowLinkedService

func (fsls FileServerLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsSftpServerLinkedService

func (fsls FileServerLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsShopifyLinkedService

func (fsls FileServerLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsSparkLinkedService

func (fsls FileServerLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsSquareLinkedService

func (fsls FileServerLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsSybaseLinkedService

func (fsls FileServerLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsTeradataLinkedService

func (fsls FileServerLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsVerticaLinkedService

func (fsls FileServerLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsWebLinkedService

func (fsls FileServerLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsXeroLinkedService

func (fsls FileServerLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) AsZohoLinkedService

func (fsls FileServerLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for FileServerLinkedService.

func (FileServerLinkedService) MarshalJSON

func (fsls FileServerLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for FileServerLinkedService.

func (*FileServerLinkedService) UnmarshalJSON

func (fsls *FileServerLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for FileServerLinkedService struct.

type FileServerLinkedServiceTypeProperties

type FileServerLinkedServiceTypeProperties struct {
	// Host - Host name of the server. Type: string (or Expression with resultType string).
	Host interface{} `json:"host,omitempty"`
	// UserID - User ID to logon the server. Type: string (or Expression with resultType string).
	UserID interface{} `json:"userId,omitempty"`
	// Password - Password to logon the server.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

FileServerLinkedServiceTypeProperties file system linked service properties.

func (*FileServerLinkedServiceTypeProperties) UnmarshalJSON

func (fslstp *FileServerLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for FileServerLinkedServiceTypeProperties struct.

type FileShareDataset

type FileShareDataset struct {
	// FileShareDatasetTypeProperties - On-premises file system dataset properties.
	*FileShareDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

FileShareDataset an on-premises file system dataset.

func (FileShareDataset) AsAmazonMWSObjectDataset

func (fsd FileShareDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsAmazonS3Dataset

func (fsd FileShareDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsAzureBlobDataset

func (fsd FileShareDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsAzureDataLakeStoreDataset

func (fsd FileShareDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsAzureMySQLTableDataset

func (fsd FileShareDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsAzurePostgreSQLTableDataset

func (fsd FileShareDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsAzureSQLDWTableDataset

func (fsd FileShareDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsAzureSQLTableDataset

func (fsd FileShareDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsAzureSearchIndexDataset

func (fsd FileShareDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsAzureTableDataset

func (fsd FileShareDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsBasicDataset

func (fsd FileShareDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsCassandraTableDataset

func (fsd FileShareDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsConcurObjectDataset

func (fsd FileShareDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsCouchbaseTableDataset

func (fsd FileShareDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsCustomDataset

func (fsd FileShareDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsDataset

func (fsd FileShareDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsDocumentDbCollectionDataset

func (fsd FileShareDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsDrillTableDataset

func (fsd FileShareDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsDynamicsEntityDataset

func (fsd FileShareDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsEloquaObjectDataset

func (fsd FileShareDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsFileShareDataset

func (fsd FileShareDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsGoogleBigQueryObjectDataset

func (fsd FileShareDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsGreenplumTableDataset

func (fsd FileShareDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsHBaseObjectDataset

func (fsd FileShareDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsHTTPDataset

func (fsd FileShareDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsHiveObjectDataset

func (fsd FileShareDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsHubspotObjectDataset

func (fsd FileShareDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsImpalaObjectDataset

func (fsd FileShareDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsJiraObjectDataset

func (fsd FileShareDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsMagentoObjectDataset

func (fsd FileShareDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsMariaDBTableDataset

func (fsd FileShareDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsMarketoObjectDataset

func (fsd FileShareDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsMongoDbCollectionDataset

func (fsd FileShareDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsNetezzaTableDataset

func (fsd FileShareDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsODataResourceDataset

func (fsd FileShareDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsOracleTableDataset

func (fsd FileShareDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsPaypalObjectDataset

func (fsd FileShareDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsPhoenixObjectDataset

func (fsd FileShareDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsPrestoObjectDataset

func (fsd FileShareDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsQuickBooksObjectDataset

func (fsd FileShareDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsRelationalTableDataset

func (fsd FileShareDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsResponsysObjectDataset

func (fsd FileShareDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsSQLServerTableDataset

func (fsd FileShareDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsSalesforceMarketingCloudObjectDataset

func (fsd FileShareDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsSalesforceObjectDataset

func (fsd FileShareDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsSapCloudForCustomerResourceDataset

func (fsd FileShareDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsSapEccResourceDataset

func (fsd FileShareDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsServiceNowObjectDataset

func (fsd FileShareDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsShopifyObjectDataset

func (fsd FileShareDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsSparkObjectDataset

func (fsd FileShareDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsSquareObjectDataset

func (fsd FileShareDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsVerticaTableDataset

func (fsd FileShareDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsWebTableDataset

func (fsd FileShareDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsXeroObjectDataset

func (fsd FileShareDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) AsZohoObjectDataset

func (fsd FileShareDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for FileShareDataset.

func (FileShareDataset) MarshalJSON

func (fsd FileShareDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for FileShareDataset.

func (*FileShareDataset) UnmarshalJSON

func (fsd *FileShareDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for FileShareDataset struct.

type FileShareDatasetTypeProperties

type FileShareDatasetTypeProperties struct {
	// FolderPath - The path of the on-premises file system. Type: string (or Expression with resultType string).
	FolderPath interface{} `json:"folderPath,omitempty"`
	// FileName - The name of the on-premises file system. Type: string (or Expression with resultType string).
	FileName interface{} `json:"fileName,omitempty"`
	// Format - The format of the files.
	Format BasicDatasetStorageFormat `json:"format,omitempty"`
	// FileFilter - Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
	FileFilter interface{} `json:"fileFilter,omitempty"`
	// Compression - The data compression method used for the file system.
	Compression BasicDatasetCompression `json:"compression,omitempty"`
}

FileShareDatasetTypeProperties on-premises file system dataset properties.

func (*FileShareDatasetTypeProperties) UnmarshalJSON

func (fsdtp *FileShareDatasetTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for FileShareDatasetTypeProperties struct.

type FileSystemSink

type FileSystemSink struct {
	// CopyBehavior - The type of copy behavior for copy sink. Possible values include: 'PreserveHierarchy', 'FlattenHierarchy', 'MergeFiles'
	CopyBehavior CopyBehaviorType `json:"copyBehavior,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

FileSystemSink a copy activity file system sink.

func (FileSystemSink) AsAzureDataLakeStoreSink

func (fss FileSystemSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsAzureQueueSink

func (fss FileSystemSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsAzureSearchIndexSink

func (fss FileSystemSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsAzureTableSink

func (fss FileSystemSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsBasicCopySink

func (fss FileSystemSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsBlobSink

func (fss FileSystemSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsCopySink

func (fss FileSystemSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsDocumentDbCollectionSink

func (fss FileSystemSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsDynamicsSink

func (fss FileSystemSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsFileSystemSink

func (fss FileSystemSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsOdbcSink

func (fss FileSystemSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsOracleSink

func (fss FileSystemSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsSQLDWSink

func (fss FileSystemSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsSQLSink

func (fss FileSystemSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsSalesforceSink

func (fss FileSystemSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) AsSapCloudForCustomerSink

func (fss FileSystemSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for FileSystemSink.

func (FileSystemSink) MarshalJSON

func (fss FileSystemSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for FileSystemSink.

type FileSystemSource

type FileSystemSource struct {
	// Recursive - If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
	Recursive interface{} `json:"recursive,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

FileSystemSource a copy activity file system source.

func (FileSystemSource) AsAmazonMWSSource

func (fss FileSystemSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsAmazonRedshiftSource

func (fss FileSystemSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsAzureDataLakeStoreSource

func (fss FileSystemSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsAzureMySQLSource

func (fss FileSystemSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsAzurePostgreSQLSource

func (fss FileSystemSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsAzureTableSource

func (fss FileSystemSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsBasicCopySource

func (fss FileSystemSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsBlobSource

func (fss FileSystemSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsCassandraSource

func (fss FileSystemSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsConcurSource

func (fss FileSystemSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsCopySource

func (fss FileSystemSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsCouchbaseSource

func (fss FileSystemSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsDocumentDbCollectionSource

func (fss FileSystemSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsDrillSource

func (fss FileSystemSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsDynamicsSource

func (fss FileSystemSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsEloquaSource

func (fss FileSystemSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsFileSystemSource

func (fss FileSystemSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsGoogleBigQuerySource

func (fss FileSystemSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsGreenplumSource

func (fss FileSystemSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsHBaseSource

func (fss FileSystemSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsHTTPSource

func (fss FileSystemSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsHdfsSource

func (fss FileSystemSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsHiveSource

func (fss FileSystemSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsHubspotSource

func (fss FileSystemSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsImpalaSource

func (fss FileSystemSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsJiraSource

func (fss FileSystemSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsMagentoSource

func (fss FileSystemSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsMariaDBSource

func (fss FileSystemSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsMarketoSource

func (fss FileSystemSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsMongoDbSource

func (fss FileSystemSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsNetezzaSource

func (fss FileSystemSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsOracleSource

func (fss FileSystemSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsPaypalSource

func (fss FileSystemSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsPhoenixSource

func (fss FileSystemSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsPrestoSource

func (fss FileSystemSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsQuickBooksSource

func (fss FileSystemSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsRelationalSource

func (fss FileSystemSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsResponsysSource

func (fss FileSystemSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsSQLDWSource

func (fss FileSystemSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsSQLSource

func (fss FileSystemSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsSalesforceMarketingCloudSource

func (fss FileSystemSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsSalesforceSource

func (fss FileSystemSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsSapCloudForCustomerSource

func (fss FileSystemSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsSapEccSource

func (fss FileSystemSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsServiceNowSource

func (fss FileSystemSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsShopifySource

func (fss FileSystemSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsSparkSource

func (fss FileSystemSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsSquareSource

func (fss FileSystemSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsVerticaSource

func (fss FileSystemSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsWebSource

func (fss FileSystemSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsXeroSource

func (fss FileSystemSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) AsZohoSource

func (fss FileSystemSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for FileSystemSource.

func (FileSystemSource) MarshalJSON

func (fss FileSystemSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for FileSystemSource.

type FilterActivity

type FilterActivity struct {
	// FilterActivityTypeProperties - Filter activity properties.
	*FilterActivityTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

FilterActivity filter and return results from input array based on the conditions.

func (FilterActivity) AsActivity

func (fa FilterActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsAzureMLBatchExecutionActivity

func (fa FilterActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsAzureMLUpdateResourceActivity

func (fa FilterActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsBasicActivity

func (fa FilterActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsBasicControlActivity

func (fa FilterActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsBasicExecutionActivity

func (fa FilterActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsControlActivity

func (fa FilterActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsCopyActivity

func (fa FilterActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsCustomActivity

func (fa FilterActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsDataLakeAnalyticsUSQLActivity

func (fa FilterActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsDatabricksNotebookActivity

func (fa FilterActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsExecutePipelineActivity

func (fa FilterActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsExecuteSSISPackageActivity

func (fa FilterActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsExecutionActivity

func (fa FilterActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsFilterActivity

func (fa FilterActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsForEachActivity

func (fa FilterActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsGetMetadataActivity

func (fa FilterActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsHDInsightHiveActivity

func (fa FilterActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsHDInsightMapReduceActivity

func (fa FilterActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsHDInsightPigActivity

func (fa FilterActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsHDInsightSparkActivity

func (fa FilterActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsHDInsightStreamingActivity

func (fa FilterActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsIfConditionActivity

func (fa FilterActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsLookupActivity

func (fa FilterActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsSQLServerStoredProcedureActivity

func (fa FilterActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsUntilActivity

func (fa FilterActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsWaitActivity

func (fa FilterActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) AsWebActivity

func (fa FilterActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for FilterActivity.

func (FilterActivity) MarshalJSON

func (fa FilterActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for FilterActivity.

func (*FilterActivity) UnmarshalJSON

func (fa *FilterActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for FilterActivity struct.

type FilterActivityTypeProperties

type FilterActivityTypeProperties struct {
	// Items - Input array on which filter should be applied.
	Items *Expression `json:"items,omitempty"`
	// Condition - Condition to be used for filtering the input.
	Condition *Expression `json:"condition,omitempty"`
}

FilterActivityTypeProperties fitler activity properties.

type ForEachActivity

type ForEachActivity struct {
	// ForEachActivityTypeProperties - ForEach activity properties.
	*ForEachActivityTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

ForEachActivity this activity is used for iterating over a collection and execute given activities.

func (ForEachActivity) AsActivity

func (fea ForEachActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsAzureMLBatchExecutionActivity

func (fea ForEachActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsAzureMLUpdateResourceActivity

func (fea ForEachActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsBasicActivity

func (fea ForEachActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsBasicControlActivity

func (fea ForEachActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsBasicExecutionActivity

func (fea ForEachActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsControlActivity

func (fea ForEachActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsCopyActivity

func (fea ForEachActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsCustomActivity

func (fea ForEachActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsDataLakeAnalyticsUSQLActivity

func (fea ForEachActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsDatabricksNotebookActivity

func (fea ForEachActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsExecutePipelineActivity

func (fea ForEachActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsExecuteSSISPackageActivity

func (fea ForEachActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsExecutionActivity

func (fea ForEachActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsFilterActivity

func (fea ForEachActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsForEachActivity

func (fea ForEachActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsGetMetadataActivity

func (fea ForEachActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsHDInsightHiveActivity

func (fea ForEachActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsHDInsightMapReduceActivity

func (fea ForEachActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsHDInsightPigActivity

func (fea ForEachActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsHDInsightSparkActivity

func (fea ForEachActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsHDInsightStreamingActivity

func (fea ForEachActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsIfConditionActivity

func (fea ForEachActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsLookupActivity

func (fea ForEachActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsSQLServerStoredProcedureActivity

func (fea ForEachActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsUntilActivity

func (fea ForEachActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsWaitActivity

func (fea ForEachActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) AsWebActivity

func (fea ForEachActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for ForEachActivity.

func (ForEachActivity) MarshalJSON

func (fea ForEachActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ForEachActivity.

func (*ForEachActivity) UnmarshalJSON

func (fea *ForEachActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ForEachActivity struct.

type ForEachActivityTypeProperties

type ForEachActivityTypeProperties struct {
	// IsSequential - Should the loop be executed in sequence or in parallel (max 50)
	IsSequential *bool `json:"isSequential,omitempty"`
	// BatchCount - Batch count to be used for controlling the number of parallel execution (when isSequential is set to false).
	BatchCount *int32 `json:"batchCount,omitempty"`
	// Items - Collection to iterate.
	Items *Expression `json:"items,omitempty"`
	// Activities - List of activities to execute .
	Activities *[]BasicActivity `json:"activities,omitempty"`
}

ForEachActivityTypeProperties forEach activity properties.

func (*ForEachActivityTypeProperties) UnmarshalJSON

func (featp *ForEachActivityTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ForEachActivityTypeProperties struct.

type FtpAuthenticationType

type FtpAuthenticationType string

FtpAuthenticationType enumerates the values for ftp authentication type.

const (
	// FtpAuthenticationTypeAnonymous ...
	FtpAuthenticationTypeAnonymous FtpAuthenticationType = "Anonymous"
	// FtpAuthenticationTypeBasic ...
	FtpAuthenticationTypeBasic FtpAuthenticationType = "Basic"
)

func PossibleFtpAuthenticationTypeValues

func PossibleFtpAuthenticationTypeValues() []FtpAuthenticationType

PossibleFtpAuthenticationTypeValues returns an array of possible values for the FtpAuthenticationType const type.

type FtpServerLinkedService

type FtpServerLinkedService struct {
	// FtpServerLinkedServiceTypeProperties - Properties specific to this linked service type.
	*FtpServerLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

FtpServerLinkedService a FTP server Linked Service.

func (FtpServerLinkedService) AsAmazonMWSLinkedService

func (fsls FtpServerLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAmazonRedshiftLinkedService

func (fsls FtpServerLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAmazonS3LinkedService

func (fsls FtpServerLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAzureBatchLinkedService

func (fsls FtpServerLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (fsls FtpServerLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAzureDataLakeStoreLinkedService

func (fsls FtpServerLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAzureDatabricksLinkedService

func (fsls FtpServerLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAzureKeyVaultLinkedService

func (fsls FtpServerLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAzureMLLinkedService

func (fsls FtpServerLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAzureMySQLLinkedService

func (fsls FtpServerLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAzurePostgreSQLLinkedService

func (fsls FtpServerLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAzureSQLDWLinkedService

func (fsls FtpServerLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAzureSQLDatabaseLinkedService

func (fsls FtpServerLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAzureSearchLinkedService

func (fsls FtpServerLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsAzureStorageLinkedService

func (fsls FtpServerLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsBasicLinkedService

func (fsls FtpServerLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsCassandraLinkedService

func (fsls FtpServerLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsConcurLinkedService

func (fsls FtpServerLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsCosmosDbLinkedService

func (fsls FtpServerLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsCouchbaseLinkedService

func (fsls FtpServerLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsCustomDataSourceLinkedService

func (fsls FtpServerLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsDb2LinkedService

func (fsls FtpServerLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsDrillLinkedService

func (fsls FtpServerLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsDynamicsLinkedService

func (fsls FtpServerLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsEloquaLinkedService

func (fsls FtpServerLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsFileServerLinkedService

func (fsls FtpServerLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsFtpServerLinkedService

func (fsls FtpServerLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsGoogleBigQueryLinkedService

func (fsls FtpServerLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsGreenplumLinkedService

func (fsls FtpServerLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsHBaseLinkedService

func (fsls FtpServerLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsHDInsightLinkedService

func (fsls FtpServerLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsHDInsightOnDemandLinkedService

func (fsls FtpServerLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsHTTPLinkedService

func (fsls FtpServerLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsHdfsLinkedService

func (fsls FtpServerLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsHiveLinkedService

func (fsls FtpServerLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsHubspotLinkedService

func (fsls FtpServerLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsImpalaLinkedService

func (fsls FtpServerLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsJiraLinkedService

func (fsls FtpServerLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsLinkedService

func (fsls FtpServerLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsMagentoLinkedService

func (fsls FtpServerLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsMariaDBLinkedService

func (fsls FtpServerLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsMarketoLinkedService

func (fsls FtpServerLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsMongoDbLinkedService

func (fsls FtpServerLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsMySQLLinkedService

func (fsls FtpServerLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsNetezzaLinkedService

func (fsls FtpServerLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsODataLinkedService

func (fsls FtpServerLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsOdbcLinkedService

func (fsls FtpServerLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsOracleLinkedService

func (fsls FtpServerLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsPaypalLinkedService

func (fsls FtpServerLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsPhoenixLinkedService

func (fsls FtpServerLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsPostgreSQLLinkedService

func (fsls FtpServerLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsPrestoLinkedService

func (fsls FtpServerLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsQuickBooksLinkedService

func (fsls FtpServerLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsResponsysLinkedService

func (fsls FtpServerLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsSQLServerLinkedService

func (fsls FtpServerLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsSalesforceLinkedService

func (fsls FtpServerLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsSalesforceMarketingCloudLinkedService

func (fsls FtpServerLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsSapBWLinkedService

func (fsls FtpServerLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsSapCloudForCustomerLinkedService

func (fsls FtpServerLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsSapEccLinkedService

func (fsls FtpServerLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsSapHanaLinkedService

func (fsls FtpServerLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsServiceNowLinkedService

func (fsls FtpServerLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsSftpServerLinkedService

func (fsls FtpServerLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsShopifyLinkedService

func (fsls FtpServerLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsSparkLinkedService

func (fsls FtpServerLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsSquareLinkedService

func (fsls FtpServerLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsSybaseLinkedService

func (fsls FtpServerLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsTeradataLinkedService

func (fsls FtpServerLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsVerticaLinkedService

func (fsls FtpServerLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsWebLinkedService

func (fsls FtpServerLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsXeroLinkedService

func (fsls FtpServerLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) AsZohoLinkedService

func (fsls FtpServerLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for FtpServerLinkedService.

func (FtpServerLinkedService) MarshalJSON

func (fsls FtpServerLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for FtpServerLinkedService.

func (*FtpServerLinkedService) UnmarshalJSON

func (fsls *FtpServerLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for FtpServerLinkedService struct.

type FtpServerLinkedServiceTypeProperties

type FtpServerLinkedServiceTypeProperties struct {
	// Host - Host name of the FTP server. Type: string (or Expression with resultType string).
	Host interface{} `json:"host,omitempty"`
	// Port - The TCP port number that the FTP server uses to listen for client connections. Default value is 21. Type: integer (or Expression with resultType integer), minimum: 0.
	Port interface{} `json:"port,omitempty"`
	// AuthenticationType - The authentication type to be used to connect to the FTP server. Possible values include: 'FtpAuthenticationTypeBasic', 'FtpAuthenticationTypeAnonymous'
	AuthenticationType FtpAuthenticationType `json:"authenticationType,omitempty"`
	// UserName - Username to logon the FTP server. Type: string (or Expression with resultType string).
	UserName interface{} `json:"userName,omitempty"`
	// Password - Password to logon the FTP server.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
	// EnableSsl - If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
	EnableSsl interface{} `json:"enableSsl,omitempty"`
	// EnableServerCertificateValidation - If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean).
	EnableServerCertificateValidation interface{} `json:"enableServerCertificateValidation,omitempty"`
}

FtpServerLinkedServiceTypeProperties properties specific to this linked service type.

func (*FtpServerLinkedServiceTypeProperties) UnmarshalJSON

func (fslstp *FtpServerLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for FtpServerLinkedServiceTypeProperties struct.

type GetMetadataActivity

type GetMetadataActivity struct {
	// GetMetadataActivityTypeProperties - GetMetadata activity properties.
	*GetMetadataActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

GetMetadataActivity activity to get metadata of dataset

func (GetMetadataActivity) AsActivity

func (gma GetMetadataActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsAzureMLBatchExecutionActivity

func (gma GetMetadataActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsAzureMLUpdateResourceActivity

func (gma GetMetadataActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsBasicActivity

func (gma GetMetadataActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsBasicControlActivity

func (gma GetMetadataActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsBasicExecutionActivity

func (gma GetMetadataActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsControlActivity

func (gma GetMetadataActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsCopyActivity

func (gma GetMetadataActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsCustomActivity

func (gma GetMetadataActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsDataLakeAnalyticsUSQLActivity

func (gma GetMetadataActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsDatabricksNotebookActivity

func (gma GetMetadataActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsExecutePipelineActivity

func (gma GetMetadataActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsExecuteSSISPackageActivity

func (gma GetMetadataActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsExecutionActivity

func (gma GetMetadataActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsFilterActivity

func (gma GetMetadataActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsForEachActivity

func (gma GetMetadataActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsGetMetadataActivity

func (gma GetMetadataActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsHDInsightHiveActivity

func (gma GetMetadataActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsHDInsightMapReduceActivity

func (gma GetMetadataActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsHDInsightPigActivity

func (gma GetMetadataActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsHDInsightSparkActivity

func (gma GetMetadataActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsHDInsightStreamingActivity

func (gma GetMetadataActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsIfConditionActivity

func (gma GetMetadataActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsLookupActivity

func (gma GetMetadataActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsSQLServerStoredProcedureActivity

func (gma GetMetadataActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsUntilActivity

func (gma GetMetadataActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsWaitActivity

func (gma GetMetadataActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) AsWebActivity

func (gma GetMetadataActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for GetMetadataActivity.

func (GetMetadataActivity) MarshalJSON

func (gma GetMetadataActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for GetMetadataActivity.

func (*GetMetadataActivity) UnmarshalJSON

func (gma *GetMetadataActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for GetMetadataActivity struct.

type GetMetadataActivityTypeProperties

type GetMetadataActivityTypeProperties struct {
	// Dataset - GetMetadata activity dataset reference.
	Dataset *DatasetReference `json:"dataset,omitempty"`
	// FieldList - Fields of metadata to get from dataset.
	FieldList *[]interface{} `json:"fieldList,omitempty"`
}

GetMetadataActivityTypeProperties getMetadata activity properties.

type GoogleBigQueryAuthenticationType

type GoogleBigQueryAuthenticationType string

GoogleBigQueryAuthenticationType enumerates the values for google big query authentication type.

const (
	// ServiceAuthentication ...
	ServiceAuthentication GoogleBigQueryAuthenticationType = "ServiceAuthentication"
	// UserAuthentication ...
	UserAuthentication GoogleBigQueryAuthenticationType = "UserAuthentication"
)

func PossibleGoogleBigQueryAuthenticationTypeValues

func PossibleGoogleBigQueryAuthenticationTypeValues() []GoogleBigQueryAuthenticationType

PossibleGoogleBigQueryAuthenticationTypeValues returns an array of possible values for the GoogleBigQueryAuthenticationType const type.

type GoogleBigQueryLinkedService

type GoogleBigQueryLinkedService struct {
	// GoogleBigQueryLinkedServiceTypeProperties - Google BigQuery service linked service properties.
	*GoogleBigQueryLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

GoogleBigQueryLinkedService google BigQuery service linked service.

func (GoogleBigQueryLinkedService) AsAmazonMWSLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAmazonRedshiftLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAmazonS3LinkedService

func (gbqls GoogleBigQueryLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAzureBatchLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAzureDataLakeStoreLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAzureDatabricksLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAzureKeyVaultLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAzureMLLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAzureMySQLLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAzurePostgreSQLLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAzureSQLDWLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAzureSQLDatabaseLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAzureSearchLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsAzureStorageLinkedService

func (gbqls GoogleBigQueryLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsBasicLinkedService

func (gbqls GoogleBigQueryLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsCassandraLinkedService

func (gbqls GoogleBigQueryLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsConcurLinkedService

func (gbqls GoogleBigQueryLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsCosmosDbLinkedService

func (gbqls GoogleBigQueryLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsCouchbaseLinkedService

func (gbqls GoogleBigQueryLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsCustomDataSourceLinkedService

func (gbqls GoogleBigQueryLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsDb2LinkedService

func (gbqls GoogleBigQueryLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsDrillLinkedService

func (gbqls GoogleBigQueryLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsDynamicsLinkedService

func (gbqls GoogleBigQueryLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsEloquaLinkedService

func (gbqls GoogleBigQueryLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsFileServerLinkedService

func (gbqls GoogleBigQueryLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsFtpServerLinkedService

func (gbqls GoogleBigQueryLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsGoogleBigQueryLinkedService

func (gbqls GoogleBigQueryLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsGreenplumLinkedService

func (gbqls GoogleBigQueryLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsHBaseLinkedService

func (gbqls GoogleBigQueryLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsHDInsightLinkedService

func (gbqls GoogleBigQueryLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsHDInsightOnDemandLinkedService

func (gbqls GoogleBigQueryLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsHTTPLinkedService

func (gbqls GoogleBigQueryLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsHdfsLinkedService

func (gbqls GoogleBigQueryLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsHiveLinkedService

func (gbqls GoogleBigQueryLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsHubspotLinkedService

func (gbqls GoogleBigQueryLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsImpalaLinkedService

func (gbqls GoogleBigQueryLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsJiraLinkedService

func (gbqls GoogleBigQueryLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsLinkedService

func (gbqls GoogleBigQueryLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsMagentoLinkedService

func (gbqls GoogleBigQueryLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsMariaDBLinkedService

func (gbqls GoogleBigQueryLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsMarketoLinkedService

func (gbqls GoogleBigQueryLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsMongoDbLinkedService

func (gbqls GoogleBigQueryLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsMySQLLinkedService

func (gbqls GoogleBigQueryLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsNetezzaLinkedService

func (gbqls GoogleBigQueryLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsODataLinkedService

func (gbqls GoogleBigQueryLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsOdbcLinkedService

func (gbqls GoogleBigQueryLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsOracleLinkedService

func (gbqls GoogleBigQueryLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsPaypalLinkedService

func (gbqls GoogleBigQueryLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsPhoenixLinkedService

func (gbqls GoogleBigQueryLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsPostgreSQLLinkedService

func (gbqls GoogleBigQueryLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsPrestoLinkedService

func (gbqls GoogleBigQueryLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsQuickBooksLinkedService

func (gbqls GoogleBigQueryLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsResponsysLinkedService

func (gbqls GoogleBigQueryLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsSQLServerLinkedService

func (gbqls GoogleBigQueryLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsSalesforceLinkedService

func (gbqls GoogleBigQueryLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsSalesforceMarketingCloudLinkedService

func (gbqls GoogleBigQueryLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsSapBWLinkedService

func (gbqls GoogleBigQueryLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsSapCloudForCustomerLinkedService

func (gbqls GoogleBigQueryLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsSapEccLinkedService

func (gbqls GoogleBigQueryLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsSapHanaLinkedService

func (gbqls GoogleBigQueryLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsServiceNowLinkedService

func (gbqls GoogleBigQueryLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsSftpServerLinkedService

func (gbqls GoogleBigQueryLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsShopifyLinkedService

func (gbqls GoogleBigQueryLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsSparkLinkedService

func (gbqls GoogleBigQueryLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsSquareLinkedService

func (gbqls GoogleBigQueryLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsSybaseLinkedService

func (gbqls GoogleBigQueryLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsTeradataLinkedService

func (gbqls GoogleBigQueryLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsVerticaLinkedService

func (gbqls GoogleBigQueryLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsWebLinkedService

func (gbqls GoogleBigQueryLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsXeroLinkedService

func (gbqls GoogleBigQueryLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) AsZohoLinkedService

func (gbqls GoogleBigQueryLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for GoogleBigQueryLinkedService.

func (GoogleBigQueryLinkedService) MarshalJSON

func (gbqls GoogleBigQueryLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for GoogleBigQueryLinkedService.

func (*GoogleBigQueryLinkedService) UnmarshalJSON

func (gbqls *GoogleBigQueryLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for GoogleBigQueryLinkedService struct.

type GoogleBigQueryLinkedServiceTypeProperties

type GoogleBigQueryLinkedServiceTypeProperties struct {
	// Project - The default BigQuery project to query against.
	Project interface{} `json:"project,omitempty"`
	// AdditionalProjects - A comma-separated list of public BigQuery projects to access.
	AdditionalProjects interface{} `json:"additionalProjects,omitempty"`
	// RequestGoogleDriveScope - Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false.
	RequestGoogleDriveScope interface{} `json:"requestGoogleDriveScope,omitempty"`
	// AuthenticationType - The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR. Possible values include: 'ServiceAuthentication', 'UserAuthentication'
	AuthenticationType GoogleBigQueryAuthenticationType `json:"authenticationType,omitempty"`
	// RefreshToken - The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication.
	RefreshToken BasicSecretBase `json:"refreshToken,omitempty"`
	// ClientID - The client id of the google application used to acquire the refresh token.
	ClientID BasicSecretBase `json:"clientId,omitempty"`
	// ClientSecret - The client secret of the google application used to acquire the refresh token.
	ClientSecret BasicSecretBase `json:"clientSecret,omitempty"`
	// Email - The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR.
	Email interface{} `json:"email,omitempty"`
	// KeyFilePath - The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR.
	KeyFilePath interface{} `json:"keyFilePath,omitempty"`
	// TrustedCertPath - The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
	TrustedCertPath interface{} `json:"trustedCertPath,omitempty"`
	// UseSystemTrustStore - Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
	UseSystemTrustStore interface{} `json:"useSystemTrustStore,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

GoogleBigQueryLinkedServiceTypeProperties google BigQuery service linked service properties.

func (*GoogleBigQueryLinkedServiceTypeProperties) UnmarshalJSON

func (gbqlstp *GoogleBigQueryLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for GoogleBigQueryLinkedServiceTypeProperties struct.

type GoogleBigQueryObjectDataset

type GoogleBigQueryObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

GoogleBigQueryObjectDataset google BigQuery service dataset.

func (GoogleBigQueryObjectDataset) AsAmazonMWSObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsAmazonS3Dataset

func (gbqod GoogleBigQueryObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsAzureBlobDataset

func (gbqod GoogleBigQueryObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsAzureDataLakeStoreDataset

func (gbqod GoogleBigQueryObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsAzureMySQLTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsAzurePostgreSQLTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsAzureSQLDWTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsAzureSQLTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsAzureSearchIndexDataset

func (gbqod GoogleBigQueryObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsAzureTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsBasicDataset

func (gbqod GoogleBigQueryObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsCassandraTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsConcurObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsCouchbaseTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsCustomDataset

func (gbqod GoogleBigQueryObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsDataset

func (gbqod GoogleBigQueryObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsDocumentDbCollectionDataset

func (gbqod GoogleBigQueryObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsDrillTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsDynamicsEntityDataset

func (gbqod GoogleBigQueryObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsEloquaObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsFileShareDataset

func (gbqod GoogleBigQueryObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsGoogleBigQueryObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsGreenplumTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsHBaseObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsHTTPDataset

func (gbqod GoogleBigQueryObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsHiveObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsHubspotObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsImpalaObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsJiraObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsMagentoObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsMariaDBTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsMarketoObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsMongoDbCollectionDataset

func (gbqod GoogleBigQueryObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsNetezzaTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsODataResourceDataset

func (gbqod GoogleBigQueryObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsOracleTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsPaypalObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsPhoenixObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsPrestoObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsQuickBooksObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsRelationalTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsResponsysObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsSQLServerTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsSalesforceObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsSapCloudForCustomerResourceDataset

func (gbqod GoogleBigQueryObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsSapEccResourceDataset

func (gbqod GoogleBigQueryObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsServiceNowObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsShopifyObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsSparkObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsSquareObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsVerticaTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsWebTableDataset

func (gbqod GoogleBigQueryObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsXeroObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) AsZohoObjectDataset

func (gbqod GoogleBigQueryObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for GoogleBigQueryObjectDataset.

func (GoogleBigQueryObjectDataset) MarshalJSON

func (gbqod GoogleBigQueryObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for GoogleBigQueryObjectDataset.

type GoogleBigQuerySource

type GoogleBigQuerySource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

GoogleBigQuerySource a copy activity Google BigQuery service source.

func (GoogleBigQuerySource) AsAmazonMWSSource

func (gbqs GoogleBigQuerySource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsAmazonRedshiftSource

func (gbqs GoogleBigQuerySource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsAzureDataLakeStoreSource

func (gbqs GoogleBigQuerySource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsAzureMySQLSource

func (gbqs GoogleBigQuerySource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsAzurePostgreSQLSource

func (gbqs GoogleBigQuerySource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsAzureTableSource

func (gbqs GoogleBigQuerySource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsBasicCopySource

func (gbqs GoogleBigQuerySource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsBlobSource

func (gbqs GoogleBigQuerySource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsCassandraSource

func (gbqs GoogleBigQuerySource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsConcurSource

func (gbqs GoogleBigQuerySource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsCopySource

func (gbqs GoogleBigQuerySource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsCouchbaseSource

func (gbqs GoogleBigQuerySource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsDocumentDbCollectionSource

func (gbqs GoogleBigQuerySource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsDrillSource

func (gbqs GoogleBigQuerySource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsDynamicsSource

func (gbqs GoogleBigQuerySource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsEloquaSource

func (gbqs GoogleBigQuerySource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsFileSystemSource

func (gbqs GoogleBigQuerySource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsGoogleBigQuerySource

func (gbqs GoogleBigQuerySource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsGreenplumSource

func (gbqs GoogleBigQuerySource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsHBaseSource

func (gbqs GoogleBigQuerySource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsHTTPSource

func (gbqs GoogleBigQuerySource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsHdfsSource

func (gbqs GoogleBigQuerySource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsHiveSource

func (gbqs GoogleBigQuerySource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsHubspotSource

func (gbqs GoogleBigQuerySource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsImpalaSource

func (gbqs GoogleBigQuerySource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsJiraSource

func (gbqs GoogleBigQuerySource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsMagentoSource

func (gbqs GoogleBigQuerySource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsMariaDBSource

func (gbqs GoogleBigQuerySource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsMarketoSource

func (gbqs GoogleBigQuerySource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsMongoDbSource

func (gbqs GoogleBigQuerySource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsNetezzaSource

func (gbqs GoogleBigQuerySource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsOracleSource

func (gbqs GoogleBigQuerySource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsPaypalSource

func (gbqs GoogleBigQuerySource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsPhoenixSource

func (gbqs GoogleBigQuerySource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsPrestoSource

func (gbqs GoogleBigQuerySource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsQuickBooksSource

func (gbqs GoogleBigQuerySource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsRelationalSource

func (gbqs GoogleBigQuerySource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsResponsysSource

func (gbqs GoogleBigQuerySource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsSQLDWSource

func (gbqs GoogleBigQuerySource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsSQLSource

func (gbqs GoogleBigQuerySource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsSalesforceMarketingCloudSource

func (gbqs GoogleBigQuerySource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsSalesforceSource

func (gbqs GoogleBigQuerySource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsSapCloudForCustomerSource

func (gbqs GoogleBigQuerySource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsSapEccSource

func (gbqs GoogleBigQuerySource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsServiceNowSource

func (gbqs GoogleBigQuerySource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsShopifySource

func (gbqs GoogleBigQuerySource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsSparkSource

func (gbqs GoogleBigQuerySource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsSquareSource

func (gbqs GoogleBigQuerySource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsVerticaSource

func (gbqs GoogleBigQuerySource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsWebSource

func (gbqs GoogleBigQuerySource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsXeroSource

func (gbqs GoogleBigQuerySource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) AsZohoSource

func (gbqs GoogleBigQuerySource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for GoogleBigQuerySource.

func (GoogleBigQuerySource) MarshalJSON

func (gbqs GoogleBigQuerySource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for GoogleBigQuerySource.

type GreenplumLinkedService

type GreenplumLinkedService struct {
	// GreenplumLinkedServiceTypeProperties - Greenplum Database linked service properties.
	*GreenplumLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

GreenplumLinkedService greenplum Database linked service.

func (GreenplumLinkedService) AsAmazonMWSLinkedService

func (gls GreenplumLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAmazonRedshiftLinkedService

func (gls GreenplumLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAmazonS3LinkedService

func (gls GreenplumLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAzureBatchLinkedService

func (gls GreenplumLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (gls GreenplumLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAzureDataLakeStoreLinkedService

func (gls GreenplumLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAzureDatabricksLinkedService

func (gls GreenplumLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAzureKeyVaultLinkedService

func (gls GreenplumLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAzureMLLinkedService

func (gls GreenplumLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAzureMySQLLinkedService

func (gls GreenplumLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAzurePostgreSQLLinkedService

func (gls GreenplumLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAzureSQLDWLinkedService

func (gls GreenplumLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAzureSQLDatabaseLinkedService

func (gls GreenplumLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAzureSearchLinkedService

func (gls GreenplumLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsAzureStorageLinkedService

func (gls GreenplumLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsBasicLinkedService

func (gls GreenplumLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsCassandraLinkedService

func (gls GreenplumLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsConcurLinkedService

func (gls GreenplumLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsCosmosDbLinkedService

func (gls GreenplumLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsCouchbaseLinkedService

func (gls GreenplumLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsCustomDataSourceLinkedService

func (gls GreenplumLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsDb2LinkedService

func (gls GreenplumLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsDrillLinkedService

func (gls GreenplumLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsDynamicsLinkedService

func (gls GreenplumLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsEloquaLinkedService

func (gls GreenplumLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsFileServerLinkedService

func (gls GreenplumLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsFtpServerLinkedService

func (gls GreenplumLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsGoogleBigQueryLinkedService

func (gls GreenplumLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsGreenplumLinkedService

func (gls GreenplumLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsHBaseLinkedService

func (gls GreenplumLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsHDInsightLinkedService

func (gls GreenplumLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsHDInsightOnDemandLinkedService

func (gls GreenplumLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsHTTPLinkedService

func (gls GreenplumLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsHdfsLinkedService

func (gls GreenplumLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsHiveLinkedService

func (gls GreenplumLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsHubspotLinkedService

func (gls GreenplumLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsImpalaLinkedService

func (gls GreenplumLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsJiraLinkedService

func (gls GreenplumLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsLinkedService

func (gls GreenplumLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsMagentoLinkedService

func (gls GreenplumLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsMariaDBLinkedService

func (gls GreenplumLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsMarketoLinkedService

func (gls GreenplumLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsMongoDbLinkedService

func (gls GreenplumLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsMySQLLinkedService

func (gls GreenplumLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsNetezzaLinkedService

func (gls GreenplumLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsODataLinkedService

func (gls GreenplumLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsOdbcLinkedService

func (gls GreenplumLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsOracleLinkedService

func (gls GreenplumLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsPaypalLinkedService

func (gls GreenplumLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsPhoenixLinkedService

func (gls GreenplumLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsPostgreSQLLinkedService

func (gls GreenplumLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsPrestoLinkedService

func (gls GreenplumLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsQuickBooksLinkedService

func (gls GreenplumLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsResponsysLinkedService

func (gls GreenplumLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsSQLServerLinkedService

func (gls GreenplumLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsSalesforceLinkedService

func (gls GreenplumLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsSalesforceMarketingCloudLinkedService

func (gls GreenplumLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsSapBWLinkedService

func (gls GreenplumLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsSapCloudForCustomerLinkedService

func (gls GreenplumLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsSapEccLinkedService

func (gls GreenplumLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsSapHanaLinkedService

func (gls GreenplumLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsServiceNowLinkedService

func (gls GreenplumLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsSftpServerLinkedService

func (gls GreenplumLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsShopifyLinkedService

func (gls GreenplumLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsSparkLinkedService

func (gls GreenplumLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsSquareLinkedService

func (gls GreenplumLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsSybaseLinkedService

func (gls GreenplumLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsTeradataLinkedService

func (gls GreenplumLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsVerticaLinkedService

func (gls GreenplumLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsWebLinkedService

func (gls GreenplumLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsXeroLinkedService

func (gls GreenplumLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) AsZohoLinkedService

func (gls GreenplumLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for GreenplumLinkedService.

func (GreenplumLinkedService) MarshalJSON

func (gls GreenplumLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for GreenplumLinkedService.

func (*GreenplumLinkedService) UnmarshalJSON

func (gls *GreenplumLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for GreenplumLinkedService struct.

type GreenplumLinkedServiceTypeProperties

type GreenplumLinkedServiceTypeProperties struct {
	// ConnectionString - An ODBC connection string.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

GreenplumLinkedServiceTypeProperties greenplum Database linked service properties.

func (*GreenplumLinkedServiceTypeProperties) UnmarshalJSON

func (glstp *GreenplumLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for GreenplumLinkedServiceTypeProperties struct.

type GreenplumSource

type GreenplumSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

GreenplumSource a copy activity Greenplum Database source.

func (GreenplumSource) AsAmazonMWSSource

func (gs GreenplumSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsAmazonRedshiftSource

func (gs GreenplumSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsAzureDataLakeStoreSource

func (gs GreenplumSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsAzureMySQLSource

func (gs GreenplumSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsAzurePostgreSQLSource

func (gs GreenplumSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsAzureTableSource

func (gs GreenplumSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsBasicCopySource

func (gs GreenplumSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsBlobSource

func (gs GreenplumSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsCassandraSource

func (gs GreenplumSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsConcurSource

func (gs GreenplumSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsCopySource

func (gs GreenplumSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsCouchbaseSource

func (gs GreenplumSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsDocumentDbCollectionSource

func (gs GreenplumSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsDrillSource

func (gs GreenplumSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsDynamicsSource

func (gs GreenplumSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsEloquaSource

func (gs GreenplumSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsFileSystemSource

func (gs GreenplumSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsGoogleBigQuerySource

func (gs GreenplumSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsGreenplumSource

func (gs GreenplumSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsHBaseSource

func (gs GreenplumSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsHTTPSource

func (gs GreenplumSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsHdfsSource

func (gs GreenplumSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsHiveSource

func (gs GreenplumSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsHubspotSource

func (gs GreenplumSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsImpalaSource

func (gs GreenplumSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsJiraSource

func (gs GreenplumSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsMagentoSource

func (gs GreenplumSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsMariaDBSource

func (gs GreenplumSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsMarketoSource

func (gs GreenplumSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsMongoDbSource

func (gs GreenplumSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsNetezzaSource

func (gs GreenplumSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsOracleSource

func (gs GreenplumSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsPaypalSource

func (gs GreenplumSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsPhoenixSource

func (gs GreenplumSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsPrestoSource

func (gs GreenplumSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsQuickBooksSource

func (gs GreenplumSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsRelationalSource

func (gs GreenplumSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsResponsysSource

func (gs GreenplumSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsSQLDWSource

func (gs GreenplumSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsSQLSource

func (gs GreenplumSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsSalesforceMarketingCloudSource

func (gs GreenplumSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsSalesforceSource

func (gs GreenplumSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsSapCloudForCustomerSource

func (gs GreenplumSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsSapEccSource

func (gs GreenplumSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsServiceNowSource

func (gs GreenplumSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsShopifySource

func (gs GreenplumSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsSparkSource

func (gs GreenplumSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsSquareSource

func (gs GreenplumSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsVerticaSource

func (gs GreenplumSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsWebSource

func (gs GreenplumSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsXeroSource

func (gs GreenplumSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) AsZohoSource

func (gs GreenplumSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for GreenplumSource.

func (GreenplumSource) MarshalJSON

func (gs GreenplumSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for GreenplumSource.

type GreenplumTableDataset

type GreenplumTableDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

GreenplumTableDataset greenplum Database dataset.

func (GreenplumTableDataset) AsAmazonMWSObjectDataset

func (gtd GreenplumTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsAmazonS3Dataset

func (gtd GreenplumTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsAzureBlobDataset

func (gtd GreenplumTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsAzureDataLakeStoreDataset

func (gtd GreenplumTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsAzureMySQLTableDataset

func (gtd GreenplumTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsAzurePostgreSQLTableDataset

func (gtd GreenplumTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsAzureSQLDWTableDataset

func (gtd GreenplumTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsAzureSQLTableDataset

func (gtd GreenplumTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsAzureSearchIndexDataset

func (gtd GreenplumTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsAzureTableDataset

func (gtd GreenplumTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsBasicDataset

func (gtd GreenplumTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsCassandraTableDataset

func (gtd GreenplumTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsConcurObjectDataset

func (gtd GreenplumTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsCouchbaseTableDataset

func (gtd GreenplumTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsCustomDataset

func (gtd GreenplumTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsDataset

func (gtd GreenplumTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsDocumentDbCollectionDataset

func (gtd GreenplumTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsDrillTableDataset

func (gtd GreenplumTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsDynamicsEntityDataset

func (gtd GreenplumTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsEloquaObjectDataset

func (gtd GreenplumTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsFileShareDataset

func (gtd GreenplumTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsGoogleBigQueryObjectDataset

func (gtd GreenplumTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsGreenplumTableDataset

func (gtd GreenplumTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsHBaseObjectDataset

func (gtd GreenplumTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsHTTPDataset

func (gtd GreenplumTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsHiveObjectDataset

func (gtd GreenplumTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsHubspotObjectDataset

func (gtd GreenplumTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsImpalaObjectDataset

func (gtd GreenplumTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsJiraObjectDataset

func (gtd GreenplumTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsMagentoObjectDataset

func (gtd GreenplumTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsMariaDBTableDataset

func (gtd GreenplumTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsMarketoObjectDataset

func (gtd GreenplumTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsMongoDbCollectionDataset

func (gtd GreenplumTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsNetezzaTableDataset

func (gtd GreenplumTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsODataResourceDataset

func (gtd GreenplumTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsOracleTableDataset

func (gtd GreenplumTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsPaypalObjectDataset

func (gtd GreenplumTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsPhoenixObjectDataset

func (gtd GreenplumTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsPrestoObjectDataset

func (gtd GreenplumTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsQuickBooksObjectDataset

func (gtd GreenplumTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsRelationalTableDataset

func (gtd GreenplumTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsResponsysObjectDataset

func (gtd GreenplumTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsSQLServerTableDataset

func (gtd GreenplumTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsSalesforceMarketingCloudObjectDataset

func (gtd GreenplumTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsSalesforceObjectDataset

func (gtd GreenplumTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsSapCloudForCustomerResourceDataset

func (gtd GreenplumTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsSapEccResourceDataset

func (gtd GreenplumTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsServiceNowObjectDataset

func (gtd GreenplumTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsShopifyObjectDataset

func (gtd GreenplumTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsSparkObjectDataset

func (gtd GreenplumTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsSquareObjectDataset

func (gtd GreenplumTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsVerticaTableDataset

func (gtd GreenplumTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsWebTableDataset

func (gtd GreenplumTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsXeroObjectDataset

func (gtd GreenplumTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) AsZohoObjectDataset

func (gtd GreenplumTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for GreenplumTableDataset.

func (GreenplumTableDataset) MarshalJSON

func (gtd GreenplumTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for GreenplumTableDataset.

type HBaseAuthenticationType

type HBaseAuthenticationType string

HBaseAuthenticationType enumerates the values for h base authentication type.

const (
	// HBaseAuthenticationTypeAnonymous ...
	HBaseAuthenticationTypeAnonymous HBaseAuthenticationType = "Anonymous"
	// HBaseAuthenticationTypeBasic ...
	HBaseAuthenticationTypeBasic HBaseAuthenticationType = "Basic"
)

func PossibleHBaseAuthenticationTypeValues

func PossibleHBaseAuthenticationTypeValues() []HBaseAuthenticationType

PossibleHBaseAuthenticationTypeValues returns an array of possible values for the HBaseAuthenticationType const type.

type HBaseLinkedService

type HBaseLinkedService struct {
	// HBaseLinkedServiceTypeProperties - HBase server linked service properties.
	*HBaseLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

HBaseLinkedService hBase server linked service.

func (HBaseLinkedService) AsAmazonMWSLinkedService

func (hbls HBaseLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAmazonRedshiftLinkedService

func (hbls HBaseLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAmazonS3LinkedService

func (hbls HBaseLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAzureBatchLinkedService

func (hbls HBaseLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (hbls HBaseLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAzureDataLakeStoreLinkedService

func (hbls HBaseLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAzureDatabricksLinkedService

func (hbls HBaseLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAzureKeyVaultLinkedService

func (hbls HBaseLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAzureMLLinkedService

func (hbls HBaseLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAzureMySQLLinkedService

func (hbls HBaseLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAzurePostgreSQLLinkedService

func (hbls HBaseLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAzureSQLDWLinkedService

func (hbls HBaseLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAzureSQLDatabaseLinkedService

func (hbls HBaseLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAzureSearchLinkedService

func (hbls HBaseLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsAzureStorageLinkedService

func (hbls HBaseLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsBasicLinkedService

func (hbls HBaseLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsCassandraLinkedService

func (hbls HBaseLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsConcurLinkedService

func (hbls HBaseLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsCosmosDbLinkedService

func (hbls HBaseLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsCouchbaseLinkedService

func (hbls HBaseLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsCustomDataSourceLinkedService

func (hbls HBaseLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsDb2LinkedService

func (hbls HBaseLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsDrillLinkedService

func (hbls HBaseLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsDynamicsLinkedService

func (hbls HBaseLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsEloquaLinkedService

func (hbls HBaseLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsFileServerLinkedService

func (hbls HBaseLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsFtpServerLinkedService

func (hbls HBaseLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsGoogleBigQueryLinkedService

func (hbls HBaseLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsGreenplumLinkedService

func (hbls HBaseLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsHBaseLinkedService

func (hbls HBaseLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsHDInsightLinkedService

func (hbls HBaseLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsHDInsightOnDemandLinkedService

func (hbls HBaseLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsHTTPLinkedService

func (hbls HBaseLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsHdfsLinkedService

func (hbls HBaseLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsHiveLinkedService

func (hbls HBaseLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsHubspotLinkedService

func (hbls HBaseLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsImpalaLinkedService

func (hbls HBaseLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsJiraLinkedService

func (hbls HBaseLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsLinkedService

func (hbls HBaseLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsMagentoLinkedService

func (hbls HBaseLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsMariaDBLinkedService

func (hbls HBaseLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsMarketoLinkedService

func (hbls HBaseLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsMongoDbLinkedService

func (hbls HBaseLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsMySQLLinkedService

func (hbls HBaseLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsNetezzaLinkedService

func (hbls HBaseLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsODataLinkedService

func (hbls HBaseLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsOdbcLinkedService

func (hbls HBaseLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsOracleLinkedService

func (hbls HBaseLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsPaypalLinkedService

func (hbls HBaseLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsPhoenixLinkedService

func (hbls HBaseLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsPostgreSQLLinkedService

func (hbls HBaseLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsPrestoLinkedService

func (hbls HBaseLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsQuickBooksLinkedService

func (hbls HBaseLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsResponsysLinkedService

func (hbls HBaseLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsSQLServerLinkedService

func (hbls HBaseLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsSalesforceLinkedService

func (hbls HBaseLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsSalesforceMarketingCloudLinkedService

func (hbls HBaseLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsSapBWLinkedService

func (hbls HBaseLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsSapCloudForCustomerLinkedService

func (hbls HBaseLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsSapEccLinkedService

func (hbls HBaseLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsSapHanaLinkedService

func (hbls HBaseLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsServiceNowLinkedService

func (hbls HBaseLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsSftpServerLinkedService

func (hbls HBaseLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsShopifyLinkedService

func (hbls HBaseLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsSparkLinkedService

func (hbls HBaseLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsSquareLinkedService

func (hbls HBaseLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsSybaseLinkedService

func (hbls HBaseLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsTeradataLinkedService

func (hbls HBaseLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsVerticaLinkedService

func (hbls HBaseLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsWebLinkedService

func (hbls HBaseLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsXeroLinkedService

func (hbls HBaseLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) AsZohoLinkedService

func (hbls HBaseLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for HBaseLinkedService.

func (HBaseLinkedService) MarshalJSON

func (hbls HBaseLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HBaseLinkedService.

func (*HBaseLinkedService) UnmarshalJSON

func (hbls *HBaseLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HBaseLinkedService struct.

type HBaseLinkedServiceTypeProperties

type HBaseLinkedServiceTypeProperties struct {
	// Host - The IP address or host name of the HBase server. (i.e. 192.168.222.160)
	Host interface{} `json:"host,omitempty"`
	// Port - The TCP port that the HBase instance uses to listen for client connections. The default value is 9090.
	Port interface{} `json:"port,omitempty"`
	// HTTPPath - The partial URL corresponding to the HBase server. (i.e. /gateway/sandbox/hbase/version)
	HTTPPath interface{} `json:"httpPath,omitempty"`
	// AuthenticationType - The authentication mechanism to use to connect to the HBase server. Possible values include: 'HBaseAuthenticationTypeAnonymous', 'HBaseAuthenticationTypeBasic'
	AuthenticationType HBaseAuthenticationType `json:"authenticationType,omitempty"`
	// Username - The user name used to connect to the HBase instance.
	Username interface{} `json:"username,omitempty"`
	// Password - The password corresponding to the user name.
	Password BasicSecretBase `json:"password,omitempty"`
	// EnableSsl - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
	EnableSsl interface{} `json:"enableSsl,omitempty"`
	// TrustedCertPath - The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
	TrustedCertPath interface{} `json:"trustedCertPath,omitempty"`
	// AllowHostNameCNMismatch - Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
	AllowHostNameCNMismatch interface{} `json:"allowHostNameCNMismatch,omitempty"`
	// AllowSelfSignedServerCert - Specifies whether to allow self-signed certificates from the server. The default value is false.
	AllowSelfSignedServerCert interface{} `json:"allowSelfSignedServerCert,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

HBaseLinkedServiceTypeProperties hBase server linked service properties.

func (*HBaseLinkedServiceTypeProperties) UnmarshalJSON

func (hblstp *HBaseLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HBaseLinkedServiceTypeProperties struct.

type HBaseObjectDataset

type HBaseObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

HBaseObjectDataset hBase server dataset.

func (HBaseObjectDataset) AsAmazonMWSObjectDataset

func (hbod HBaseObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsAmazonS3Dataset

func (hbod HBaseObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsAzureBlobDataset

func (hbod HBaseObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsAzureDataLakeStoreDataset

func (hbod HBaseObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsAzureMySQLTableDataset

func (hbod HBaseObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsAzurePostgreSQLTableDataset

func (hbod HBaseObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsAzureSQLDWTableDataset

func (hbod HBaseObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsAzureSQLTableDataset

func (hbod HBaseObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsAzureSearchIndexDataset

func (hbod HBaseObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsAzureTableDataset

func (hbod HBaseObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsBasicDataset

func (hbod HBaseObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsCassandraTableDataset

func (hbod HBaseObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsConcurObjectDataset

func (hbod HBaseObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsCouchbaseTableDataset

func (hbod HBaseObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsCustomDataset

func (hbod HBaseObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsDataset

func (hbod HBaseObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsDocumentDbCollectionDataset

func (hbod HBaseObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsDrillTableDataset

func (hbod HBaseObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsDynamicsEntityDataset

func (hbod HBaseObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsEloquaObjectDataset

func (hbod HBaseObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsFileShareDataset

func (hbod HBaseObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsGoogleBigQueryObjectDataset

func (hbod HBaseObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsGreenplumTableDataset

func (hbod HBaseObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsHBaseObjectDataset

func (hbod HBaseObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsHTTPDataset

func (hbod HBaseObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsHiveObjectDataset

func (hbod HBaseObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsHubspotObjectDataset

func (hbod HBaseObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsImpalaObjectDataset

func (hbod HBaseObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsJiraObjectDataset

func (hbod HBaseObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsMagentoObjectDataset

func (hbod HBaseObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsMariaDBTableDataset

func (hbod HBaseObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsMarketoObjectDataset

func (hbod HBaseObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsMongoDbCollectionDataset

func (hbod HBaseObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsNetezzaTableDataset

func (hbod HBaseObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsODataResourceDataset

func (hbod HBaseObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsOracleTableDataset

func (hbod HBaseObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsPaypalObjectDataset

func (hbod HBaseObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsPhoenixObjectDataset

func (hbod HBaseObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsPrestoObjectDataset

func (hbod HBaseObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsQuickBooksObjectDataset

func (hbod HBaseObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsRelationalTableDataset

func (hbod HBaseObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsResponsysObjectDataset

func (hbod HBaseObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsSQLServerTableDataset

func (hbod HBaseObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (hbod HBaseObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsSalesforceObjectDataset

func (hbod HBaseObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsSapCloudForCustomerResourceDataset

func (hbod HBaseObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsSapEccResourceDataset

func (hbod HBaseObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsServiceNowObjectDataset

func (hbod HBaseObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsShopifyObjectDataset

func (hbod HBaseObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsSparkObjectDataset

func (hbod HBaseObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsSquareObjectDataset

func (hbod HBaseObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsVerticaTableDataset

func (hbod HBaseObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsWebTableDataset

func (hbod HBaseObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsXeroObjectDataset

func (hbod HBaseObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) AsZohoObjectDataset

func (hbod HBaseObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for HBaseObjectDataset.

func (HBaseObjectDataset) MarshalJSON

func (hbod HBaseObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HBaseObjectDataset.

type HBaseSource

type HBaseSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

HBaseSource a copy activity HBase server source.

func (HBaseSource) AsAmazonMWSSource

func (hbs HBaseSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsAmazonRedshiftSource

func (hbs HBaseSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsAzureDataLakeStoreSource

func (hbs HBaseSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsAzureMySQLSource

func (hbs HBaseSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsAzurePostgreSQLSource

func (hbs HBaseSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsAzureTableSource

func (hbs HBaseSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsBasicCopySource

func (hbs HBaseSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsBlobSource

func (hbs HBaseSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsCassandraSource

func (hbs HBaseSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsConcurSource

func (hbs HBaseSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsCopySource

func (hbs HBaseSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsCouchbaseSource

func (hbs HBaseSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsDocumentDbCollectionSource

func (hbs HBaseSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsDrillSource

func (hbs HBaseSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsDynamicsSource

func (hbs HBaseSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsEloquaSource

func (hbs HBaseSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsFileSystemSource

func (hbs HBaseSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsGoogleBigQuerySource

func (hbs HBaseSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsGreenplumSource

func (hbs HBaseSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsHBaseSource

func (hbs HBaseSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsHTTPSource

func (hbs HBaseSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsHdfsSource

func (hbs HBaseSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsHiveSource

func (hbs HBaseSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsHubspotSource

func (hbs HBaseSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsImpalaSource

func (hbs HBaseSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsJiraSource

func (hbs HBaseSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsMagentoSource

func (hbs HBaseSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsMariaDBSource

func (hbs HBaseSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsMarketoSource

func (hbs HBaseSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsMongoDbSource

func (hbs HBaseSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsNetezzaSource

func (hbs HBaseSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsOracleSource

func (hbs HBaseSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsPaypalSource

func (hbs HBaseSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsPhoenixSource

func (hbs HBaseSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsPrestoSource

func (hbs HBaseSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsQuickBooksSource

func (hbs HBaseSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsRelationalSource

func (hbs HBaseSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsResponsysSource

func (hbs HBaseSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsSQLDWSource

func (hbs HBaseSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsSQLSource

func (hbs HBaseSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsSalesforceMarketingCloudSource

func (hbs HBaseSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsSalesforceSource

func (hbs HBaseSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsSapCloudForCustomerSource

func (hbs HBaseSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsSapEccSource

func (hbs HBaseSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsServiceNowSource

func (hbs HBaseSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsShopifySource

func (hbs HBaseSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsSparkSource

func (hbs HBaseSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsSquareSource

func (hbs HBaseSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsVerticaSource

func (hbs HBaseSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsWebSource

func (hbs HBaseSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsXeroSource

func (hbs HBaseSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) AsZohoSource

func (hbs HBaseSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for HBaseSource.

func (HBaseSource) MarshalJSON

func (hbs HBaseSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HBaseSource.

type HDInsightActivityDebugInfoOption

type HDInsightActivityDebugInfoOption string

HDInsightActivityDebugInfoOption enumerates the values for hd insight activity debug info option.

const (
	// Always ...
	Always HDInsightActivityDebugInfoOption = "Always"
	// Failure ...
	Failure HDInsightActivityDebugInfoOption = "Failure"
	// None ...
	None HDInsightActivityDebugInfoOption = "None"
)

func PossibleHDInsightActivityDebugInfoOptionValues

func PossibleHDInsightActivityDebugInfoOptionValues() []HDInsightActivityDebugInfoOption

PossibleHDInsightActivityDebugInfoOptionValues returns an array of possible values for the HDInsightActivityDebugInfoOption const type.

type HDInsightHiveActivity

type HDInsightHiveActivity struct {
	// HDInsightHiveActivityTypeProperties - HDInsight Hive activity properties.
	*HDInsightHiveActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

HDInsightHiveActivity hDInsight Hive activity type.

func (HDInsightHiveActivity) AsActivity

func (hiha HDInsightHiveActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsAzureMLBatchExecutionActivity

func (hiha HDInsightHiveActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsAzureMLUpdateResourceActivity

func (hiha HDInsightHiveActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsBasicActivity

func (hiha HDInsightHiveActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsBasicControlActivity

func (hiha HDInsightHiveActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsBasicExecutionActivity

func (hiha HDInsightHiveActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsControlActivity

func (hiha HDInsightHiveActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsCopyActivity

func (hiha HDInsightHiveActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsCustomActivity

func (hiha HDInsightHiveActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsDataLakeAnalyticsUSQLActivity

func (hiha HDInsightHiveActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsDatabricksNotebookActivity

func (hiha HDInsightHiveActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsExecutePipelineActivity

func (hiha HDInsightHiveActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsExecuteSSISPackageActivity

func (hiha HDInsightHiveActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsExecutionActivity

func (hiha HDInsightHiveActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsFilterActivity

func (hiha HDInsightHiveActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsForEachActivity

func (hiha HDInsightHiveActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsGetMetadataActivity

func (hiha HDInsightHiveActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsHDInsightHiveActivity

func (hiha HDInsightHiveActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsHDInsightMapReduceActivity

func (hiha HDInsightHiveActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsHDInsightPigActivity

func (hiha HDInsightHiveActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsHDInsightSparkActivity

func (hiha HDInsightHiveActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsHDInsightStreamingActivity

func (hiha HDInsightHiveActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsIfConditionActivity

func (hiha HDInsightHiveActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsLookupActivity

func (hiha HDInsightHiveActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsSQLServerStoredProcedureActivity

func (hiha HDInsightHiveActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsUntilActivity

func (hiha HDInsightHiveActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsWaitActivity

func (hiha HDInsightHiveActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) AsWebActivity

func (hiha HDInsightHiveActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for HDInsightHiveActivity.

func (HDInsightHiveActivity) MarshalJSON

func (hiha HDInsightHiveActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HDInsightHiveActivity.

func (*HDInsightHiveActivity) UnmarshalJSON

func (hiha *HDInsightHiveActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HDInsightHiveActivity struct.

type HDInsightHiveActivityTypeProperties

type HDInsightHiveActivityTypeProperties struct {
	// StorageLinkedServices - Storage linked service references.
	StorageLinkedServices *[]LinkedServiceReference `json:"storageLinkedServices,omitempty"`
	// Arguments - User specified arguments to HDInsightActivity.
	Arguments *[]interface{} `json:"arguments,omitempty"`
	// GetDebugInfo - Debug info option. Possible values include: 'None', 'Always', 'Failure'
	GetDebugInfo HDInsightActivityDebugInfoOption `json:"getDebugInfo,omitempty"`
	// ScriptPath - Script path. Type: string (or Expression with resultType string).
	ScriptPath interface{} `json:"scriptPath,omitempty"`
	// ScriptLinkedService - Script linked service reference.
	ScriptLinkedService *LinkedServiceReference `json:"scriptLinkedService,omitempty"`
	// Defines - Allows user to specify defines for Hive job request.
	Defines map[string]interface{} `json:"defines"`
}

HDInsightHiveActivityTypeProperties hDInsight Hive activity properties.

func (HDInsightHiveActivityTypeProperties) MarshalJSON

func (hihatp HDInsightHiveActivityTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HDInsightHiveActivityTypeProperties.

type HDInsightLinkedService

type HDInsightLinkedService struct {
	// HDInsightLinkedServiceTypeProperties - HDInsight linked service properties.
	*HDInsightLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

HDInsightLinkedService hDInsight linked service.

func (HDInsightLinkedService) AsAmazonMWSLinkedService

func (hils HDInsightLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAmazonRedshiftLinkedService

func (hils HDInsightLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAmazonS3LinkedService

func (hils HDInsightLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAzureBatchLinkedService

func (hils HDInsightLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (hils HDInsightLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAzureDataLakeStoreLinkedService

func (hils HDInsightLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAzureDatabricksLinkedService

func (hils HDInsightLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAzureKeyVaultLinkedService

func (hils HDInsightLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAzureMLLinkedService

func (hils HDInsightLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAzureMySQLLinkedService

func (hils HDInsightLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAzurePostgreSQLLinkedService

func (hils HDInsightLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAzureSQLDWLinkedService

func (hils HDInsightLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAzureSQLDatabaseLinkedService

func (hils HDInsightLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAzureSearchLinkedService

func (hils HDInsightLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsAzureStorageLinkedService

func (hils HDInsightLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsBasicLinkedService

func (hils HDInsightLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsCassandraLinkedService

func (hils HDInsightLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsConcurLinkedService

func (hils HDInsightLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsCosmosDbLinkedService

func (hils HDInsightLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsCouchbaseLinkedService

func (hils HDInsightLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsCustomDataSourceLinkedService

func (hils HDInsightLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsDb2LinkedService

func (hils HDInsightLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsDrillLinkedService

func (hils HDInsightLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsDynamicsLinkedService

func (hils HDInsightLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsEloquaLinkedService

func (hils HDInsightLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsFileServerLinkedService

func (hils HDInsightLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsFtpServerLinkedService

func (hils HDInsightLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsGoogleBigQueryLinkedService

func (hils HDInsightLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsGreenplumLinkedService

func (hils HDInsightLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsHBaseLinkedService

func (hils HDInsightLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsHDInsightLinkedService

func (hils HDInsightLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsHDInsightOnDemandLinkedService

func (hils HDInsightLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsHTTPLinkedService

func (hils HDInsightLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsHdfsLinkedService

func (hils HDInsightLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsHiveLinkedService

func (hils HDInsightLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsHubspotLinkedService

func (hils HDInsightLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsImpalaLinkedService

func (hils HDInsightLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsJiraLinkedService

func (hils HDInsightLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsLinkedService

func (hils HDInsightLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsMagentoLinkedService

func (hils HDInsightLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsMariaDBLinkedService

func (hils HDInsightLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsMarketoLinkedService

func (hils HDInsightLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsMongoDbLinkedService

func (hils HDInsightLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsMySQLLinkedService

func (hils HDInsightLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsNetezzaLinkedService

func (hils HDInsightLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsODataLinkedService

func (hils HDInsightLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsOdbcLinkedService

func (hils HDInsightLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsOracleLinkedService

func (hils HDInsightLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsPaypalLinkedService

func (hils HDInsightLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsPhoenixLinkedService

func (hils HDInsightLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsPostgreSQLLinkedService

func (hils HDInsightLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsPrestoLinkedService

func (hils HDInsightLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsQuickBooksLinkedService

func (hils HDInsightLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsResponsysLinkedService

func (hils HDInsightLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsSQLServerLinkedService

func (hils HDInsightLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsSalesforceLinkedService

func (hils HDInsightLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsSalesforceMarketingCloudLinkedService

func (hils HDInsightLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsSapBWLinkedService

func (hils HDInsightLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsSapCloudForCustomerLinkedService

func (hils HDInsightLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsSapEccLinkedService

func (hils HDInsightLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsSapHanaLinkedService

func (hils HDInsightLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsServiceNowLinkedService

func (hils HDInsightLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsSftpServerLinkedService

func (hils HDInsightLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsShopifyLinkedService

func (hils HDInsightLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsSparkLinkedService

func (hils HDInsightLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsSquareLinkedService

func (hils HDInsightLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsSybaseLinkedService

func (hils HDInsightLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsTeradataLinkedService

func (hils HDInsightLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsVerticaLinkedService

func (hils HDInsightLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsWebLinkedService

func (hils HDInsightLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsXeroLinkedService

func (hils HDInsightLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) AsZohoLinkedService

func (hils HDInsightLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for HDInsightLinkedService.

func (HDInsightLinkedService) MarshalJSON

func (hils HDInsightLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HDInsightLinkedService.

func (*HDInsightLinkedService) UnmarshalJSON

func (hils *HDInsightLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HDInsightLinkedService struct.

type HDInsightLinkedServiceTypeProperties

type HDInsightLinkedServiceTypeProperties struct {
	// ClusterURI - HDInsight cluster URI. Type: string (or Expression with resultType string).
	ClusterURI interface{} `json:"clusterUri,omitempty"`
	// UserName - HDInsight cluster user name. Type: string (or Expression with resultType string).
	UserName interface{} `json:"userName,omitempty"`
	// Password - HDInsight cluster password.
	Password BasicSecretBase `json:"password,omitempty"`
	// LinkedServiceName - The Azure Storage linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// HcatalogLinkedServiceName - A reference to the Azure SQL linked service that points to the HCatalog database.
	HcatalogLinkedServiceName *LinkedServiceReference `json:"hcatalogLinkedServiceName,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

HDInsightLinkedServiceTypeProperties hDInsight linked service properties.

func (*HDInsightLinkedServiceTypeProperties) UnmarshalJSON

func (hilstp *HDInsightLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HDInsightLinkedServiceTypeProperties struct.

type HDInsightMapReduceActivity

type HDInsightMapReduceActivity struct {
	// HDInsightMapReduceActivityTypeProperties - HDInsight MapReduce activity properties.
	*HDInsightMapReduceActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

HDInsightMapReduceActivity hDInsight MapReduce activity type.

func (HDInsightMapReduceActivity) AsActivity

func (himra HDInsightMapReduceActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsAzureMLBatchExecutionActivity

func (himra HDInsightMapReduceActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsAzureMLUpdateResourceActivity

func (himra HDInsightMapReduceActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsBasicActivity

func (himra HDInsightMapReduceActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsBasicControlActivity

func (himra HDInsightMapReduceActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsBasicExecutionActivity

func (himra HDInsightMapReduceActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsControlActivity

func (himra HDInsightMapReduceActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsCopyActivity

func (himra HDInsightMapReduceActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsCustomActivity

func (himra HDInsightMapReduceActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsDataLakeAnalyticsUSQLActivity

func (himra HDInsightMapReduceActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsDatabricksNotebookActivity

func (himra HDInsightMapReduceActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsExecutePipelineActivity

func (himra HDInsightMapReduceActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsExecuteSSISPackageActivity

func (himra HDInsightMapReduceActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsExecutionActivity

func (himra HDInsightMapReduceActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsFilterActivity

func (himra HDInsightMapReduceActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsForEachActivity

func (himra HDInsightMapReduceActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsGetMetadataActivity

func (himra HDInsightMapReduceActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsHDInsightHiveActivity

func (himra HDInsightMapReduceActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsHDInsightMapReduceActivity

func (himra HDInsightMapReduceActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsHDInsightPigActivity

func (himra HDInsightMapReduceActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsHDInsightSparkActivity

func (himra HDInsightMapReduceActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsHDInsightStreamingActivity

func (himra HDInsightMapReduceActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsIfConditionActivity

func (himra HDInsightMapReduceActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsLookupActivity

func (himra HDInsightMapReduceActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsSQLServerStoredProcedureActivity

func (himra HDInsightMapReduceActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsUntilActivity

func (himra HDInsightMapReduceActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsWaitActivity

func (himra HDInsightMapReduceActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) AsWebActivity

func (himra HDInsightMapReduceActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for HDInsightMapReduceActivity.

func (HDInsightMapReduceActivity) MarshalJSON

func (himra HDInsightMapReduceActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HDInsightMapReduceActivity.

func (*HDInsightMapReduceActivity) UnmarshalJSON

func (himra *HDInsightMapReduceActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HDInsightMapReduceActivity struct.

type HDInsightMapReduceActivityTypeProperties

type HDInsightMapReduceActivityTypeProperties struct {
	// StorageLinkedServices - Storage linked service references.
	StorageLinkedServices *[]LinkedServiceReference `json:"storageLinkedServices,omitempty"`
	// Arguments - User specified arguments to HDInsightActivity.
	Arguments *[]interface{} `json:"arguments,omitempty"`
	// GetDebugInfo - Debug info option. Possible values include: 'None', 'Always', 'Failure'
	GetDebugInfo HDInsightActivityDebugInfoOption `json:"getDebugInfo,omitempty"`
	// ClassName - Class name. Type: string (or Expression with resultType string).
	ClassName interface{} `json:"className,omitempty"`
	// JarFilePath - Jar path. Type: string (or Expression with resultType string).
	JarFilePath interface{} `json:"jarFilePath,omitempty"`
	// JarLinkedService - Jar linked service reference.
	JarLinkedService *LinkedServiceReference `json:"jarLinkedService,omitempty"`
	// JarLibs - Jar libs.
	JarLibs *[]interface{} `json:"jarLibs,omitempty"`
	// Defines - Allows user to specify defines for the MapReduce job request.
	Defines map[string]interface{} `json:"defines"`
}

HDInsightMapReduceActivityTypeProperties hDInsight MapReduce activity properties.

func (HDInsightMapReduceActivityTypeProperties) MarshalJSON

func (himratp HDInsightMapReduceActivityTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HDInsightMapReduceActivityTypeProperties.

type HDInsightOnDemandLinkedService

type HDInsightOnDemandLinkedService struct {
	// HDInsightOnDemandLinkedServiceTypeProperties - HDInsight ondemand linked service properties.
	*HDInsightOnDemandLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

HDInsightOnDemandLinkedService hDInsight ondemand linked service.

func (HDInsightOnDemandLinkedService) AsAmazonMWSLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAmazonRedshiftLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAmazonS3LinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAzureBatchLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAzureDataLakeStoreLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAzureDatabricksLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAzureKeyVaultLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAzureMLLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAzureMySQLLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAzurePostgreSQLLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAzureSQLDWLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAzureSQLDatabaseLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAzureSearchLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsAzureStorageLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsBasicLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsCassandraLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsConcurLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsCosmosDbLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsCouchbaseLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsCustomDataSourceLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsDb2LinkedService

func (hiodls HDInsightOnDemandLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsDrillLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsDynamicsLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsEloquaLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsFileServerLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsFtpServerLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsGoogleBigQueryLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsGreenplumLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsHBaseLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsHDInsightLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsHDInsightOnDemandLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsHTTPLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsHdfsLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsHiveLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsHubspotLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsImpalaLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsJiraLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsMagentoLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsMariaDBLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsMarketoLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsMongoDbLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsMySQLLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsNetezzaLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsODataLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsOdbcLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsOracleLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsPaypalLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsPhoenixLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsPostgreSQLLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsPrestoLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsQuickBooksLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsResponsysLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsSQLServerLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsSalesforceLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsSalesforceMarketingCloudLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsSapBWLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsSapCloudForCustomerLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsSapEccLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsSapHanaLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsServiceNowLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsSftpServerLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsShopifyLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsSparkLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsSquareLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsSybaseLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsTeradataLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsVerticaLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsWebLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsXeroLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) AsZohoLinkedService

func (hiodls HDInsightOnDemandLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for HDInsightOnDemandLinkedService.

func (HDInsightOnDemandLinkedService) MarshalJSON

func (hiodls HDInsightOnDemandLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HDInsightOnDemandLinkedService.

func (*HDInsightOnDemandLinkedService) UnmarshalJSON

func (hiodls *HDInsightOnDemandLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HDInsightOnDemandLinkedService struct.

type HDInsightOnDemandLinkedServiceTypeProperties

type HDInsightOnDemandLinkedServiceTypeProperties struct {
	// ClusterSize - Number of worker/data nodes in the cluster. Suggestion value: 4. Type: string (or Expression with resultType string).
	ClusterSize interface{} `json:"clusterSize,omitempty"`
	// TimeToLive - The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string).
	TimeToLive interface{} `json:"timeToLive,omitempty"`
	// Version - Version of the HDInsight cluster.  Type: string (or Expression with resultType string).
	Version interface{} `json:"version,omitempty"`
	// LinkedServiceName - Azure Storage linked service to be used by the on-demand cluster for storing and processing data.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// HostSubscriptionID - The customer’s subscription to host the cluster. Type: string (or Expression with resultType string).
	HostSubscriptionID interface{} `json:"hostSubscriptionId,omitempty"`
	// ServicePrincipalID - The service principal id for the hostSubscriptionId. Type: string (or Expression with resultType string).
	ServicePrincipalID interface{} `json:"servicePrincipalId,omitempty"`
	// ServicePrincipalKey - The key for the service principal id.
	ServicePrincipalKey BasicSecretBase `json:"servicePrincipalKey,omitempty"`
	// Tenant - The Tenant id/name to which the service principal belongs. Type: string (or Expression with resultType string).
	Tenant interface{} `json:"tenant,omitempty"`
	// ClusterResourceGroup - The resource group where the cluster belongs. Type: string (or Expression with resultType string).
	ClusterResourceGroup interface{} `json:"clusterResourceGroup,omitempty"`
	// ClusterNamePrefix - The prefix of cluster name, postfix will be distinct with timestamp. Type: string (or Expression with resultType string).
	ClusterNamePrefix interface{} `json:"clusterNamePrefix,omitempty"`
	// ClusterUserName - The username to access the cluster. Type: string (or Expression with resultType string).
	ClusterUserName interface{} `json:"clusterUserName,omitempty"`
	// ClusterPassword - The password to access the cluster.
	ClusterPassword BasicSecretBase `json:"clusterPassword,omitempty"`
	// ClusterSSHUserName - The username to SSH remotely connect to cluster’s node (for Linux). Type: string (or Expression with resultType string).
	ClusterSSHUserName interface{} `json:"clusterSshUserName,omitempty"`
	// ClusterSSHPassword - The password to SSH remotely connect cluster’s node (for Linux).
	ClusterSSHPassword BasicSecretBase `json:"clusterSshPassword,omitempty"`
	// AdditionalLinkedServiceNames - Specifies additional storage accounts for the HDInsight linked service so that the Data Factory service can register them on your behalf.
	AdditionalLinkedServiceNames *[]LinkedServiceReference `json:"additionalLinkedServiceNames,omitempty"`
	// HcatalogLinkedServiceName - The name of Azure SQL linked service that point to the HCatalog database. The on-demand HDInsight cluster is created by using the Azure SQL database as the metastore.
	HcatalogLinkedServiceName *LinkedServiceReference `json:"hcatalogLinkedServiceName,omitempty"`
	// ClusterType - The cluster type. Type: string (or Expression with resultType string).
	ClusterType interface{} `json:"clusterType,omitempty"`
	// SparkVersion - The version of spark if the cluster type is 'spark'. Type: string (or Expression with resultType string).
	SparkVersion interface{} `json:"sparkVersion,omitempty"`
	// CoreConfiguration - Specifies the core configuration parameters (as in core-site.xml) for the HDInsight cluster to be created.
	CoreConfiguration interface{} `json:"coreConfiguration,omitempty"`
	// HBaseConfiguration - Specifies the HBase configuration parameters (hbase-site.xml) for the HDInsight cluster.
	HBaseConfiguration interface{} `json:"hBaseConfiguration,omitempty"`
	// HdfsConfiguration - Specifies the HDFS configuration parameters (hdfs-site.xml) for the HDInsight cluster.
	HdfsConfiguration interface{} `json:"hdfsConfiguration,omitempty"`
	// HiveConfiguration - Specifies the hive configuration parameters (hive-site.xml) for the HDInsight cluster.
	HiveConfiguration interface{} `json:"hiveConfiguration,omitempty"`
	// MapReduceConfiguration - Specifies the MapReduce configuration parameters (mapred-site.xml) for the HDInsight cluster.
	MapReduceConfiguration interface{} `json:"mapReduceConfiguration,omitempty"`
	// OozieConfiguration - Specifies the Oozie configuration parameters (oozie-site.xml) for the HDInsight cluster.
	OozieConfiguration interface{} `json:"oozieConfiguration,omitempty"`
	// StormConfiguration - Specifies the Storm configuration parameters (storm-site.xml) for the HDInsight cluster.
	StormConfiguration interface{} `json:"stormConfiguration,omitempty"`
	// YarnConfiguration - Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster.
	YarnConfiguration interface{} `json:"yarnConfiguration,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
	// HeadNodeSize - Specifies the size of the head node for the HDInsight cluster.
	HeadNodeSize interface{} `json:"headNodeSize,omitempty"`
	// DataNodeSize - Specifies the size of the data node for the HDInsight cluster.
	DataNodeSize interface{} `json:"dataNodeSize,omitempty"`
	// ZookeeperNodeSize - Specifies the size of the Zoo Keeper node for the HDInsight cluster.
	ZookeeperNodeSize interface{} `json:"zookeeperNodeSize,omitempty"`
}

HDInsightOnDemandLinkedServiceTypeProperties hDInsight ondemand linked service properties.

func (*HDInsightOnDemandLinkedServiceTypeProperties) UnmarshalJSON

func (hiodlstp *HDInsightOnDemandLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HDInsightOnDemandLinkedServiceTypeProperties struct.

type HDInsightPigActivity

type HDInsightPigActivity struct {
	// HDInsightPigActivityTypeProperties - HDInsight Pig activity properties.
	*HDInsightPigActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

HDInsightPigActivity hDInsight Pig activity type.

func (HDInsightPigActivity) AsActivity

func (hipa HDInsightPigActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsAzureMLBatchExecutionActivity

func (hipa HDInsightPigActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsAzureMLUpdateResourceActivity

func (hipa HDInsightPigActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsBasicActivity

func (hipa HDInsightPigActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsBasicControlActivity

func (hipa HDInsightPigActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsBasicExecutionActivity

func (hipa HDInsightPigActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsControlActivity

func (hipa HDInsightPigActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsCopyActivity

func (hipa HDInsightPigActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsCustomActivity

func (hipa HDInsightPigActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsDataLakeAnalyticsUSQLActivity

func (hipa HDInsightPigActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsDatabricksNotebookActivity

func (hipa HDInsightPigActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsExecutePipelineActivity

func (hipa HDInsightPigActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsExecuteSSISPackageActivity

func (hipa HDInsightPigActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsExecutionActivity

func (hipa HDInsightPigActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsFilterActivity

func (hipa HDInsightPigActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsForEachActivity

func (hipa HDInsightPigActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsGetMetadataActivity

func (hipa HDInsightPigActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsHDInsightHiveActivity

func (hipa HDInsightPigActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsHDInsightMapReduceActivity

func (hipa HDInsightPigActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsHDInsightPigActivity

func (hipa HDInsightPigActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsHDInsightSparkActivity

func (hipa HDInsightPigActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsHDInsightStreamingActivity

func (hipa HDInsightPigActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsIfConditionActivity

func (hipa HDInsightPigActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsLookupActivity

func (hipa HDInsightPigActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsSQLServerStoredProcedureActivity

func (hipa HDInsightPigActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsUntilActivity

func (hipa HDInsightPigActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsWaitActivity

func (hipa HDInsightPigActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) AsWebActivity

func (hipa HDInsightPigActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for HDInsightPigActivity.

func (HDInsightPigActivity) MarshalJSON

func (hipa HDInsightPigActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HDInsightPigActivity.

func (*HDInsightPigActivity) UnmarshalJSON

func (hipa *HDInsightPigActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HDInsightPigActivity struct.

type HDInsightPigActivityTypeProperties

type HDInsightPigActivityTypeProperties struct {
	// StorageLinkedServices - Storage linked service references.
	StorageLinkedServices *[]LinkedServiceReference `json:"storageLinkedServices,omitempty"`
	// Arguments - User specified arguments to HDInsightActivity.
	Arguments *[]interface{} `json:"arguments,omitempty"`
	// GetDebugInfo - Debug info option. Possible values include: 'None', 'Always', 'Failure'
	GetDebugInfo HDInsightActivityDebugInfoOption `json:"getDebugInfo,omitempty"`
	// ScriptPath - Script path. Type: string (or Expression with resultType string).
	ScriptPath interface{} `json:"scriptPath,omitempty"`
	// ScriptLinkedService - Script linked service reference.
	ScriptLinkedService *LinkedServiceReference `json:"scriptLinkedService,omitempty"`
	// Defines - Allows user to specify defines for Pig job request.
	Defines map[string]interface{} `json:"defines"`
}

HDInsightPigActivityTypeProperties hDInsight Pig activity properties.

func (HDInsightPigActivityTypeProperties) MarshalJSON

func (hipatp HDInsightPigActivityTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HDInsightPigActivityTypeProperties.

type HDInsightSparkActivity

type HDInsightSparkActivity struct {
	// HDInsightSparkActivityTypeProperties - HDInsight spark activity properties.
	*HDInsightSparkActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

HDInsightSparkActivity hDInsight Spark activity.

func (HDInsightSparkActivity) AsActivity

func (hisa HDInsightSparkActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsAzureMLBatchExecutionActivity

func (hisa HDInsightSparkActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsAzureMLUpdateResourceActivity

func (hisa HDInsightSparkActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsBasicActivity

func (hisa HDInsightSparkActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsBasicControlActivity

func (hisa HDInsightSparkActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsBasicExecutionActivity

func (hisa HDInsightSparkActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsControlActivity

func (hisa HDInsightSparkActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsCopyActivity

func (hisa HDInsightSparkActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsCustomActivity

func (hisa HDInsightSparkActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsDataLakeAnalyticsUSQLActivity

func (hisa HDInsightSparkActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsDatabricksNotebookActivity

func (hisa HDInsightSparkActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsExecutePipelineActivity

func (hisa HDInsightSparkActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsExecuteSSISPackageActivity

func (hisa HDInsightSparkActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsExecutionActivity

func (hisa HDInsightSparkActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsFilterActivity

func (hisa HDInsightSparkActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsForEachActivity

func (hisa HDInsightSparkActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsGetMetadataActivity

func (hisa HDInsightSparkActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsHDInsightHiveActivity

func (hisa HDInsightSparkActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsHDInsightMapReduceActivity

func (hisa HDInsightSparkActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsHDInsightPigActivity

func (hisa HDInsightSparkActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsHDInsightSparkActivity

func (hisa HDInsightSparkActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsHDInsightStreamingActivity

func (hisa HDInsightSparkActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsIfConditionActivity

func (hisa HDInsightSparkActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsLookupActivity

func (hisa HDInsightSparkActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsSQLServerStoredProcedureActivity

func (hisa HDInsightSparkActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsUntilActivity

func (hisa HDInsightSparkActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsWaitActivity

func (hisa HDInsightSparkActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) AsWebActivity

func (hisa HDInsightSparkActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for HDInsightSparkActivity.

func (HDInsightSparkActivity) MarshalJSON

func (hisa HDInsightSparkActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HDInsightSparkActivity.

func (*HDInsightSparkActivity) UnmarshalJSON

func (hisa *HDInsightSparkActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HDInsightSparkActivity struct.

type HDInsightSparkActivityTypeProperties

type HDInsightSparkActivityTypeProperties struct {
	// RootPath - The root path in 'sparkJobLinkedService' for all the job’s files. Type: string (or Expression with resultType string).
	RootPath interface{} `json:"rootPath,omitempty"`
	// EntryFilePath - The relative path to the root folder of the code/package to be executed. Type: string (or Expression with resultType string).
	EntryFilePath interface{} `json:"entryFilePath,omitempty"`
	// Arguments - The user-specified arguments to HDInsightSparkActivity.
	Arguments *[]interface{} `json:"arguments,omitempty"`
	// GetDebugInfo - Debug info option. Possible values include: 'None', 'Always', 'Failure'
	GetDebugInfo HDInsightActivityDebugInfoOption `json:"getDebugInfo,omitempty"`
	// SparkJobLinkedService - The storage linked service for uploading the entry file and dependencies, and for receiving logs.
	SparkJobLinkedService *LinkedServiceReference `json:"sparkJobLinkedService,omitempty"`
	// ClassName - The application's Java/Spark main class.
	ClassName *string `json:"className,omitempty"`
	// ProxyUser - The user to impersonate that will execute the job. Type: string (or Expression with resultType string).
	ProxyUser interface{} `json:"proxyUser,omitempty"`
	// SparkConfig - Spark configuration property.
	SparkConfig map[string]interface{} `json:"sparkConfig"`
}

HDInsightSparkActivityTypeProperties hDInsight spark activity properties.

func (HDInsightSparkActivityTypeProperties) MarshalJSON

func (hisatp HDInsightSparkActivityTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HDInsightSparkActivityTypeProperties.

type HDInsightStreamingActivity

type HDInsightStreamingActivity struct {
	// HDInsightStreamingActivityTypeProperties - HDInsight streaming activity properties.
	*HDInsightStreamingActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

HDInsightStreamingActivity hDInsight streaming activity type.

func (HDInsightStreamingActivity) AsActivity

func (hisa HDInsightStreamingActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsAzureMLBatchExecutionActivity

func (hisa HDInsightStreamingActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsAzureMLUpdateResourceActivity

func (hisa HDInsightStreamingActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsBasicActivity

func (hisa HDInsightStreamingActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsBasicControlActivity

func (hisa HDInsightStreamingActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsBasicExecutionActivity

func (hisa HDInsightStreamingActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsControlActivity

func (hisa HDInsightStreamingActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsCopyActivity

func (hisa HDInsightStreamingActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsCustomActivity

func (hisa HDInsightStreamingActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsDataLakeAnalyticsUSQLActivity

func (hisa HDInsightStreamingActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsDatabricksNotebookActivity

func (hisa HDInsightStreamingActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsExecutePipelineActivity

func (hisa HDInsightStreamingActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsExecuteSSISPackageActivity

func (hisa HDInsightStreamingActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsExecutionActivity

func (hisa HDInsightStreamingActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsFilterActivity

func (hisa HDInsightStreamingActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsForEachActivity

func (hisa HDInsightStreamingActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsGetMetadataActivity

func (hisa HDInsightStreamingActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsHDInsightHiveActivity

func (hisa HDInsightStreamingActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsHDInsightMapReduceActivity

func (hisa HDInsightStreamingActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsHDInsightPigActivity

func (hisa HDInsightStreamingActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsHDInsightSparkActivity

func (hisa HDInsightStreamingActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsHDInsightStreamingActivity

func (hisa HDInsightStreamingActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsIfConditionActivity

func (hisa HDInsightStreamingActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsLookupActivity

func (hisa HDInsightStreamingActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsSQLServerStoredProcedureActivity

func (hisa HDInsightStreamingActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsUntilActivity

func (hisa HDInsightStreamingActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsWaitActivity

func (hisa HDInsightStreamingActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) AsWebActivity

func (hisa HDInsightStreamingActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for HDInsightStreamingActivity.

func (HDInsightStreamingActivity) MarshalJSON

func (hisa HDInsightStreamingActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HDInsightStreamingActivity.

func (*HDInsightStreamingActivity) UnmarshalJSON

func (hisa *HDInsightStreamingActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HDInsightStreamingActivity struct.

type HDInsightStreamingActivityTypeProperties

type HDInsightStreamingActivityTypeProperties struct {
	// StorageLinkedServices - Storage linked service references.
	StorageLinkedServices *[]LinkedServiceReference `json:"storageLinkedServices,omitempty"`
	// Arguments - User specified arguments to HDInsightActivity.
	Arguments *[]interface{} `json:"arguments,omitempty"`
	// GetDebugInfo - Debug info option. Possible values include: 'None', 'Always', 'Failure'
	GetDebugInfo HDInsightActivityDebugInfoOption `json:"getDebugInfo,omitempty"`
	// Mapper - Mapper executable name. Type: string (or Expression with resultType string).
	Mapper interface{} `json:"mapper,omitempty"`
	// Reducer - Reducer executable name. Type: string (or Expression with resultType string).
	Reducer interface{} `json:"reducer,omitempty"`
	// Input - Input blob path. Type: string (or Expression with resultType string).
	Input interface{} `json:"input,omitempty"`
	// Output - Output blob path. Type: string (or Expression with resultType string).
	Output interface{} `json:"output,omitempty"`
	// FilePaths - Paths to streaming job files. Can be directories.
	FilePaths *[]interface{} `json:"filePaths,omitempty"`
	// FileLinkedService - Linked service reference where the files are located.
	FileLinkedService *LinkedServiceReference `json:"fileLinkedService,omitempty"`
	// Combiner - Combiner executable name. Type: string (or Expression with resultType string).
	Combiner interface{} `json:"combiner,omitempty"`
	// CommandEnvironment - Command line environment values.
	CommandEnvironment *[]interface{} `json:"commandEnvironment,omitempty"`
	// Defines - Allows user to specify defines for streaming job request.
	Defines map[string]interface{} `json:"defines"`
}

HDInsightStreamingActivityTypeProperties hDInsight streaming activity properties.

func (HDInsightStreamingActivityTypeProperties) MarshalJSON

func (hisatp HDInsightStreamingActivityTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HDInsightStreamingActivityTypeProperties.

type HTTPAuthenticationType

type HTTPAuthenticationType string

HTTPAuthenticationType enumerates the values for http authentication type.

const (
	// HTTPAuthenticationTypeAnonymous ...
	HTTPAuthenticationTypeAnonymous HTTPAuthenticationType = "Anonymous"
	// HTTPAuthenticationTypeBasic ...
	HTTPAuthenticationTypeBasic HTTPAuthenticationType = "Basic"
	// HTTPAuthenticationTypeClientCertificate ...
	HTTPAuthenticationTypeClientCertificate HTTPAuthenticationType = "ClientCertificate"
	// HTTPAuthenticationTypeDigest ...
	HTTPAuthenticationTypeDigest HTTPAuthenticationType = "Digest"
	// HTTPAuthenticationTypeWindows ...
	HTTPAuthenticationTypeWindows HTTPAuthenticationType = "Windows"
)

func PossibleHTTPAuthenticationTypeValues

func PossibleHTTPAuthenticationTypeValues() []HTTPAuthenticationType

PossibleHTTPAuthenticationTypeValues returns an array of possible values for the HTTPAuthenticationType const type.

type HTTPDataset

type HTTPDataset struct {
	// HTTPDatasetTypeProperties - Properties specific to this dataset type.
	*HTTPDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

HTTPDataset a file in an HTTP web server.

func (HTTPDataset) AsAmazonMWSObjectDataset

func (hd HTTPDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsAmazonS3Dataset

func (hd HTTPDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsAzureBlobDataset

func (hd HTTPDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsAzureDataLakeStoreDataset

func (hd HTTPDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsAzureMySQLTableDataset

func (hd HTTPDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsAzurePostgreSQLTableDataset

func (hd HTTPDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsAzureSQLDWTableDataset

func (hd HTTPDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsAzureSQLTableDataset

func (hd HTTPDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsAzureSearchIndexDataset

func (hd HTTPDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsAzureTableDataset

func (hd HTTPDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsBasicDataset

func (hd HTTPDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsCassandraTableDataset

func (hd HTTPDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsConcurObjectDataset

func (hd HTTPDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsCouchbaseTableDataset

func (hd HTTPDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsCustomDataset

func (hd HTTPDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsDataset

func (hd HTTPDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsDocumentDbCollectionDataset

func (hd HTTPDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsDrillTableDataset

func (hd HTTPDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsDynamicsEntityDataset

func (hd HTTPDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsEloquaObjectDataset

func (hd HTTPDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsFileShareDataset

func (hd HTTPDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsGoogleBigQueryObjectDataset

func (hd HTTPDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsGreenplumTableDataset

func (hd HTTPDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsHBaseObjectDataset

func (hd HTTPDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsHTTPDataset

func (hd HTTPDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsHiveObjectDataset

func (hd HTTPDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsHubspotObjectDataset

func (hd HTTPDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsImpalaObjectDataset

func (hd HTTPDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsJiraObjectDataset

func (hd HTTPDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsMagentoObjectDataset

func (hd HTTPDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsMariaDBTableDataset

func (hd HTTPDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsMarketoObjectDataset

func (hd HTTPDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsMongoDbCollectionDataset

func (hd HTTPDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsNetezzaTableDataset

func (hd HTTPDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsODataResourceDataset

func (hd HTTPDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsOracleTableDataset

func (hd HTTPDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsPaypalObjectDataset

func (hd HTTPDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsPhoenixObjectDataset

func (hd HTTPDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsPrestoObjectDataset

func (hd HTTPDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsQuickBooksObjectDataset

func (hd HTTPDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsRelationalTableDataset

func (hd HTTPDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsResponsysObjectDataset

func (hd HTTPDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsSQLServerTableDataset

func (hd HTTPDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsSalesforceMarketingCloudObjectDataset

func (hd HTTPDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsSalesforceObjectDataset

func (hd HTTPDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsSapCloudForCustomerResourceDataset

func (hd HTTPDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsSapEccResourceDataset

func (hd HTTPDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsServiceNowObjectDataset

func (hd HTTPDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsShopifyObjectDataset

func (hd HTTPDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsSparkObjectDataset

func (hd HTTPDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsSquareObjectDataset

func (hd HTTPDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsVerticaTableDataset

func (hd HTTPDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsWebTableDataset

func (hd HTTPDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsXeroObjectDataset

func (hd HTTPDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) AsZohoObjectDataset

func (hd HTTPDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for HTTPDataset.

func (HTTPDataset) MarshalJSON

func (hd HTTPDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HTTPDataset.

func (*HTTPDataset) UnmarshalJSON

func (hd *HTTPDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HTTPDataset struct.

type HTTPDatasetTypeProperties

type HTTPDatasetTypeProperties struct {
	// RelativeURL - The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
	RelativeURL interface{} `json:"relativeUrl,omitempty"`
	// RequestMethod - The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
	RequestMethod interface{} `json:"requestMethod,omitempty"`
	// RequestBody - The body for the HTTP request. Type: string (or Expression with resultType string).
	RequestBody interface{} `json:"requestBody,omitempty"`
	// AdditionalHeaders - The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1
	// ...
	// request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
	AdditionalHeaders interface{} `json:"additionalHeaders,omitempty"`
	// Format - The format of files.
	Format BasicDatasetStorageFormat `json:"format,omitempty"`
	// Compression - The data compression method used on files.
	Compression BasicDatasetCompression `json:"compression,omitempty"`
}

HTTPDatasetTypeProperties properties specific to this dataset type.

func (*HTTPDatasetTypeProperties) UnmarshalJSON

func (hdtp *HTTPDatasetTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HTTPDatasetTypeProperties struct.

type HTTPLinkedService

type HTTPLinkedService struct {
	// HTTPLinkedServiceTypeProperties - Properties specific to this linked service type.
	*HTTPLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

HTTPLinkedService linked service for an HTTP source.

func (HTTPLinkedService) AsAmazonMWSLinkedService

func (hls HTTPLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAmazonRedshiftLinkedService

func (hls HTTPLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAmazonS3LinkedService

func (hls HTTPLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAzureBatchLinkedService

func (hls HTTPLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (hls HTTPLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAzureDataLakeStoreLinkedService

func (hls HTTPLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAzureDatabricksLinkedService

func (hls HTTPLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAzureKeyVaultLinkedService

func (hls HTTPLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAzureMLLinkedService

func (hls HTTPLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAzureMySQLLinkedService

func (hls HTTPLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAzurePostgreSQLLinkedService

func (hls HTTPLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAzureSQLDWLinkedService

func (hls HTTPLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAzureSQLDatabaseLinkedService

func (hls HTTPLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAzureSearchLinkedService

func (hls HTTPLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsAzureStorageLinkedService

func (hls HTTPLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsBasicLinkedService

func (hls HTTPLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsCassandraLinkedService

func (hls HTTPLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsConcurLinkedService

func (hls HTTPLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsCosmosDbLinkedService

func (hls HTTPLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsCouchbaseLinkedService

func (hls HTTPLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsCustomDataSourceLinkedService

func (hls HTTPLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsDb2LinkedService

func (hls HTTPLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsDrillLinkedService

func (hls HTTPLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsDynamicsLinkedService

func (hls HTTPLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsEloquaLinkedService

func (hls HTTPLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsFileServerLinkedService

func (hls HTTPLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsFtpServerLinkedService

func (hls HTTPLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsGoogleBigQueryLinkedService

func (hls HTTPLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsGreenplumLinkedService

func (hls HTTPLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsHBaseLinkedService

func (hls HTTPLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsHDInsightLinkedService

func (hls HTTPLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsHDInsightOnDemandLinkedService

func (hls HTTPLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsHTTPLinkedService

func (hls HTTPLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsHdfsLinkedService

func (hls HTTPLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsHiveLinkedService

func (hls HTTPLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsHubspotLinkedService

func (hls HTTPLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsImpalaLinkedService

func (hls HTTPLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsJiraLinkedService

func (hls HTTPLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsLinkedService

func (hls HTTPLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsMagentoLinkedService

func (hls HTTPLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsMariaDBLinkedService

func (hls HTTPLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsMarketoLinkedService

func (hls HTTPLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsMongoDbLinkedService

func (hls HTTPLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsMySQLLinkedService

func (hls HTTPLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsNetezzaLinkedService

func (hls HTTPLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsODataLinkedService

func (hls HTTPLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsOdbcLinkedService

func (hls HTTPLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsOracleLinkedService

func (hls HTTPLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsPaypalLinkedService

func (hls HTTPLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsPhoenixLinkedService

func (hls HTTPLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsPostgreSQLLinkedService

func (hls HTTPLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsPrestoLinkedService

func (hls HTTPLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsQuickBooksLinkedService

func (hls HTTPLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsResponsysLinkedService

func (hls HTTPLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsSQLServerLinkedService

func (hls HTTPLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsSalesforceLinkedService

func (hls HTTPLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsSalesforceMarketingCloudLinkedService

func (hls HTTPLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsSapBWLinkedService

func (hls HTTPLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsSapCloudForCustomerLinkedService

func (hls HTTPLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsSapEccLinkedService

func (hls HTTPLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsSapHanaLinkedService

func (hls HTTPLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsServiceNowLinkedService

func (hls HTTPLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsSftpServerLinkedService

func (hls HTTPLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsShopifyLinkedService

func (hls HTTPLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsSparkLinkedService

func (hls HTTPLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsSquareLinkedService

func (hls HTTPLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsSybaseLinkedService

func (hls HTTPLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsTeradataLinkedService

func (hls HTTPLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsVerticaLinkedService

func (hls HTTPLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsWebLinkedService

func (hls HTTPLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsXeroLinkedService

func (hls HTTPLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) AsZohoLinkedService

func (hls HTTPLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for HTTPLinkedService.

func (HTTPLinkedService) MarshalJSON

func (hls HTTPLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HTTPLinkedService.

func (*HTTPLinkedService) UnmarshalJSON

func (hls *HTTPLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HTTPLinkedService struct.

type HTTPLinkedServiceTypeProperties

type HTTPLinkedServiceTypeProperties struct {
	// URL - The base URL of the HTTP endpoint, e.g. http://www.microsoft.com. Type: string (or Expression with resultType string).
	URL interface{} `json:"url,omitempty"`
	// AuthenticationType - The authentication type to be used to connect to the HTTP server. Possible values include: 'HTTPAuthenticationTypeBasic', 'HTTPAuthenticationTypeAnonymous', 'HTTPAuthenticationTypeDigest', 'HTTPAuthenticationTypeWindows', 'HTTPAuthenticationTypeClientCertificate'
	AuthenticationType HTTPAuthenticationType `json:"authenticationType,omitempty"`
	// UserName - User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
	UserName interface{} `json:"userName,omitempty"`
	// Password - Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// EmbeddedCertData - Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
	EmbeddedCertData interface{} `json:"embeddedCertData,omitempty"`
	// CertThumbprint - Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
	CertThumbprint interface{} `json:"certThumbprint,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
	// EnableServerCertificateValidation - If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
	EnableServerCertificateValidation interface{} `json:"enableServerCertificateValidation,omitempty"`
}

HTTPLinkedServiceTypeProperties properties specific to this linked service type.

func (*HTTPLinkedServiceTypeProperties) UnmarshalJSON

func (hlstp *HTTPLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HTTPLinkedServiceTypeProperties struct.

type HTTPSource

type HTTPSource struct {
	// HTTPRequestTimeout - Specifies the timeout for a HTTP client to get HTTP response from HTTP server. The default value is equivalent to System.Net.HttpWebRequest.Timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	HTTPRequestTimeout interface{} `json:"httpRequestTimeout,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

HTTPSource a copy activity source for an HTTP file.

func (HTTPSource) AsAmazonMWSSource

func (hs HTTPSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsAmazonRedshiftSource

func (hs HTTPSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsAzureDataLakeStoreSource

func (hs HTTPSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsAzureMySQLSource

func (hs HTTPSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsAzurePostgreSQLSource

func (hs HTTPSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsAzureTableSource

func (hs HTTPSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsBasicCopySource

func (hs HTTPSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsBlobSource

func (hs HTTPSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsCassandraSource

func (hs HTTPSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsConcurSource

func (hs HTTPSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsCopySource

func (hs HTTPSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsCouchbaseSource

func (hs HTTPSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsDocumentDbCollectionSource

func (hs HTTPSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsDrillSource

func (hs HTTPSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsDynamicsSource

func (hs HTTPSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsEloquaSource

func (hs HTTPSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsFileSystemSource

func (hs HTTPSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsGoogleBigQuerySource

func (hs HTTPSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsGreenplumSource

func (hs HTTPSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsHBaseSource

func (hs HTTPSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsHTTPSource

func (hs HTTPSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsHdfsSource

func (hs HTTPSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsHiveSource

func (hs HTTPSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsHubspotSource

func (hs HTTPSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsImpalaSource

func (hs HTTPSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsJiraSource

func (hs HTTPSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsMagentoSource

func (hs HTTPSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsMariaDBSource

func (hs HTTPSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsMarketoSource

func (hs HTTPSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsMongoDbSource

func (hs HTTPSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsNetezzaSource

func (hs HTTPSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsOracleSource

func (hs HTTPSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsPaypalSource

func (hs HTTPSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsPhoenixSource

func (hs HTTPSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsPrestoSource

func (hs HTTPSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsQuickBooksSource

func (hs HTTPSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsRelationalSource

func (hs HTTPSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsResponsysSource

func (hs HTTPSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsSQLDWSource

func (hs HTTPSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsSQLSource

func (hs HTTPSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsSalesforceMarketingCloudSource

func (hs HTTPSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsSalesforceSource

func (hs HTTPSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsSapCloudForCustomerSource

func (hs HTTPSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsSapEccSource

func (hs HTTPSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsServiceNowSource

func (hs HTTPSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsShopifySource

func (hs HTTPSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsSparkSource

func (hs HTTPSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsSquareSource

func (hs HTTPSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsVerticaSource

func (hs HTTPSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsWebSource

func (hs HTTPSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsXeroSource

func (hs HTTPSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) AsZohoSource

func (hs HTTPSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for HTTPSource.

func (HTTPSource) MarshalJSON

func (hs HTTPSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HTTPSource.

type HdfsLinkedService

type HdfsLinkedService struct {
	// HdfsLinkedServiceTypeProperties - HDFS linked service properties.
	*HdfsLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

HdfsLinkedService hadoop Distributed File System (HDFS) linked service.

func (HdfsLinkedService) AsAmazonMWSLinkedService

func (hls HdfsLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAmazonRedshiftLinkedService

func (hls HdfsLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAmazonS3LinkedService

func (hls HdfsLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAzureBatchLinkedService

func (hls HdfsLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (hls HdfsLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAzureDataLakeStoreLinkedService

func (hls HdfsLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAzureDatabricksLinkedService

func (hls HdfsLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAzureKeyVaultLinkedService

func (hls HdfsLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAzureMLLinkedService

func (hls HdfsLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAzureMySQLLinkedService

func (hls HdfsLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAzurePostgreSQLLinkedService

func (hls HdfsLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAzureSQLDWLinkedService

func (hls HdfsLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAzureSQLDatabaseLinkedService

func (hls HdfsLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAzureSearchLinkedService

func (hls HdfsLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsAzureStorageLinkedService

func (hls HdfsLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsBasicLinkedService

func (hls HdfsLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsCassandraLinkedService

func (hls HdfsLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsConcurLinkedService

func (hls HdfsLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsCosmosDbLinkedService

func (hls HdfsLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsCouchbaseLinkedService

func (hls HdfsLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsCustomDataSourceLinkedService

func (hls HdfsLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsDb2LinkedService

func (hls HdfsLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsDrillLinkedService

func (hls HdfsLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsDynamicsLinkedService

func (hls HdfsLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsEloquaLinkedService

func (hls HdfsLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsFileServerLinkedService

func (hls HdfsLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsFtpServerLinkedService

func (hls HdfsLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsGoogleBigQueryLinkedService

func (hls HdfsLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsGreenplumLinkedService

func (hls HdfsLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsHBaseLinkedService

func (hls HdfsLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsHDInsightLinkedService

func (hls HdfsLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsHDInsightOnDemandLinkedService

func (hls HdfsLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsHTTPLinkedService

func (hls HdfsLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsHdfsLinkedService

func (hls HdfsLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsHiveLinkedService

func (hls HdfsLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsHubspotLinkedService

func (hls HdfsLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsImpalaLinkedService

func (hls HdfsLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsJiraLinkedService

func (hls HdfsLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsLinkedService

func (hls HdfsLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsMagentoLinkedService

func (hls HdfsLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsMariaDBLinkedService

func (hls HdfsLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsMarketoLinkedService

func (hls HdfsLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsMongoDbLinkedService

func (hls HdfsLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsMySQLLinkedService

func (hls HdfsLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsNetezzaLinkedService

func (hls HdfsLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsODataLinkedService

func (hls HdfsLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsOdbcLinkedService

func (hls HdfsLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsOracleLinkedService

func (hls HdfsLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsPaypalLinkedService

func (hls HdfsLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsPhoenixLinkedService

func (hls HdfsLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsPostgreSQLLinkedService

func (hls HdfsLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsPrestoLinkedService

func (hls HdfsLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsQuickBooksLinkedService

func (hls HdfsLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsResponsysLinkedService

func (hls HdfsLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsSQLServerLinkedService

func (hls HdfsLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsSalesforceLinkedService

func (hls HdfsLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsSalesforceMarketingCloudLinkedService

func (hls HdfsLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsSapBWLinkedService

func (hls HdfsLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsSapCloudForCustomerLinkedService

func (hls HdfsLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsSapEccLinkedService

func (hls HdfsLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsSapHanaLinkedService

func (hls HdfsLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsServiceNowLinkedService

func (hls HdfsLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsSftpServerLinkedService

func (hls HdfsLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsShopifyLinkedService

func (hls HdfsLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsSparkLinkedService

func (hls HdfsLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsSquareLinkedService

func (hls HdfsLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsSybaseLinkedService

func (hls HdfsLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsTeradataLinkedService

func (hls HdfsLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsVerticaLinkedService

func (hls HdfsLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsWebLinkedService

func (hls HdfsLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsXeroLinkedService

func (hls HdfsLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) AsZohoLinkedService

func (hls HdfsLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for HdfsLinkedService.

func (HdfsLinkedService) MarshalJSON

func (hls HdfsLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HdfsLinkedService.

func (*HdfsLinkedService) UnmarshalJSON

func (hls *HdfsLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HdfsLinkedService struct.

type HdfsLinkedServiceTypeProperties

type HdfsLinkedServiceTypeProperties struct {
	// URL - The URL of the HDFS service endpoint, e.g. http://myhostname:50070/webhdfs/v1 . Type: string (or Expression with resultType string).
	URL interface{} `json:"url,omitempty"`
	// AuthenticationType - Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string).
	AuthenticationType interface{} `json:"authenticationType,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
	// UserName - User name for Windows authentication. Type: string (or Expression with resultType string).
	UserName interface{} `json:"userName,omitempty"`
	// Password - Password for Windows authentication.
	Password BasicSecretBase `json:"password,omitempty"`
}

HdfsLinkedServiceTypeProperties HDFS linked service properties.

func (*HdfsLinkedServiceTypeProperties) UnmarshalJSON

func (hlstp *HdfsLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HdfsLinkedServiceTypeProperties struct.

type HdfsSource

type HdfsSource struct {
	// Recursive - If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
	Recursive interface{} `json:"recursive,omitempty"`
	// DistcpSettings - Specifies Distcp-related settings.
	DistcpSettings *DistcpSettings `json:"distcpSettings,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

HdfsSource a copy activity HDFS source.

func (HdfsSource) AsAmazonMWSSource

func (hs HdfsSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsAmazonRedshiftSource

func (hs HdfsSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsAzureDataLakeStoreSource

func (hs HdfsSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsAzureMySQLSource

func (hs HdfsSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsAzurePostgreSQLSource

func (hs HdfsSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsAzureTableSource

func (hs HdfsSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsBasicCopySource

func (hs HdfsSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsBlobSource

func (hs HdfsSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsCassandraSource

func (hs HdfsSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsConcurSource

func (hs HdfsSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsCopySource

func (hs HdfsSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsCouchbaseSource

func (hs HdfsSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsDocumentDbCollectionSource

func (hs HdfsSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsDrillSource

func (hs HdfsSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsDynamicsSource

func (hs HdfsSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsEloquaSource

func (hs HdfsSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsFileSystemSource

func (hs HdfsSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsGoogleBigQuerySource

func (hs HdfsSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsGreenplumSource

func (hs HdfsSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsHBaseSource

func (hs HdfsSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsHTTPSource

func (hs HdfsSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsHdfsSource

func (hs HdfsSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsHiveSource

func (hs HdfsSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsHubspotSource

func (hs HdfsSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsImpalaSource

func (hs HdfsSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsJiraSource

func (hs HdfsSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsMagentoSource

func (hs HdfsSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsMariaDBSource

func (hs HdfsSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsMarketoSource

func (hs HdfsSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsMongoDbSource

func (hs HdfsSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsNetezzaSource

func (hs HdfsSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsOracleSource

func (hs HdfsSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsPaypalSource

func (hs HdfsSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsPhoenixSource

func (hs HdfsSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsPrestoSource

func (hs HdfsSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsQuickBooksSource

func (hs HdfsSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsRelationalSource

func (hs HdfsSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsResponsysSource

func (hs HdfsSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsSQLDWSource

func (hs HdfsSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsSQLSource

func (hs HdfsSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsSalesforceMarketingCloudSource

func (hs HdfsSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsSalesforceSource

func (hs HdfsSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsSapCloudForCustomerSource

func (hs HdfsSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsSapEccSource

func (hs HdfsSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsServiceNowSource

func (hs HdfsSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsShopifySource

func (hs HdfsSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsSparkSource

func (hs HdfsSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsSquareSource

func (hs HdfsSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsVerticaSource

func (hs HdfsSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsWebSource

func (hs HdfsSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsXeroSource

func (hs HdfsSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) AsZohoSource

func (hs HdfsSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for HdfsSource.

func (HdfsSource) MarshalJSON

func (hs HdfsSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HdfsSource.

type HiveAuthenticationType

type HiveAuthenticationType string

HiveAuthenticationType enumerates the values for hive authentication type.

const (
	// Anonymous ...
	Anonymous HiveAuthenticationType = "Anonymous"
	// Username ...
	Username HiveAuthenticationType = "Username"
	// UsernameAndPassword ...
	UsernameAndPassword HiveAuthenticationType = "UsernameAndPassword"
	// WindowsAzureHDInsightService ...
	WindowsAzureHDInsightService HiveAuthenticationType = "WindowsAzureHDInsightService"
)

func PossibleHiveAuthenticationTypeValues

func PossibleHiveAuthenticationTypeValues() []HiveAuthenticationType

PossibleHiveAuthenticationTypeValues returns an array of possible values for the HiveAuthenticationType const type.

type HiveLinkedService

type HiveLinkedService struct {
	// HiveLinkedServiceTypeProperties - Hive Server linked service properties.
	*HiveLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

HiveLinkedService hive Server linked service.

func (HiveLinkedService) AsAmazonMWSLinkedService

func (hls HiveLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAmazonRedshiftLinkedService

func (hls HiveLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAmazonS3LinkedService

func (hls HiveLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAzureBatchLinkedService

func (hls HiveLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (hls HiveLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAzureDataLakeStoreLinkedService

func (hls HiveLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAzureDatabricksLinkedService

func (hls HiveLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAzureKeyVaultLinkedService

func (hls HiveLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAzureMLLinkedService

func (hls HiveLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAzureMySQLLinkedService

func (hls HiveLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAzurePostgreSQLLinkedService

func (hls HiveLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAzureSQLDWLinkedService

func (hls HiveLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAzureSQLDatabaseLinkedService

func (hls HiveLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAzureSearchLinkedService

func (hls HiveLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsAzureStorageLinkedService

func (hls HiveLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsBasicLinkedService

func (hls HiveLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsCassandraLinkedService

func (hls HiveLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsConcurLinkedService

func (hls HiveLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsCosmosDbLinkedService

func (hls HiveLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsCouchbaseLinkedService

func (hls HiveLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsCustomDataSourceLinkedService

func (hls HiveLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsDb2LinkedService

func (hls HiveLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsDrillLinkedService

func (hls HiveLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsDynamicsLinkedService

func (hls HiveLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsEloquaLinkedService

func (hls HiveLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsFileServerLinkedService

func (hls HiveLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsFtpServerLinkedService

func (hls HiveLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsGoogleBigQueryLinkedService

func (hls HiveLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsGreenplumLinkedService

func (hls HiveLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsHBaseLinkedService

func (hls HiveLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsHDInsightLinkedService

func (hls HiveLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsHDInsightOnDemandLinkedService

func (hls HiveLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsHTTPLinkedService

func (hls HiveLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsHdfsLinkedService

func (hls HiveLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsHiveLinkedService

func (hls HiveLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsHubspotLinkedService

func (hls HiveLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsImpalaLinkedService

func (hls HiveLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsJiraLinkedService

func (hls HiveLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsLinkedService

func (hls HiveLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsMagentoLinkedService

func (hls HiveLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsMariaDBLinkedService

func (hls HiveLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsMarketoLinkedService

func (hls HiveLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsMongoDbLinkedService

func (hls HiveLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsMySQLLinkedService

func (hls HiveLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsNetezzaLinkedService

func (hls HiveLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsODataLinkedService

func (hls HiveLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsOdbcLinkedService

func (hls HiveLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsOracleLinkedService

func (hls HiveLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsPaypalLinkedService

func (hls HiveLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsPhoenixLinkedService

func (hls HiveLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsPostgreSQLLinkedService

func (hls HiveLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsPrestoLinkedService

func (hls HiveLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsQuickBooksLinkedService

func (hls HiveLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsResponsysLinkedService

func (hls HiveLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsSQLServerLinkedService

func (hls HiveLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsSalesforceLinkedService

func (hls HiveLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsSalesforceMarketingCloudLinkedService

func (hls HiveLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsSapBWLinkedService

func (hls HiveLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsSapCloudForCustomerLinkedService

func (hls HiveLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsSapEccLinkedService

func (hls HiveLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsSapHanaLinkedService

func (hls HiveLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsServiceNowLinkedService

func (hls HiveLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsSftpServerLinkedService

func (hls HiveLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsShopifyLinkedService

func (hls HiveLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsSparkLinkedService

func (hls HiveLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsSquareLinkedService

func (hls HiveLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsSybaseLinkedService

func (hls HiveLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsTeradataLinkedService

func (hls HiveLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsVerticaLinkedService

func (hls HiveLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsWebLinkedService

func (hls HiveLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsXeroLinkedService

func (hls HiveLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) AsZohoLinkedService

func (hls HiveLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for HiveLinkedService.

func (HiveLinkedService) MarshalJSON

func (hls HiveLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HiveLinkedService.

func (*HiveLinkedService) UnmarshalJSON

func (hls *HiveLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HiveLinkedService struct.

type HiveLinkedServiceTypeProperties

type HiveLinkedServiceTypeProperties struct {
	// Host - IP address or host name of the Hive server, separated by ';' for multiple hosts (only when serviceDiscoveryMode is enable).
	Host interface{} `json:"host,omitempty"`
	// Port - The TCP port that the Hive server uses to listen for client connections.
	Port interface{} `json:"port,omitempty"`
	// ServerType - The type of Hive server. Possible values include: 'HiveServer1', 'HiveServer2', 'HiveThriftServer'
	ServerType HiveServerType `json:"serverType,omitempty"`
	// ThriftTransportProtocol - The transport protocol to use in the Thrift layer. Possible values include: 'Binary', 'SASL', 'HTTP'
	ThriftTransportProtocol HiveThriftTransportProtocol `json:"thriftTransportProtocol,omitempty"`
	// AuthenticationType - The authentication method used to access the Hive server. Possible values include: 'Anonymous', 'Username', 'UsernameAndPassword', 'WindowsAzureHDInsightService'
	AuthenticationType HiveAuthenticationType `json:"authenticationType,omitempty"`
	// ServiceDiscoveryMode - true to indicate using the ZooKeeper service, false not.
	ServiceDiscoveryMode interface{} `json:"serviceDiscoveryMode,omitempty"`
	// ZooKeeperNameSpace - The namespace on ZooKeeper under which Hive Server 2 nodes are added.
	ZooKeeperNameSpace interface{} `json:"zooKeeperNameSpace,omitempty"`
	// UseNativeQuery - Specifies whether the driver uses native HiveQL queries,or converts them into an equivalent form in HiveQL.
	UseNativeQuery interface{} `json:"useNativeQuery,omitempty"`
	// Username - The user name that you use to access Hive Server.
	Username interface{} `json:"username,omitempty"`
	// Password - The password corresponding to the user name that you provided in the Username field
	Password BasicSecretBase `json:"password,omitempty"`
	// HTTPPath - The partial URL corresponding to the Hive server.
	HTTPPath interface{} `json:"httpPath,omitempty"`
	// EnableSsl - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
	EnableSsl interface{} `json:"enableSsl,omitempty"`
	// TrustedCertPath - The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
	TrustedCertPath interface{} `json:"trustedCertPath,omitempty"`
	// UseSystemTrustStore - Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
	UseSystemTrustStore interface{} `json:"useSystemTrustStore,omitempty"`
	// AllowHostNameCNMismatch - Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
	AllowHostNameCNMismatch interface{} `json:"allowHostNameCNMismatch,omitempty"`
	// AllowSelfSignedServerCert - Specifies whether to allow self-signed certificates from the server. The default value is false.
	AllowSelfSignedServerCert interface{} `json:"allowSelfSignedServerCert,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

HiveLinkedServiceTypeProperties hive Server linked service properties.

func (*HiveLinkedServiceTypeProperties) UnmarshalJSON

func (hlstp *HiveLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HiveLinkedServiceTypeProperties struct.

type HiveObjectDataset

type HiveObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

HiveObjectDataset hive Server dataset.

func (HiveObjectDataset) AsAmazonMWSObjectDataset

func (hod HiveObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsAmazonS3Dataset

func (hod HiveObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsAzureBlobDataset

func (hod HiveObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsAzureDataLakeStoreDataset

func (hod HiveObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsAzureMySQLTableDataset

func (hod HiveObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsAzurePostgreSQLTableDataset

func (hod HiveObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsAzureSQLDWTableDataset

func (hod HiveObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsAzureSQLTableDataset

func (hod HiveObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsAzureSearchIndexDataset

func (hod HiveObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsAzureTableDataset

func (hod HiveObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsBasicDataset

func (hod HiveObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsCassandraTableDataset

func (hod HiveObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsConcurObjectDataset

func (hod HiveObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsCouchbaseTableDataset

func (hod HiveObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsCustomDataset

func (hod HiveObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsDataset

func (hod HiveObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsDocumentDbCollectionDataset

func (hod HiveObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsDrillTableDataset

func (hod HiveObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsDynamicsEntityDataset

func (hod HiveObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsEloquaObjectDataset

func (hod HiveObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsFileShareDataset

func (hod HiveObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsGoogleBigQueryObjectDataset

func (hod HiveObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsGreenplumTableDataset

func (hod HiveObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsHBaseObjectDataset

func (hod HiveObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsHTTPDataset

func (hod HiveObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsHiveObjectDataset

func (hod HiveObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsHubspotObjectDataset

func (hod HiveObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsImpalaObjectDataset

func (hod HiveObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsJiraObjectDataset

func (hod HiveObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsMagentoObjectDataset

func (hod HiveObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsMariaDBTableDataset

func (hod HiveObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsMarketoObjectDataset

func (hod HiveObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsMongoDbCollectionDataset

func (hod HiveObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsNetezzaTableDataset

func (hod HiveObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsODataResourceDataset

func (hod HiveObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsOracleTableDataset

func (hod HiveObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsPaypalObjectDataset

func (hod HiveObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsPhoenixObjectDataset

func (hod HiveObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsPrestoObjectDataset

func (hod HiveObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsQuickBooksObjectDataset

func (hod HiveObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsRelationalTableDataset

func (hod HiveObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsResponsysObjectDataset

func (hod HiveObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsSQLServerTableDataset

func (hod HiveObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (hod HiveObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsSalesforceObjectDataset

func (hod HiveObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsSapCloudForCustomerResourceDataset

func (hod HiveObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsSapEccResourceDataset

func (hod HiveObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsServiceNowObjectDataset

func (hod HiveObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsShopifyObjectDataset

func (hod HiveObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsSparkObjectDataset

func (hod HiveObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsSquareObjectDataset

func (hod HiveObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsVerticaTableDataset

func (hod HiveObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsWebTableDataset

func (hod HiveObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsXeroObjectDataset

func (hod HiveObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) AsZohoObjectDataset

func (hod HiveObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for HiveObjectDataset.

func (HiveObjectDataset) MarshalJSON

func (hod HiveObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HiveObjectDataset.

type HiveServerType

type HiveServerType string

HiveServerType enumerates the values for hive server type.

const (
	// HiveServer1 ...
	HiveServer1 HiveServerType = "HiveServer1"
	// HiveServer2 ...
	HiveServer2 HiveServerType = "HiveServer2"
	// HiveThriftServer ...
	HiveThriftServer HiveServerType = "HiveThriftServer"
)

func PossibleHiveServerTypeValues

func PossibleHiveServerTypeValues() []HiveServerType

PossibleHiveServerTypeValues returns an array of possible values for the HiveServerType const type.

type HiveSource

type HiveSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

HiveSource a copy activity Hive Server source.

func (HiveSource) AsAmazonMWSSource

func (hs HiveSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsAmazonRedshiftSource

func (hs HiveSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsAzureDataLakeStoreSource

func (hs HiveSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsAzureMySQLSource

func (hs HiveSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsAzurePostgreSQLSource

func (hs HiveSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsAzureTableSource

func (hs HiveSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsBasicCopySource

func (hs HiveSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsBlobSource

func (hs HiveSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsCassandraSource

func (hs HiveSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsConcurSource

func (hs HiveSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsCopySource

func (hs HiveSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsCouchbaseSource

func (hs HiveSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsDocumentDbCollectionSource

func (hs HiveSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsDrillSource

func (hs HiveSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsDynamicsSource

func (hs HiveSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsEloquaSource

func (hs HiveSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsFileSystemSource

func (hs HiveSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsGoogleBigQuerySource

func (hs HiveSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsGreenplumSource

func (hs HiveSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsHBaseSource

func (hs HiveSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsHTTPSource

func (hs HiveSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsHdfsSource

func (hs HiveSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsHiveSource

func (hs HiveSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsHubspotSource

func (hs HiveSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsImpalaSource

func (hs HiveSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsJiraSource

func (hs HiveSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsMagentoSource

func (hs HiveSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsMariaDBSource

func (hs HiveSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsMarketoSource

func (hs HiveSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsMongoDbSource

func (hs HiveSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsNetezzaSource

func (hs HiveSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsOracleSource

func (hs HiveSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsPaypalSource

func (hs HiveSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsPhoenixSource

func (hs HiveSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsPrestoSource

func (hs HiveSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsQuickBooksSource

func (hs HiveSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsRelationalSource

func (hs HiveSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsResponsysSource

func (hs HiveSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsSQLDWSource

func (hs HiveSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsSQLSource

func (hs HiveSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsSalesforceMarketingCloudSource

func (hs HiveSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsSalesforceSource

func (hs HiveSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsSapCloudForCustomerSource

func (hs HiveSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsSapEccSource

func (hs HiveSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsServiceNowSource

func (hs HiveSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsShopifySource

func (hs HiveSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsSparkSource

func (hs HiveSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsSquareSource

func (hs HiveSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsVerticaSource

func (hs HiveSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsWebSource

func (hs HiveSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsXeroSource

func (hs HiveSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) AsZohoSource

func (hs HiveSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for HiveSource.

func (HiveSource) MarshalJSON

func (hs HiveSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HiveSource.

type HiveThriftTransportProtocol

type HiveThriftTransportProtocol string

HiveThriftTransportProtocol enumerates the values for hive thrift transport protocol.

const (
	// Binary ...
	Binary HiveThriftTransportProtocol = "Binary"
	// HTTP ...
	HTTP HiveThriftTransportProtocol = "HTTP "
	// SASL ...
	SASL HiveThriftTransportProtocol = "SASL"
)

func PossibleHiveThriftTransportProtocolValues

func PossibleHiveThriftTransportProtocolValues() []HiveThriftTransportProtocol

PossibleHiveThriftTransportProtocolValues returns an array of possible values for the HiveThriftTransportProtocol const type.

type HubspotLinkedService

type HubspotLinkedService struct {
	// HubspotLinkedServiceTypeProperties - Hubspot Serivce linked service properties.
	*HubspotLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

HubspotLinkedService hubspot Serivce linked service.

func (HubspotLinkedService) AsAmazonMWSLinkedService

func (hls HubspotLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAmazonRedshiftLinkedService

func (hls HubspotLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAmazonS3LinkedService

func (hls HubspotLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAzureBatchLinkedService

func (hls HubspotLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (hls HubspotLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAzureDataLakeStoreLinkedService

func (hls HubspotLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAzureDatabricksLinkedService

func (hls HubspotLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAzureKeyVaultLinkedService

func (hls HubspotLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAzureMLLinkedService

func (hls HubspotLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAzureMySQLLinkedService

func (hls HubspotLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAzurePostgreSQLLinkedService

func (hls HubspotLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAzureSQLDWLinkedService

func (hls HubspotLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAzureSQLDatabaseLinkedService

func (hls HubspotLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAzureSearchLinkedService

func (hls HubspotLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsAzureStorageLinkedService

func (hls HubspotLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsBasicLinkedService

func (hls HubspotLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsCassandraLinkedService

func (hls HubspotLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsConcurLinkedService

func (hls HubspotLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsCosmosDbLinkedService

func (hls HubspotLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsCouchbaseLinkedService

func (hls HubspotLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsCustomDataSourceLinkedService

func (hls HubspotLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsDb2LinkedService

func (hls HubspotLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsDrillLinkedService

func (hls HubspotLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsDynamicsLinkedService

func (hls HubspotLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsEloquaLinkedService

func (hls HubspotLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsFileServerLinkedService

func (hls HubspotLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsFtpServerLinkedService

func (hls HubspotLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsGoogleBigQueryLinkedService

func (hls HubspotLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsGreenplumLinkedService

func (hls HubspotLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsHBaseLinkedService

func (hls HubspotLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsHDInsightLinkedService

func (hls HubspotLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsHDInsightOnDemandLinkedService

func (hls HubspotLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsHTTPLinkedService

func (hls HubspotLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsHdfsLinkedService

func (hls HubspotLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsHiveLinkedService

func (hls HubspotLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsHubspotLinkedService

func (hls HubspotLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsImpalaLinkedService

func (hls HubspotLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsJiraLinkedService

func (hls HubspotLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsLinkedService

func (hls HubspotLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsMagentoLinkedService

func (hls HubspotLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsMariaDBLinkedService

func (hls HubspotLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsMarketoLinkedService

func (hls HubspotLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsMongoDbLinkedService

func (hls HubspotLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsMySQLLinkedService

func (hls HubspotLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsNetezzaLinkedService

func (hls HubspotLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsODataLinkedService

func (hls HubspotLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsOdbcLinkedService

func (hls HubspotLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsOracleLinkedService

func (hls HubspotLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsPaypalLinkedService

func (hls HubspotLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsPhoenixLinkedService

func (hls HubspotLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsPostgreSQLLinkedService

func (hls HubspotLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsPrestoLinkedService

func (hls HubspotLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsQuickBooksLinkedService

func (hls HubspotLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsResponsysLinkedService

func (hls HubspotLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsSQLServerLinkedService

func (hls HubspotLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsSalesforceLinkedService

func (hls HubspotLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsSalesforceMarketingCloudLinkedService

func (hls HubspotLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsSapBWLinkedService

func (hls HubspotLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsSapCloudForCustomerLinkedService

func (hls HubspotLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsSapEccLinkedService

func (hls HubspotLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsSapHanaLinkedService

func (hls HubspotLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsServiceNowLinkedService

func (hls HubspotLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsSftpServerLinkedService

func (hls HubspotLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsShopifyLinkedService

func (hls HubspotLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsSparkLinkedService

func (hls HubspotLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsSquareLinkedService

func (hls HubspotLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsSybaseLinkedService

func (hls HubspotLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsTeradataLinkedService

func (hls HubspotLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsVerticaLinkedService

func (hls HubspotLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsWebLinkedService

func (hls HubspotLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsXeroLinkedService

func (hls HubspotLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) AsZohoLinkedService

func (hls HubspotLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for HubspotLinkedService.

func (HubspotLinkedService) MarshalJSON

func (hls HubspotLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HubspotLinkedService.

func (*HubspotLinkedService) UnmarshalJSON

func (hls *HubspotLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HubspotLinkedService struct.

type HubspotLinkedServiceTypeProperties

type HubspotLinkedServiceTypeProperties struct {
	// ClientID - The client ID associated with your Hubspot application.
	ClientID interface{} `json:"clientId,omitempty"`
	// ClientSecret - The client secret associated with your Hubspot application.
	ClientSecret BasicSecretBase `json:"clientSecret,omitempty"`
	// AccessToken - The access token obtained when initially authenticating your OAuth integration.
	AccessToken BasicSecretBase `json:"accessToken,omitempty"`
	// RefreshToken - The refresh token obtained when initially authenticating your OAuth integration.
	RefreshToken BasicSecretBase `json:"refreshToken,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

HubspotLinkedServiceTypeProperties hubspot Serivce linked service properties.

func (*HubspotLinkedServiceTypeProperties) UnmarshalJSON

func (hlstp *HubspotLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for HubspotLinkedServiceTypeProperties struct.

type HubspotObjectDataset

type HubspotObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

HubspotObjectDataset hubspot Serivce dataset.

func (HubspotObjectDataset) AsAmazonMWSObjectDataset

func (hod HubspotObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsAmazonS3Dataset

func (hod HubspotObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsAzureBlobDataset

func (hod HubspotObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsAzureDataLakeStoreDataset

func (hod HubspotObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsAzureMySQLTableDataset

func (hod HubspotObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsAzurePostgreSQLTableDataset

func (hod HubspotObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsAzureSQLDWTableDataset

func (hod HubspotObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsAzureSQLTableDataset

func (hod HubspotObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsAzureSearchIndexDataset

func (hod HubspotObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsAzureTableDataset

func (hod HubspotObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsBasicDataset

func (hod HubspotObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsCassandraTableDataset

func (hod HubspotObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsConcurObjectDataset

func (hod HubspotObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsCouchbaseTableDataset

func (hod HubspotObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsCustomDataset

func (hod HubspotObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsDataset

func (hod HubspotObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsDocumentDbCollectionDataset

func (hod HubspotObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsDrillTableDataset

func (hod HubspotObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsDynamicsEntityDataset

func (hod HubspotObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsEloquaObjectDataset

func (hod HubspotObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsFileShareDataset

func (hod HubspotObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsGoogleBigQueryObjectDataset

func (hod HubspotObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsGreenplumTableDataset

func (hod HubspotObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsHBaseObjectDataset

func (hod HubspotObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsHTTPDataset

func (hod HubspotObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsHiveObjectDataset

func (hod HubspotObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsHubspotObjectDataset

func (hod HubspotObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsImpalaObjectDataset

func (hod HubspotObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsJiraObjectDataset

func (hod HubspotObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsMagentoObjectDataset

func (hod HubspotObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsMariaDBTableDataset

func (hod HubspotObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsMarketoObjectDataset

func (hod HubspotObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsMongoDbCollectionDataset

func (hod HubspotObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsNetezzaTableDataset

func (hod HubspotObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsODataResourceDataset

func (hod HubspotObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsOracleTableDataset

func (hod HubspotObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsPaypalObjectDataset

func (hod HubspotObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsPhoenixObjectDataset

func (hod HubspotObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsPrestoObjectDataset

func (hod HubspotObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsQuickBooksObjectDataset

func (hod HubspotObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsRelationalTableDataset

func (hod HubspotObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsResponsysObjectDataset

func (hod HubspotObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsSQLServerTableDataset

func (hod HubspotObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (hod HubspotObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsSalesforceObjectDataset

func (hod HubspotObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsSapCloudForCustomerResourceDataset

func (hod HubspotObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsSapEccResourceDataset

func (hod HubspotObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsServiceNowObjectDataset

func (hod HubspotObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsShopifyObjectDataset

func (hod HubspotObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsSparkObjectDataset

func (hod HubspotObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsSquareObjectDataset

func (hod HubspotObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsVerticaTableDataset

func (hod HubspotObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsWebTableDataset

func (hod HubspotObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsXeroObjectDataset

func (hod HubspotObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) AsZohoObjectDataset

func (hod HubspotObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for HubspotObjectDataset.

func (HubspotObjectDataset) MarshalJSON

func (hod HubspotObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HubspotObjectDataset.

type HubspotSource

type HubspotSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

HubspotSource a copy activity Hubspot Serivce source.

func (HubspotSource) AsAmazonMWSSource

func (hs HubspotSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsAmazonRedshiftSource

func (hs HubspotSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsAzureDataLakeStoreSource

func (hs HubspotSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsAzureMySQLSource

func (hs HubspotSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsAzurePostgreSQLSource

func (hs HubspotSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsAzureTableSource

func (hs HubspotSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsBasicCopySource

func (hs HubspotSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsBlobSource

func (hs HubspotSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsCassandraSource

func (hs HubspotSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsConcurSource

func (hs HubspotSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsCopySource

func (hs HubspotSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsCouchbaseSource

func (hs HubspotSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsDocumentDbCollectionSource

func (hs HubspotSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsDrillSource

func (hs HubspotSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsDynamicsSource

func (hs HubspotSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsEloquaSource

func (hs HubspotSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsFileSystemSource

func (hs HubspotSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsGoogleBigQuerySource

func (hs HubspotSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsGreenplumSource

func (hs HubspotSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsHBaseSource

func (hs HubspotSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsHTTPSource

func (hs HubspotSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsHdfsSource

func (hs HubspotSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsHiveSource

func (hs HubspotSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsHubspotSource

func (hs HubspotSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsImpalaSource

func (hs HubspotSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsJiraSource

func (hs HubspotSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsMagentoSource

func (hs HubspotSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsMariaDBSource

func (hs HubspotSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsMarketoSource

func (hs HubspotSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsMongoDbSource

func (hs HubspotSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsNetezzaSource

func (hs HubspotSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsOracleSource

func (hs HubspotSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsPaypalSource

func (hs HubspotSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsPhoenixSource

func (hs HubspotSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsPrestoSource

func (hs HubspotSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsQuickBooksSource

func (hs HubspotSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsRelationalSource

func (hs HubspotSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsResponsysSource

func (hs HubspotSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsSQLDWSource

func (hs HubspotSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsSQLSource

func (hs HubspotSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsSalesforceMarketingCloudSource

func (hs HubspotSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsSalesforceSource

func (hs HubspotSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsSapCloudForCustomerSource

func (hs HubspotSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsSapEccSource

func (hs HubspotSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsServiceNowSource

func (hs HubspotSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsShopifySource

func (hs HubspotSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsSparkSource

func (hs HubspotSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsSquareSource

func (hs HubspotSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsVerticaSource

func (hs HubspotSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsWebSource

func (hs HubspotSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsXeroSource

func (hs HubspotSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) AsZohoSource

func (hs HubspotSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for HubspotSource.

func (HubspotSource) MarshalJSON

func (hs HubspotSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for HubspotSource.

type IfConditionActivity

type IfConditionActivity struct {
	// IfConditionActivityTypeProperties - IfCondition activity properties.
	*IfConditionActivityTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

IfConditionActivity this activity evaluates a boolean expression and executes either the activities under the ifTrueActivities property or the ifFalseActivities property depending on the result of the expression.

func (IfConditionActivity) AsActivity

func (ica IfConditionActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsAzureMLBatchExecutionActivity

func (ica IfConditionActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsAzureMLUpdateResourceActivity

func (ica IfConditionActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsBasicActivity

func (ica IfConditionActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsBasicControlActivity

func (ica IfConditionActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsBasicExecutionActivity

func (ica IfConditionActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsControlActivity

func (ica IfConditionActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsCopyActivity

func (ica IfConditionActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsCustomActivity

func (ica IfConditionActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsDataLakeAnalyticsUSQLActivity

func (ica IfConditionActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsDatabricksNotebookActivity

func (ica IfConditionActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsExecutePipelineActivity

func (ica IfConditionActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsExecuteSSISPackageActivity

func (ica IfConditionActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsExecutionActivity

func (ica IfConditionActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsFilterActivity

func (ica IfConditionActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsForEachActivity

func (ica IfConditionActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsGetMetadataActivity

func (ica IfConditionActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsHDInsightHiveActivity

func (ica IfConditionActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsHDInsightMapReduceActivity

func (ica IfConditionActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsHDInsightPigActivity

func (ica IfConditionActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsHDInsightSparkActivity

func (ica IfConditionActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsHDInsightStreamingActivity

func (ica IfConditionActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsIfConditionActivity

func (ica IfConditionActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsLookupActivity

func (ica IfConditionActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsSQLServerStoredProcedureActivity

func (ica IfConditionActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsUntilActivity

func (ica IfConditionActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsWaitActivity

func (ica IfConditionActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) AsWebActivity

func (ica IfConditionActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for IfConditionActivity.

func (IfConditionActivity) MarshalJSON

func (ica IfConditionActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for IfConditionActivity.

func (*IfConditionActivity) UnmarshalJSON

func (ica *IfConditionActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for IfConditionActivity struct.

type IfConditionActivityTypeProperties

type IfConditionActivityTypeProperties struct {
	// Expression - An expression that would evaluate to Boolean. This is used to determine the block of activities (ifTrueActivities or ifFalseActivities) that will be executed.
	Expression *Expression `json:"expression,omitempty"`
	// IfTrueActivities - List of activities to execute if expression is evaluated to true. This is an optional property and if not provided, the activity will exit without any action.
	IfTrueActivities *[]BasicActivity `json:"ifTrueActivities,omitempty"`
	// IfFalseActivities - List of activities to execute if expression is evaluated to false. This is an optional property and if not provided, the activity will exit without any action.
	IfFalseActivities *[]BasicActivity `json:"ifFalseActivities,omitempty"`
}

IfConditionActivityTypeProperties ifCondition activity properties.

func (*IfConditionActivityTypeProperties) UnmarshalJSON

func (icatp *IfConditionActivityTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for IfConditionActivityTypeProperties struct.

type ImpalaAuthenticationType

type ImpalaAuthenticationType string

ImpalaAuthenticationType enumerates the values for impala authentication type.

const (
	// ImpalaAuthenticationTypeAnonymous ...
	ImpalaAuthenticationTypeAnonymous ImpalaAuthenticationType = "Anonymous"
	// ImpalaAuthenticationTypeSASLUsername ...
	ImpalaAuthenticationTypeSASLUsername ImpalaAuthenticationType = "SASLUsername"
	// ImpalaAuthenticationTypeUsernameAndPassword ...
	ImpalaAuthenticationTypeUsernameAndPassword ImpalaAuthenticationType = "UsernameAndPassword"
)

func PossibleImpalaAuthenticationTypeValues

func PossibleImpalaAuthenticationTypeValues() []ImpalaAuthenticationType

PossibleImpalaAuthenticationTypeValues returns an array of possible values for the ImpalaAuthenticationType const type.

type ImpalaLinkedService

type ImpalaLinkedService struct {
	// ImpalaLinkedServiceTypeProperties - Impala server linked service properties.
	*ImpalaLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

ImpalaLinkedService impala server linked service.

func (ImpalaLinkedService) AsAmazonMWSLinkedService

func (ils ImpalaLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAmazonRedshiftLinkedService

func (ils ImpalaLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAmazonS3LinkedService

func (ils ImpalaLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAzureBatchLinkedService

func (ils ImpalaLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (ils ImpalaLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAzureDataLakeStoreLinkedService

func (ils ImpalaLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAzureDatabricksLinkedService

func (ils ImpalaLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAzureKeyVaultLinkedService

func (ils ImpalaLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAzureMLLinkedService

func (ils ImpalaLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAzureMySQLLinkedService

func (ils ImpalaLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAzurePostgreSQLLinkedService

func (ils ImpalaLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAzureSQLDWLinkedService

func (ils ImpalaLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAzureSQLDatabaseLinkedService

func (ils ImpalaLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAzureSearchLinkedService

func (ils ImpalaLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsAzureStorageLinkedService

func (ils ImpalaLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsBasicLinkedService

func (ils ImpalaLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsCassandraLinkedService

func (ils ImpalaLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsConcurLinkedService

func (ils ImpalaLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsCosmosDbLinkedService

func (ils ImpalaLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsCouchbaseLinkedService

func (ils ImpalaLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsCustomDataSourceLinkedService

func (ils ImpalaLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsDb2LinkedService

func (ils ImpalaLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsDrillLinkedService

func (ils ImpalaLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsDynamicsLinkedService

func (ils ImpalaLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsEloquaLinkedService

func (ils ImpalaLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsFileServerLinkedService

func (ils ImpalaLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsFtpServerLinkedService

func (ils ImpalaLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsGoogleBigQueryLinkedService

func (ils ImpalaLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsGreenplumLinkedService

func (ils ImpalaLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsHBaseLinkedService

func (ils ImpalaLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsHDInsightLinkedService

func (ils ImpalaLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsHDInsightOnDemandLinkedService

func (ils ImpalaLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsHTTPLinkedService

func (ils ImpalaLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsHdfsLinkedService

func (ils ImpalaLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsHiveLinkedService

func (ils ImpalaLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsHubspotLinkedService

func (ils ImpalaLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsImpalaLinkedService

func (ils ImpalaLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsJiraLinkedService

func (ils ImpalaLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsLinkedService

func (ils ImpalaLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsMagentoLinkedService

func (ils ImpalaLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsMariaDBLinkedService

func (ils ImpalaLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsMarketoLinkedService

func (ils ImpalaLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsMongoDbLinkedService

func (ils ImpalaLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsMySQLLinkedService

func (ils ImpalaLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsNetezzaLinkedService

func (ils ImpalaLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsODataLinkedService

func (ils ImpalaLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsOdbcLinkedService

func (ils ImpalaLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsOracleLinkedService

func (ils ImpalaLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsPaypalLinkedService

func (ils ImpalaLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsPhoenixLinkedService

func (ils ImpalaLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsPostgreSQLLinkedService

func (ils ImpalaLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsPrestoLinkedService

func (ils ImpalaLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsQuickBooksLinkedService

func (ils ImpalaLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsResponsysLinkedService

func (ils ImpalaLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsSQLServerLinkedService

func (ils ImpalaLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsSalesforceLinkedService

func (ils ImpalaLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsSalesforceMarketingCloudLinkedService

func (ils ImpalaLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsSapBWLinkedService

func (ils ImpalaLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsSapCloudForCustomerLinkedService

func (ils ImpalaLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsSapEccLinkedService

func (ils ImpalaLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsSapHanaLinkedService

func (ils ImpalaLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsServiceNowLinkedService

func (ils ImpalaLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsSftpServerLinkedService

func (ils ImpalaLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsShopifyLinkedService

func (ils ImpalaLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsSparkLinkedService

func (ils ImpalaLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsSquareLinkedService

func (ils ImpalaLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsSybaseLinkedService

func (ils ImpalaLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsTeradataLinkedService

func (ils ImpalaLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsVerticaLinkedService

func (ils ImpalaLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsWebLinkedService

func (ils ImpalaLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsXeroLinkedService

func (ils ImpalaLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) AsZohoLinkedService

func (ils ImpalaLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for ImpalaLinkedService.

func (ImpalaLinkedService) MarshalJSON

func (ils ImpalaLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ImpalaLinkedService.

func (*ImpalaLinkedService) UnmarshalJSON

func (ils *ImpalaLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ImpalaLinkedService struct.

type ImpalaLinkedServiceTypeProperties

type ImpalaLinkedServiceTypeProperties struct {
	// Host - The IP address or host name of the Impala server. (i.e. 192.168.222.160)
	Host interface{} `json:"host,omitempty"`
	// Port - The TCP port that the Impala server uses to listen for client connections. The default value is 21050.
	Port interface{} `json:"port,omitempty"`
	// AuthenticationType - The authentication type to use. Possible values include: 'ImpalaAuthenticationTypeAnonymous', 'ImpalaAuthenticationTypeSASLUsername', 'ImpalaAuthenticationTypeUsernameAndPassword'
	AuthenticationType ImpalaAuthenticationType `json:"authenticationType,omitempty"`
	// Username - The user name used to access the Impala server. The default value is anonymous when using SASLUsername.
	Username interface{} `json:"username,omitempty"`
	// Password - The password corresponding to the user name when using UsernameAndPassword.
	Password BasicSecretBase `json:"password,omitempty"`
	// EnableSsl - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
	EnableSsl interface{} `json:"enableSsl,omitempty"`
	// TrustedCertPath - The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
	TrustedCertPath interface{} `json:"trustedCertPath,omitempty"`
	// UseSystemTrustStore - Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
	UseSystemTrustStore interface{} `json:"useSystemTrustStore,omitempty"`
	// AllowHostNameCNMismatch - Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
	AllowHostNameCNMismatch interface{} `json:"allowHostNameCNMismatch,omitempty"`
	// AllowSelfSignedServerCert - Specifies whether to allow self-signed certificates from the server. The default value is false.
	AllowSelfSignedServerCert interface{} `json:"allowSelfSignedServerCert,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

ImpalaLinkedServiceTypeProperties impala server linked service properties.

func (*ImpalaLinkedServiceTypeProperties) UnmarshalJSON

func (ilstp *ImpalaLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ImpalaLinkedServiceTypeProperties struct.

type ImpalaObjectDataset

type ImpalaObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

ImpalaObjectDataset impala server dataset.

func (ImpalaObjectDataset) AsAmazonMWSObjectDataset

func (iod ImpalaObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsAmazonS3Dataset

func (iod ImpalaObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsAzureBlobDataset

func (iod ImpalaObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsAzureDataLakeStoreDataset

func (iod ImpalaObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsAzureMySQLTableDataset

func (iod ImpalaObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsAzurePostgreSQLTableDataset

func (iod ImpalaObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsAzureSQLDWTableDataset

func (iod ImpalaObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsAzureSQLTableDataset

func (iod ImpalaObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsAzureSearchIndexDataset

func (iod ImpalaObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsAzureTableDataset

func (iod ImpalaObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsBasicDataset

func (iod ImpalaObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsCassandraTableDataset

func (iod ImpalaObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsConcurObjectDataset

func (iod ImpalaObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsCouchbaseTableDataset

func (iod ImpalaObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsCustomDataset

func (iod ImpalaObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsDataset

func (iod ImpalaObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsDocumentDbCollectionDataset

func (iod ImpalaObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsDrillTableDataset

func (iod ImpalaObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsDynamicsEntityDataset

func (iod ImpalaObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsEloquaObjectDataset

func (iod ImpalaObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsFileShareDataset

func (iod ImpalaObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsGoogleBigQueryObjectDataset

func (iod ImpalaObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsGreenplumTableDataset

func (iod ImpalaObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsHBaseObjectDataset

func (iod ImpalaObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsHTTPDataset

func (iod ImpalaObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsHiveObjectDataset

func (iod ImpalaObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsHubspotObjectDataset

func (iod ImpalaObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsImpalaObjectDataset

func (iod ImpalaObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsJiraObjectDataset

func (iod ImpalaObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsMagentoObjectDataset

func (iod ImpalaObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsMariaDBTableDataset

func (iod ImpalaObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsMarketoObjectDataset

func (iod ImpalaObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsMongoDbCollectionDataset

func (iod ImpalaObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsNetezzaTableDataset

func (iod ImpalaObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsODataResourceDataset

func (iod ImpalaObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsOracleTableDataset

func (iod ImpalaObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsPaypalObjectDataset

func (iod ImpalaObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsPhoenixObjectDataset

func (iod ImpalaObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsPrestoObjectDataset

func (iod ImpalaObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsQuickBooksObjectDataset

func (iod ImpalaObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsRelationalTableDataset

func (iod ImpalaObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsResponsysObjectDataset

func (iod ImpalaObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsSQLServerTableDataset

func (iod ImpalaObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (iod ImpalaObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsSalesforceObjectDataset

func (iod ImpalaObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsSapCloudForCustomerResourceDataset

func (iod ImpalaObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsSapEccResourceDataset

func (iod ImpalaObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsServiceNowObjectDataset

func (iod ImpalaObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsShopifyObjectDataset

func (iod ImpalaObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsSparkObjectDataset

func (iod ImpalaObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsSquareObjectDataset

func (iod ImpalaObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsVerticaTableDataset

func (iod ImpalaObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsWebTableDataset

func (iod ImpalaObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsXeroObjectDataset

func (iod ImpalaObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) AsZohoObjectDataset

func (iod ImpalaObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for ImpalaObjectDataset.

func (ImpalaObjectDataset) MarshalJSON

func (iod ImpalaObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ImpalaObjectDataset.

type ImpalaSource

type ImpalaSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

ImpalaSource a copy activity Impala server source.

func (ImpalaSource) AsAmazonMWSSource

func (is ImpalaSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsAmazonRedshiftSource

func (is ImpalaSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsAzureDataLakeStoreSource

func (is ImpalaSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsAzureMySQLSource

func (is ImpalaSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsAzurePostgreSQLSource

func (is ImpalaSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsAzureTableSource

func (is ImpalaSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsBasicCopySource

func (is ImpalaSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsBlobSource

func (is ImpalaSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsCassandraSource

func (is ImpalaSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsConcurSource

func (is ImpalaSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsCopySource

func (is ImpalaSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsCouchbaseSource

func (is ImpalaSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsDocumentDbCollectionSource

func (is ImpalaSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsDrillSource

func (is ImpalaSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsDynamicsSource

func (is ImpalaSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsEloquaSource

func (is ImpalaSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsFileSystemSource

func (is ImpalaSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsGoogleBigQuerySource

func (is ImpalaSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsGreenplumSource

func (is ImpalaSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsHBaseSource

func (is ImpalaSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsHTTPSource

func (is ImpalaSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsHdfsSource

func (is ImpalaSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsHiveSource

func (is ImpalaSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsHubspotSource

func (is ImpalaSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsImpalaSource

func (is ImpalaSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsJiraSource

func (is ImpalaSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsMagentoSource

func (is ImpalaSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsMariaDBSource

func (is ImpalaSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsMarketoSource

func (is ImpalaSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsMongoDbSource

func (is ImpalaSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsNetezzaSource

func (is ImpalaSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsOracleSource

func (is ImpalaSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsPaypalSource

func (is ImpalaSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsPhoenixSource

func (is ImpalaSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsPrestoSource

func (is ImpalaSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsQuickBooksSource

func (is ImpalaSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsRelationalSource

func (is ImpalaSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsResponsysSource

func (is ImpalaSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsSQLDWSource

func (is ImpalaSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsSQLSource

func (is ImpalaSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsSalesforceMarketingCloudSource

func (is ImpalaSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsSalesforceSource

func (is ImpalaSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsSapCloudForCustomerSource

func (is ImpalaSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsSapEccSource

func (is ImpalaSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsServiceNowSource

func (is ImpalaSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsShopifySource

func (is ImpalaSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsSparkSource

func (is ImpalaSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsSquareSource

func (is ImpalaSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsVerticaSource

func (is ImpalaSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsWebSource

func (is ImpalaSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsXeroSource

func (is ImpalaSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) AsZohoSource

func (is ImpalaSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for ImpalaSource.

func (ImpalaSource) MarshalJSON

func (is ImpalaSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ImpalaSource.

type IntegrationRuntime

type IntegrationRuntime struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Integration runtime description.
	Description *string `json:"description,omitempty"`
	// Type - Possible values include: 'TypeIntegrationRuntime', 'TypeSelfHosted', 'TypeManaged'
	Type TypeBasicIntegrationRuntime `json:"type,omitempty"`
}

IntegrationRuntime azure Data Factory nested object which serves as a compute resource for activities.

func (IntegrationRuntime) AsBasicIntegrationRuntime

func (ir IntegrationRuntime) AsBasicIntegrationRuntime() (BasicIntegrationRuntime, bool)

AsBasicIntegrationRuntime is the BasicIntegrationRuntime implementation for IntegrationRuntime.

func (IntegrationRuntime) AsIntegrationRuntime

func (ir IntegrationRuntime) AsIntegrationRuntime() (*IntegrationRuntime, bool)

AsIntegrationRuntime is the BasicIntegrationRuntime implementation for IntegrationRuntime.

func (IntegrationRuntime) AsManagedIntegrationRuntime

func (ir IntegrationRuntime) AsManagedIntegrationRuntime() (*ManagedIntegrationRuntime, bool)

AsManagedIntegrationRuntime is the BasicIntegrationRuntime implementation for IntegrationRuntime.

func (IntegrationRuntime) AsSelfHostedIntegrationRuntime

func (ir IntegrationRuntime) AsSelfHostedIntegrationRuntime() (*SelfHostedIntegrationRuntime, bool)

AsSelfHostedIntegrationRuntime is the BasicIntegrationRuntime implementation for IntegrationRuntime.

func (IntegrationRuntime) MarshalJSON

func (ir IntegrationRuntime) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for IntegrationRuntime.

type IntegrationRuntimeAuthKeyName

type IntegrationRuntimeAuthKeyName string

IntegrationRuntimeAuthKeyName enumerates the values for integration runtime auth key name.

const (
	// AuthKey1 ...
	AuthKey1 IntegrationRuntimeAuthKeyName = "authKey1"
	// AuthKey2 ...
	AuthKey2 IntegrationRuntimeAuthKeyName = "authKey2"
)

func PossibleIntegrationRuntimeAuthKeyNameValues

func PossibleIntegrationRuntimeAuthKeyNameValues() []IntegrationRuntimeAuthKeyName

PossibleIntegrationRuntimeAuthKeyNameValues returns an array of possible values for the IntegrationRuntimeAuthKeyName const type.

type IntegrationRuntimeAuthKeys

type IntegrationRuntimeAuthKeys struct {
	autorest.Response `json:"-"`
	// AuthKey1 - The primary integration runtime authentication key.
	AuthKey1 *string `json:"authKey1,omitempty"`
	// AuthKey2 - The secondary integration runtime authentication key.
	AuthKey2 *string `json:"authKey2,omitempty"`
}

IntegrationRuntimeAuthKeys the integration runtime authentication keys.

type IntegrationRuntimeAutoUpdate

type IntegrationRuntimeAutoUpdate string

IntegrationRuntimeAutoUpdate enumerates the values for integration runtime auto update.

const (
	// Off ...
	Off IntegrationRuntimeAutoUpdate = "Off"
	// On ...
	On IntegrationRuntimeAutoUpdate = "On"
)

func PossibleIntegrationRuntimeAutoUpdateValues

func PossibleIntegrationRuntimeAutoUpdateValues() []IntegrationRuntimeAutoUpdate

PossibleIntegrationRuntimeAutoUpdateValues returns an array of possible values for the IntegrationRuntimeAutoUpdate const type.

type IntegrationRuntimeComputeProperties

type IntegrationRuntimeComputeProperties struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Location - The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
	Location *string `json:"location,omitempty"`
	// NodeSize - The node size requirement to managed integration runtime.
	NodeSize *string `json:"nodeSize,omitempty"`
	// NumberOfNodes - The required number of nodes for managed integration runtime.
	NumberOfNodes *int32 `json:"numberOfNodes,omitempty"`
	// MaxParallelExecutionsPerNode - Maximum parallel executions count per node for managed integration runtime.
	MaxParallelExecutionsPerNode *int32 `json:"maxParallelExecutionsPerNode,omitempty"`
	// VNetProperties - VNet properties for managed integration runtime.
	VNetProperties *IntegrationRuntimeVNetProperties `json:"vNetProperties,omitempty"`
}

IntegrationRuntimeComputeProperties the compute resource properties for managed integration runtime.

func (IntegrationRuntimeComputeProperties) MarshalJSON

func (ircp IntegrationRuntimeComputeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for IntegrationRuntimeComputeProperties.

type IntegrationRuntimeConnectionInfo

type IntegrationRuntimeConnectionInfo struct {
	autorest.Response `json:"-"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ServiceToken - The token generated in service. Callers use this token to authenticate to integration runtime.
	ServiceToken *string `json:"serviceToken,omitempty"`
	// IdentityCertThumbprint - The integration runtime SSL certificate thumbprint. Click-Once application uses it to do server validation.
	IdentityCertThumbprint *string `json:"identityCertThumbprint,omitempty"`
	// HostServiceURI - The on-premises integration runtime host URL.
	HostServiceURI *string `json:"hostServiceUri,omitempty"`
	// Version - The integration runtime version.
	Version *string `json:"version,omitempty"`
	// PublicKey - The public key for encrypting a credential when transferring the credential to the integration runtime.
	PublicKey *string `json:"publicKey,omitempty"`
	// IsIdentityCertExprired - Whether the identity certificate is expired.
	IsIdentityCertExprired *bool `json:"isIdentityCertExprired,omitempty"`
}

IntegrationRuntimeConnectionInfo connection information for encrypting the on-premises data source credentials.

func (IntegrationRuntimeConnectionInfo) MarshalJSON

func (irci IntegrationRuntimeConnectionInfo) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for IntegrationRuntimeConnectionInfo.

type IntegrationRuntimeCustomSetupScriptProperties

type IntegrationRuntimeCustomSetupScriptProperties struct {
	// BlobContainerURI - The URI of the Azure blob container that contains the custom setup script.
	BlobContainerURI *string `json:"blobContainerUri,omitempty"`
	// SasToken - The SAS token of the Azure blob container.
	SasToken *SecureString `json:"sasToken,omitempty"`
}

IntegrationRuntimeCustomSetupScriptProperties custom setup script properties for a managed dedicated integration runtime.

type IntegrationRuntimeEdition

type IntegrationRuntimeEdition string

IntegrationRuntimeEdition enumerates the values for integration runtime edition.

const (
	// Enterprise ...
	Enterprise IntegrationRuntimeEdition = "Enterprise"
	// Standard ...
	Standard IntegrationRuntimeEdition = "Standard"
)

func PossibleIntegrationRuntimeEditionValues

func PossibleIntegrationRuntimeEditionValues() []IntegrationRuntimeEdition

PossibleIntegrationRuntimeEditionValues returns an array of possible values for the IntegrationRuntimeEdition const type.

type IntegrationRuntimeInternalChannelEncryptionMode

type IntegrationRuntimeInternalChannelEncryptionMode string

IntegrationRuntimeInternalChannelEncryptionMode enumerates the values for integration runtime internal channel encryption mode.

const (
	// NotEncrypted ...
	NotEncrypted IntegrationRuntimeInternalChannelEncryptionMode = "NotEncrypted"
	// NotSet ...
	NotSet IntegrationRuntimeInternalChannelEncryptionMode = "NotSet"
	// SslEncrypted ...
	SslEncrypted IntegrationRuntimeInternalChannelEncryptionMode = "SslEncrypted"
)

func PossibleIntegrationRuntimeInternalChannelEncryptionModeValues

func PossibleIntegrationRuntimeInternalChannelEncryptionModeValues() []IntegrationRuntimeInternalChannelEncryptionMode

PossibleIntegrationRuntimeInternalChannelEncryptionModeValues returns an array of possible values for the IntegrationRuntimeInternalChannelEncryptionMode const type.

type IntegrationRuntimeLicenseType

type IntegrationRuntimeLicenseType string

IntegrationRuntimeLicenseType enumerates the values for integration runtime license type.

const (
	// BasePrice ...
	BasePrice IntegrationRuntimeLicenseType = "BasePrice"
	// LicenseIncluded ...
	LicenseIncluded IntegrationRuntimeLicenseType = "LicenseIncluded"
)

func PossibleIntegrationRuntimeLicenseTypeValues

func PossibleIntegrationRuntimeLicenseTypeValues() []IntegrationRuntimeLicenseType

PossibleIntegrationRuntimeLicenseTypeValues returns an array of possible values for the IntegrationRuntimeLicenseType const type.

type IntegrationRuntimeListResponse

type IntegrationRuntimeListResponse struct {
	autorest.Response `json:"-"`
	// Value - List of integration runtimes.
	Value *[]IntegrationRuntimeResource `json:"value,omitempty"`
	// NextLink - The link to the next page of results, if any remaining results exist.
	NextLink *string `json:"nextLink,omitempty"`
}

IntegrationRuntimeListResponse a list of integration runtime resources.

func (IntegrationRuntimeListResponse) IsEmpty

func (irlr IntegrationRuntimeListResponse) IsEmpty() bool

IsEmpty returns true if the ListResult contains no values.

type IntegrationRuntimeListResponseIterator

type IntegrationRuntimeListResponseIterator struct {
	// contains filtered or unexported fields
}

IntegrationRuntimeListResponseIterator provides access to a complete listing of IntegrationRuntimeResource values.

func (*IntegrationRuntimeListResponseIterator) Next

Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.

func (IntegrationRuntimeListResponseIterator) NotDone

NotDone returns true if the enumeration should be started or is not yet complete.

func (IntegrationRuntimeListResponseIterator) Response

Response returns the raw server response from the last page request.

func (IntegrationRuntimeListResponseIterator) Value

Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.

type IntegrationRuntimeListResponsePage

type IntegrationRuntimeListResponsePage struct {
	// contains filtered or unexported fields
}

IntegrationRuntimeListResponsePage contains a page of IntegrationRuntimeResource values.

func (*IntegrationRuntimeListResponsePage) Next

Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.

func (IntegrationRuntimeListResponsePage) NotDone

NotDone returns true if the page enumeration should be started or is not yet complete.

func (IntegrationRuntimeListResponsePage) Response

Response returns the raw server response from the last page request.

func (IntegrationRuntimeListResponsePage) Values

Values returns the slice of values for the current page or nil if there are no values.

type IntegrationRuntimeMonitoringData

type IntegrationRuntimeMonitoringData struct {
	autorest.Response `json:"-"`
	// Name - Integration runtime name.
	Name *string `json:"name,omitempty"`
	// Nodes - Integration runtime node monitoring data.
	Nodes *[]IntegrationRuntimeNodeMonitoringData `json:"nodes,omitempty"`
}

IntegrationRuntimeMonitoringData get monitoring data response.

type IntegrationRuntimeNodeIPAddress

type IntegrationRuntimeNodeIPAddress struct {
	autorest.Response `json:"-"`
	// IPAddress - The IP address of self-hosted integration runtime node.
	IPAddress *string `json:"ipAddress,omitempty"`
}

IntegrationRuntimeNodeIPAddress the IP address of self-hosted integration runtime node.

type IntegrationRuntimeNodeMonitoringData

type IntegrationRuntimeNodeMonitoringData struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// NodeName - Name of the integration runtime node.
	NodeName *string `json:"nodeName,omitempty"`
	// AvailableMemoryInMB - Available memory (MB) on the integration runtime node.
	AvailableMemoryInMB *int32 `json:"availableMemoryInMB,omitempty"`
	// CPUUtilization - CPU percentage on the integration runtime node.
	CPUUtilization *float64 `json:"cpuUtilization,omitempty"`
	// ConcurrentJobsLimit - Maximum concurrent jobs on the integration runtime node.
	ConcurrentJobsLimit *int32 `json:"concurrentJobsLimit,omitempty"`
	// ConcurrentJobsRunning - The number of jobs currently running on the integration runtime node.
	ConcurrentJobsRunning *int32 `json:"concurrentJobsRunning,omitempty"`
	// MaxConcurrentJobs - The maximum concurrent jobs in this integration runtime.
	MaxConcurrentJobs *int32 `json:"maxConcurrentJobs,omitempty"`
	// SentBytes - Sent bytes on the integration runtime node.
	SentBytes *float64 `json:"sentBytes,omitempty"`
	// ReceivedBytes - Received bytes on the integration runtime node.
	ReceivedBytes *float64 `json:"receivedBytes,omitempty"`
}

IntegrationRuntimeNodeMonitoringData monitoring data for integration runtime node.

func (IntegrationRuntimeNodeMonitoringData) MarshalJSON

func (irnmd IntegrationRuntimeNodeMonitoringData) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for IntegrationRuntimeNodeMonitoringData.

type IntegrationRuntimeNodesClient

type IntegrationRuntimeNodesClient struct {
	BaseClient
}

IntegrationRuntimeNodesClient is the the Azure Data Factory V2 management API provides a RESTful set of web services that interact with Azure Data Factory V2 services.

func NewIntegrationRuntimeNodesClient

func NewIntegrationRuntimeNodesClient(subscriptionID string) IntegrationRuntimeNodesClient

NewIntegrationRuntimeNodesClient creates an instance of the IntegrationRuntimeNodesClient client.

func NewIntegrationRuntimeNodesClientWithBaseURI

func NewIntegrationRuntimeNodesClientWithBaseURI(baseURI string, subscriptionID string) IntegrationRuntimeNodesClient

NewIntegrationRuntimeNodesClientWithBaseURI creates an instance of the IntegrationRuntimeNodesClient client.

func (IntegrationRuntimeNodesClient) Delete

func (client IntegrationRuntimeNodesClient) Delete(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, nodeName string) (result autorest.Response, err error)

Delete deletes a self-hosted integration runtime node. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name. nodeName - the integration runtime node name.

func (IntegrationRuntimeNodesClient) DeletePreparer

func (client IntegrationRuntimeNodesClient) DeletePreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, nodeName string) (*http.Request, error)

DeletePreparer prepares the Delete request.

func (IntegrationRuntimeNodesClient) DeleteResponder

func (client IntegrationRuntimeNodesClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)

DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.

func (IntegrationRuntimeNodesClient) DeleteSender

func (client IntegrationRuntimeNodesClient) DeleteSender(req *http.Request) (*http.Response, error)

DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimeNodesClient) GetIPAddress

func (client IntegrationRuntimeNodesClient) GetIPAddress(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, nodeName string) (result IntegrationRuntimeNodeIPAddress, err error)

GetIPAddress get the IP address of self-hosted integration runtime node. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name. nodeName - the integration runtime node name.

func (IntegrationRuntimeNodesClient) GetIPAddressPreparer

func (client IntegrationRuntimeNodesClient) GetIPAddressPreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, nodeName string) (*http.Request, error)

GetIPAddressPreparer prepares the GetIPAddress request.

func (IntegrationRuntimeNodesClient) GetIPAddressResponder

func (client IntegrationRuntimeNodesClient) GetIPAddressResponder(resp *http.Response) (result IntegrationRuntimeNodeIPAddress, err error)

GetIPAddressResponder handles the response to the GetIPAddress request. The method always closes the http.Response Body.

func (IntegrationRuntimeNodesClient) GetIPAddressSender

func (client IntegrationRuntimeNodesClient) GetIPAddressSender(req *http.Request) (*http.Response, error)

GetIPAddressSender sends the GetIPAddress request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimeNodesClient) Update

func (client IntegrationRuntimeNodesClient) Update(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, nodeName string, updateIntegrationRuntimeNodeRequest UpdateIntegrationRuntimeNodeRequest) (result SelfHostedIntegrationRuntimeNode, err error)

Update updates a self-hosted integration runtime node. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name. nodeName - the integration runtime node name. updateIntegrationRuntimeNodeRequest - the parameters for updating an integration runtime node.

func (IntegrationRuntimeNodesClient) UpdatePreparer

func (client IntegrationRuntimeNodesClient) UpdatePreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, nodeName string, updateIntegrationRuntimeNodeRequest UpdateIntegrationRuntimeNodeRequest) (*http.Request, error)

UpdatePreparer prepares the Update request.

func (IntegrationRuntimeNodesClient) UpdateResponder

func (client IntegrationRuntimeNodesClient) UpdateResponder(resp *http.Response) (result SelfHostedIntegrationRuntimeNode, err error)

UpdateResponder handles the response to the Update request. The method always closes the http.Response Body.

func (IntegrationRuntimeNodesClient) UpdateSender

func (client IntegrationRuntimeNodesClient) UpdateSender(req *http.Request) (*http.Response, error)

UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.

type IntegrationRuntimeReference

type IntegrationRuntimeReference struct {
	// Type - Type of integration runtime.
	Type *string `json:"type,omitempty"`
	// ReferenceName - Reference integration runtime name.
	ReferenceName *string `json:"referenceName,omitempty"`
	// Parameters - Arguments for integration runtime.
	Parameters map[string]interface{} `json:"parameters"`
}

IntegrationRuntimeReference integration runtime reference type.

func (IntegrationRuntimeReference) MarshalJSON

func (irr IntegrationRuntimeReference) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for IntegrationRuntimeReference.

type IntegrationRuntimeRegenerateKeyParameters

type IntegrationRuntimeRegenerateKeyParameters struct {
	// KeyName - The name of the authentication key to regenerate. Possible values include: 'AuthKey1', 'AuthKey2'
	KeyName IntegrationRuntimeAuthKeyName `json:"keyName,omitempty"`
}

IntegrationRuntimeRegenerateKeyParameters parameters to regenerate the authentication key.

type IntegrationRuntimeRemoveNodeRequest

type IntegrationRuntimeRemoveNodeRequest struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// NodeName - The name of the node to be removed.
	NodeName *string `json:"nodeName,omitempty"`
}

IntegrationRuntimeRemoveNodeRequest request to remove a node.

func (IntegrationRuntimeRemoveNodeRequest) MarshalJSON

func (irrnr IntegrationRuntimeRemoveNodeRequest) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for IntegrationRuntimeRemoveNodeRequest.

type IntegrationRuntimeResource

type IntegrationRuntimeResource struct {
	autorest.Response `json:"-"`
	// Properties - Integration runtime properties.
	Properties BasicIntegrationRuntime `json:"properties,omitempty"`
	// ID - The resource identifier.
	ID *string `json:"id,omitempty"`
	// Name - The resource name.
	Name *string `json:"name,omitempty"`
	// Type - The resource type.
	Type *string `json:"type,omitempty"`
	// Etag - Etag identifies change in the resource.
	Etag *string `json:"etag,omitempty"`
}

IntegrationRuntimeResource integration runtime resource type.

func (*IntegrationRuntimeResource) UnmarshalJSON

func (irr *IntegrationRuntimeResource) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for IntegrationRuntimeResource struct.

type IntegrationRuntimeSsisCatalogInfo

type IntegrationRuntimeSsisCatalogInfo struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// CatalogServerEndpoint - The catalog database server URL.
	CatalogServerEndpoint *string `json:"catalogServerEndpoint,omitempty"`
	// CatalogAdminUserName - The administrator user name of catalog database.
	CatalogAdminUserName *string `json:"catalogAdminUserName,omitempty"`
	// CatalogAdminPassword - The password of the administrator user account of the catalog database.
	CatalogAdminPassword *SecureString `json:"catalogAdminPassword,omitempty"`
	// CatalogPricingTier - The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/. Possible values include: 'IntegrationRuntimeSsisCatalogPricingTierBasic', 'IntegrationRuntimeSsisCatalogPricingTierStandard', 'IntegrationRuntimeSsisCatalogPricingTierPremium', 'IntegrationRuntimeSsisCatalogPricingTierPremiumRS'
	CatalogPricingTier IntegrationRuntimeSsisCatalogPricingTier `json:"catalogPricingTier,omitempty"`
}

IntegrationRuntimeSsisCatalogInfo catalog information for managed dedicated integration runtime.

func (IntegrationRuntimeSsisCatalogInfo) MarshalJSON

func (irsci IntegrationRuntimeSsisCatalogInfo) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for IntegrationRuntimeSsisCatalogInfo.

type IntegrationRuntimeSsisCatalogPricingTier

type IntegrationRuntimeSsisCatalogPricingTier string

IntegrationRuntimeSsisCatalogPricingTier enumerates the values for integration runtime ssis catalog pricing tier.

const (
	// IntegrationRuntimeSsisCatalogPricingTierBasic ...
	IntegrationRuntimeSsisCatalogPricingTierBasic IntegrationRuntimeSsisCatalogPricingTier = "Basic"
	// IntegrationRuntimeSsisCatalogPricingTierPremium ...
	IntegrationRuntimeSsisCatalogPricingTierPremium IntegrationRuntimeSsisCatalogPricingTier = "Premium"
	// IntegrationRuntimeSsisCatalogPricingTierPremiumRS ...
	IntegrationRuntimeSsisCatalogPricingTierPremiumRS IntegrationRuntimeSsisCatalogPricingTier = "PremiumRS"
	// IntegrationRuntimeSsisCatalogPricingTierStandard ...
	IntegrationRuntimeSsisCatalogPricingTierStandard IntegrationRuntimeSsisCatalogPricingTier = "Standard"
)

func PossibleIntegrationRuntimeSsisCatalogPricingTierValues

func PossibleIntegrationRuntimeSsisCatalogPricingTierValues() []IntegrationRuntimeSsisCatalogPricingTier

PossibleIntegrationRuntimeSsisCatalogPricingTierValues returns an array of possible values for the IntegrationRuntimeSsisCatalogPricingTier const type.

type IntegrationRuntimeSsisProperties

type IntegrationRuntimeSsisProperties struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// CatalogInfo - Catalog information for managed dedicated integration runtime.
	CatalogInfo *IntegrationRuntimeSsisCatalogInfo `json:"catalogInfo,omitempty"`
	// LicenseType - License type for bringing your own license scenario. Possible values include: 'BasePrice', 'LicenseIncluded'
	LicenseType IntegrationRuntimeLicenseType `json:"licenseType,omitempty"`
	// CustomSetupScriptProperties - Custom setup script properties for a managed dedicated integration runtime.
	CustomSetupScriptProperties *IntegrationRuntimeCustomSetupScriptProperties `json:"customSetupScriptProperties,omitempty"`
	// Edition - The edition for the SSIS Integration Runtime. Possible values include: 'Standard', 'Enterprise'
	Edition IntegrationRuntimeEdition `json:"edition,omitempty"`
}

IntegrationRuntimeSsisProperties SSIS properties for managed integration runtime.

func (IntegrationRuntimeSsisProperties) MarshalJSON

func (irsp IntegrationRuntimeSsisProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for IntegrationRuntimeSsisProperties.

type IntegrationRuntimeState

type IntegrationRuntimeState string

IntegrationRuntimeState enumerates the values for integration runtime state.

const (
	// Initial ...
	Initial IntegrationRuntimeState = "Initial"
	// Limited ...
	Limited IntegrationRuntimeState = "Limited"
	// NeedRegistration ...
	NeedRegistration IntegrationRuntimeState = "NeedRegistration"
	// Offline ...
	Offline IntegrationRuntimeState = "Offline"
	// Online ...
	Online IntegrationRuntimeState = "Online"
	// Started ...
	Started IntegrationRuntimeState = "Started"
	// Starting ...
	Starting IntegrationRuntimeState = "Starting"
	// Stopped ...
	Stopped IntegrationRuntimeState = "Stopped"
	// Stopping ...
	Stopping IntegrationRuntimeState = "Stopping"
)

func PossibleIntegrationRuntimeStateValues

func PossibleIntegrationRuntimeStateValues() []IntegrationRuntimeState

PossibleIntegrationRuntimeStateValues returns an array of possible values for the IntegrationRuntimeState const type.

type IntegrationRuntimeStatus

type IntegrationRuntimeStatus struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// DataFactoryName - The data factory name which the integration runtime belong to.
	DataFactoryName *string `json:"dataFactoryName,omitempty"`
	// State - The state of integration runtime. Possible values include: 'Initial', 'Stopped', 'Started', 'Starting', 'Stopping', 'NeedRegistration', 'Online', 'Limited', 'Offline'
	State IntegrationRuntimeState `json:"state,omitempty"`
	// Type - Possible values include: 'TypeBasicIntegrationRuntimeStatusTypeIntegrationRuntimeStatus', 'TypeBasicIntegrationRuntimeStatusTypeSelfHosted', 'TypeBasicIntegrationRuntimeStatusTypeManaged'
	Type TypeBasicIntegrationRuntimeStatus `json:"type,omitempty"`
}

IntegrationRuntimeStatus integration runtime status.

func (IntegrationRuntimeStatus) AsBasicIntegrationRuntimeStatus

func (irs IntegrationRuntimeStatus) AsBasicIntegrationRuntimeStatus() (BasicIntegrationRuntimeStatus, bool)

AsBasicIntegrationRuntimeStatus is the BasicIntegrationRuntimeStatus implementation for IntegrationRuntimeStatus.

func (IntegrationRuntimeStatus) AsIntegrationRuntimeStatus

func (irs IntegrationRuntimeStatus) AsIntegrationRuntimeStatus() (*IntegrationRuntimeStatus, bool)

AsIntegrationRuntimeStatus is the BasicIntegrationRuntimeStatus implementation for IntegrationRuntimeStatus.

func (IntegrationRuntimeStatus) AsManagedIntegrationRuntimeStatus

func (irs IntegrationRuntimeStatus) AsManagedIntegrationRuntimeStatus() (*ManagedIntegrationRuntimeStatus, bool)

AsManagedIntegrationRuntimeStatus is the BasicIntegrationRuntimeStatus implementation for IntegrationRuntimeStatus.

func (IntegrationRuntimeStatus) AsSelfHostedIntegrationRuntimeStatus

func (irs IntegrationRuntimeStatus) AsSelfHostedIntegrationRuntimeStatus() (*SelfHostedIntegrationRuntimeStatus, bool)

AsSelfHostedIntegrationRuntimeStatus is the BasicIntegrationRuntimeStatus implementation for IntegrationRuntimeStatus.

func (IntegrationRuntimeStatus) MarshalJSON

func (irs IntegrationRuntimeStatus) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for IntegrationRuntimeStatus.

type IntegrationRuntimeStatusListResponse

type IntegrationRuntimeStatusListResponse struct {
	// Value - List of integration runtime status.
	Value *[]IntegrationRuntimeStatusResponse `json:"value,omitempty"`
	// NextLink - The link to the next page of results, if any remaining results exist.
	NextLink *string `json:"nextLink,omitempty"`
}

IntegrationRuntimeStatusListResponse a list of integration runtime status.

type IntegrationRuntimeStatusResponse

type IntegrationRuntimeStatusResponse struct {
	autorest.Response `json:"-"`
	// Name - The integration runtime name.
	Name *string `json:"name,omitempty"`
	// Properties - Integration runtime properties.
	Properties BasicIntegrationRuntimeStatus `json:"properties,omitempty"`
}

IntegrationRuntimeStatusResponse integration runtime status response.

func (*IntegrationRuntimeStatusResponse) UnmarshalJSON

func (irsr *IntegrationRuntimeStatusResponse) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for IntegrationRuntimeStatusResponse struct.

type IntegrationRuntimeType

type IntegrationRuntimeType string

IntegrationRuntimeType enumerates the values for integration runtime type.

const (
	// Managed ...
	Managed IntegrationRuntimeType = "Managed"
	// SelfHosted ...
	SelfHosted IntegrationRuntimeType = "SelfHosted"
)

func PossibleIntegrationRuntimeTypeValues

func PossibleIntegrationRuntimeTypeValues() []IntegrationRuntimeType

PossibleIntegrationRuntimeTypeValues returns an array of possible values for the IntegrationRuntimeType const type.

type IntegrationRuntimeUpdateResult

type IntegrationRuntimeUpdateResult string

IntegrationRuntimeUpdateResult enumerates the values for integration runtime update result.

const (
	// Fail ...
	Fail IntegrationRuntimeUpdateResult = "Fail"
	// Succeed ...
	Succeed IntegrationRuntimeUpdateResult = "Succeed"
)

func PossibleIntegrationRuntimeUpdateResultValues

func PossibleIntegrationRuntimeUpdateResultValues() []IntegrationRuntimeUpdateResult

PossibleIntegrationRuntimeUpdateResultValues returns an array of possible values for the IntegrationRuntimeUpdateResult const type.

type IntegrationRuntimeVNetProperties

type IntegrationRuntimeVNetProperties struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// VNetID - The ID of the VNet that this integration runtime will join.
	VNetID *string `json:"vNetId,omitempty"`
	// Subnet - The name of the subnet this integration runtime will join.
	Subnet *string `json:"subnet,omitempty"`
}

IntegrationRuntimeVNetProperties vNet properties for managed integration runtime.

func (IntegrationRuntimeVNetProperties) MarshalJSON

func (irvnp IntegrationRuntimeVNetProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for IntegrationRuntimeVNetProperties.

type IntegrationRuntimesClient

type IntegrationRuntimesClient struct {
	BaseClient
}

IntegrationRuntimesClient is the the Azure Data Factory V2 management API provides a RESTful set of web services that interact with Azure Data Factory V2 services.

func NewIntegrationRuntimesClient

func NewIntegrationRuntimesClient(subscriptionID string) IntegrationRuntimesClient

NewIntegrationRuntimesClient creates an instance of the IntegrationRuntimesClient client.

func NewIntegrationRuntimesClientWithBaseURI

func NewIntegrationRuntimesClientWithBaseURI(baseURI string, subscriptionID string) IntegrationRuntimesClient

NewIntegrationRuntimesClientWithBaseURI creates an instance of the IntegrationRuntimesClient client.

func (IntegrationRuntimesClient) CreateOrUpdate

func (client IntegrationRuntimesClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, integrationRuntime IntegrationRuntimeResource, ifMatch string) (result IntegrationRuntimeResource, err error)

CreateOrUpdate creates or updates an integration runtime. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name. integrationRuntime - integration runtime resource definition. ifMatch - eTag of the integration runtime entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update.

func (IntegrationRuntimesClient) CreateOrUpdatePreparer

func (client IntegrationRuntimesClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, integrationRuntime IntegrationRuntimeResource, ifMatch string) (*http.Request, error)

CreateOrUpdatePreparer prepares the CreateOrUpdate request.

func (IntegrationRuntimesClient) CreateOrUpdateResponder

func (client IntegrationRuntimesClient) CreateOrUpdateResponder(resp *http.Response) (result IntegrationRuntimeResource, err error)

CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) CreateOrUpdateSender

func (client IntegrationRuntimesClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error)

CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) Delete

func (client IntegrationRuntimesClient) Delete(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (result autorest.Response, err error)

Delete deletes an integration runtime. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name.

func (IntegrationRuntimesClient) DeletePreparer

func (client IntegrationRuntimesClient) DeletePreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (*http.Request, error)

DeletePreparer prepares the Delete request.

func (IntegrationRuntimesClient) DeleteResponder

func (client IntegrationRuntimesClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)

DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) DeleteSender

func (client IntegrationRuntimesClient) DeleteSender(req *http.Request) (*http.Response, error)

DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) Get

func (client IntegrationRuntimesClient) Get(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (result IntegrationRuntimeResource, err error)

Get gets an integration runtime. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name.

func (IntegrationRuntimesClient) GetConnectionInfo

func (client IntegrationRuntimesClient) GetConnectionInfo(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (result IntegrationRuntimeConnectionInfo, err error)

GetConnectionInfo gets the on-premises integration runtime connection information for encrypting the on-premises data source credentials. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name.

func (IntegrationRuntimesClient) GetConnectionInfoPreparer

func (client IntegrationRuntimesClient) GetConnectionInfoPreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (*http.Request, error)

GetConnectionInfoPreparer prepares the GetConnectionInfo request.

func (IntegrationRuntimesClient) GetConnectionInfoResponder

func (client IntegrationRuntimesClient) GetConnectionInfoResponder(resp *http.Response) (result IntegrationRuntimeConnectionInfo, err error)

GetConnectionInfoResponder handles the response to the GetConnectionInfo request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) GetConnectionInfoSender

func (client IntegrationRuntimesClient) GetConnectionInfoSender(req *http.Request) (*http.Response, error)

GetConnectionInfoSender sends the GetConnectionInfo request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) GetMonitoringData

func (client IntegrationRuntimesClient) GetMonitoringData(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (result IntegrationRuntimeMonitoringData, err error)

GetMonitoringData get the integration runtime monitoring data, which includes the monitor data for all the nodes under this integration runtime. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name.

func (IntegrationRuntimesClient) GetMonitoringDataPreparer

func (client IntegrationRuntimesClient) GetMonitoringDataPreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (*http.Request, error)

GetMonitoringDataPreparer prepares the GetMonitoringData request.

func (IntegrationRuntimesClient) GetMonitoringDataResponder

func (client IntegrationRuntimesClient) GetMonitoringDataResponder(resp *http.Response) (result IntegrationRuntimeMonitoringData, err error)

GetMonitoringDataResponder handles the response to the GetMonitoringData request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) GetMonitoringDataSender

func (client IntegrationRuntimesClient) GetMonitoringDataSender(req *http.Request) (*http.Response, error)

GetMonitoringDataSender sends the GetMonitoringData request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) GetPreparer

func (client IntegrationRuntimesClient) GetPreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (*http.Request, error)

GetPreparer prepares the Get request.

func (IntegrationRuntimesClient) GetResponder

func (client IntegrationRuntimesClient) GetResponder(resp *http.Response) (result IntegrationRuntimeResource, err error)

GetResponder handles the response to the Get request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) GetSender

func (client IntegrationRuntimesClient) GetSender(req *http.Request) (*http.Response, error)

GetSender sends the Get request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) GetStatus

func (client IntegrationRuntimesClient) GetStatus(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (result IntegrationRuntimeStatusResponse, err error)

GetStatus gets detailed status information for an integration runtime. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name.

func (IntegrationRuntimesClient) GetStatusPreparer

func (client IntegrationRuntimesClient) GetStatusPreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (*http.Request, error)

GetStatusPreparer prepares the GetStatus request.

func (IntegrationRuntimesClient) GetStatusResponder

func (client IntegrationRuntimesClient) GetStatusResponder(resp *http.Response) (result IntegrationRuntimeStatusResponse, err error)

GetStatusResponder handles the response to the GetStatus request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) GetStatusSender

func (client IntegrationRuntimesClient) GetStatusSender(req *http.Request) (*http.Response, error)

GetStatusSender sends the GetStatus request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) ListAuthKeys

func (client IntegrationRuntimesClient) ListAuthKeys(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (result IntegrationRuntimeAuthKeys, err error)

ListAuthKeys retrieves the authentication keys for an integration runtime. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name.

func (IntegrationRuntimesClient) ListAuthKeysPreparer

func (client IntegrationRuntimesClient) ListAuthKeysPreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (*http.Request, error)

ListAuthKeysPreparer prepares the ListAuthKeys request.

func (IntegrationRuntimesClient) ListAuthKeysResponder

func (client IntegrationRuntimesClient) ListAuthKeysResponder(resp *http.Response) (result IntegrationRuntimeAuthKeys, err error)

ListAuthKeysResponder handles the response to the ListAuthKeys request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) ListAuthKeysSender

func (client IntegrationRuntimesClient) ListAuthKeysSender(req *http.Request) (*http.Response, error)

ListAuthKeysSender sends the ListAuthKeys request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) ListByFactory

func (client IntegrationRuntimesClient) ListByFactory(ctx context.Context, resourceGroupName string, factoryName string) (result IntegrationRuntimeListResponsePage, err error)

ListByFactory lists integration runtimes. Parameters: resourceGroupName - the resource group name. factoryName - the factory name.

func (IntegrationRuntimesClient) ListByFactoryComplete

func (client IntegrationRuntimesClient) ListByFactoryComplete(ctx context.Context, resourceGroupName string, factoryName string) (result IntegrationRuntimeListResponseIterator, err error)

ListByFactoryComplete enumerates all values, automatically crossing page boundaries as required.

func (IntegrationRuntimesClient) ListByFactoryPreparer

func (client IntegrationRuntimesClient) ListByFactoryPreparer(ctx context.Context, resourceGroupName string, factoryName string) (*http.Request, error)

ListByFactoryPreparer prepares the ListByFactory request.

func (IntegrationRuntimesClient) ListByFactoryResponder

func (client IntegrationRuntimesClient) ListByFactoryResponder(resp *http.Response) (result IntegrationRuntimeListResponse, err error)

ListByFactoryResponder handles the response to the ListByFactory request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) ListByFactorySender

func (client IntegrationRuntimesClient) ListByFactorySender(req *http.Request) (*http.Response, error)

ListByFactorySender sends the ListByFactory request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) RegenerateAuthKey

func (client IntegrationRuntimesClient) RegenerateAuthKey(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, regenerateKeyParameters IntegrationRuntimeRegenerateKeyParameters) (result IntegrationRuntimeAuthKeys, err error)

RegenerateAuthKey regenerates the authentication key for an integration runtime. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name. regenerateKeyParameters - the parameters for regenerating integration runtime authentication key.

func (IntegrationRuntimesClient) RegenerateAuthKeyPreparer

func (client IntegrationRuntimesClient) RegenerateAuthKeyPreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, regenerateKeyParameters IntegrationRuntimeRegenerateKeyParameters) (*http.Request, error)

RegenerateAuthKeyPreparer prepares the RegenerateAuthKey request.

func (IntegrationRuntimesClient) RegenerateAuthKeyResponder

func (client IntegrationRuntimesClient) RegenerateAuthKeyResponder(resp *http.Response) (result IntegrationRuntimeAuthKeys, err error)

RegenerateAuthKeyResponder handles the response to the RegenerateAuthKey request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) RegenerateAuthKeySender

func (client IntegrationRuntimesClient) RegenerateAuthKeySender(req *http.Request) (*http.Response, error)

RegenerateAuthKeySender sends the RegenerateAuthKey request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) RemoveNode

func (client IntegrationRuntimesClient) RemoveNode(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, removeNodeParameters IntegrationRuntimeRemoveNodeRequest) (result autorest.Response, err error)

RemoveNode remove a node from integration runtime. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name. removeNodeParameters - the name of the node to be removed from an integration runtime.

func (IntegrationRuntimesClient) RemoveNodePreparer

func (client IntegrationRuntimesClient) RemoveNodePreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, removeNodeParameters IntegrationRuntimeRemoveNodeRequest) (*http.Request, error)

RemoveNodePreparer prepares the RemoveNode request.

func (IntegrationRuntimesClient) RemoveNodeResponder

func (client IntegrationRuntimesClient) RemoveNodeResponder(resp *http.Response) (result autorest.Response, err error)

RemoveNodeResponder handles the response to the RemoveNode request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) RemoveNodeSender

func (client IntegrationRuntimesClient) RemoveNodeSender(req *http.Request) (*http.Response, error)

RemoveNodeSender sends the RemoveNode request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) Start

func (client IntegrationRuntimesClient) Start(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (result IntegrationRuntimesStartFuture, err error)

Start starts a ManagedReserved type integration runtime. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name.

func (IntegrationRuntimesClient) StartPreparer

func (client IntegrationRuntimesClient) StartPreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (*http.Request, error)

StartPreparer prepares the Start request.

func (IntegrationRuntimesClient) StartResponder

func (client IntegrationRuntimesClient) StartResponder(resp *http.Response) (result IntegrationRuntimeStatusResponse, err error)

StartResponder handles the response to the Start request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) StartSender

func (client IntegrationRuntimesClient) StartSender(req *http.Request) (future IntegrationRuntimesStartFuture, err error)

StartSender sends the Start request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) Stop

func (client IntegrationRuntimesClient) Stop(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (result IntegrationRuntimesStopFuture, err error)

Stop stops a ManagedReserved type integration runtime. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name.

func (IntegrationRuntimesClient) StopPreparer

func (client IntegrationRuntimesClient) StopPreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (*http.Request, error)

StopPreparer prepares the Stop request.

func (IntegrationRuntimesClient) StopResponder

func (client IntegrationRuntimesClient) StopResponder(resp *http.Response) (result autorest.Response, err error)

StopResponder handles the response to the Stop request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) StopSender

func (client IntegrationRuntimesClient) StopSender(req *http.Request) (future IntegrationRuntimesStopFuture, err error)

StopSender sends the Stop request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) SyncCredentials

func (client IntegrationRuntimesClient) SyncCredentials(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (result autorest.Response, err error)

SyncCredentials force the integration runtime to synchronize credentials across integration runtime nodes, and this will override the credentials across all worker nodes with those available on the dispatcher node. If you already have the latest credential backup file, you should manually import it (preferred) on any self-hosted integration runtime node than using this API directly. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name.

func (IntegrationRuntimesClient) SyncCredentialsPreparer

func (client IntegrationRuntimesClient) SyncCredentialsPreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (*http.Request, error)

SyncCredentialsPreparer prepares the SyncCredentials request.

func (IntegrationRuntimesClient) SyncCredentialsResponder

func (client IntegrationRuntimesClient) SyncCredentialsResponder(resp *http.Response) (result autorest.Response, err error)

SyncCredentialsResponder handles the response to the SyncCredentials request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) SyncCredentialsSender

func (client IntegrationRuntimesClient) SyncCredentialsSender(req *http.Request) (*http.Response, error)

SyncCredentialsSender sends the SyncCredentials request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) Update

func (client IntegrationRuntimesClient) Update(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, updateIntegrationRuntimeRequest UpdateIntegrationRuntimeRequest) (result IntegrationRuntimeStatusResponse, err error)

Update updates an integration runtime. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name. updateIntegrationRuntimeRequest - the parameters for updating an integration runtime.

func (IntegrationRuntimesClient) UpdatePreparer

func (client IntegrationRuntimesClient) UpdatePreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string, updateIntegrationRuntimeRequest UpdateIntegrationRuntimeRequest) (*http.Request, error)

UpdatePreparer prepares the Update request.

func (IntegrationRuntimesClient) UpdateResponder

func (client IntegrationRuntimesClient) UpdateResponder(resp *http.Response) (result IntegrationRuntimeStatusResponse, err error)

UpdateResponder handles the response to the Update request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) UpdateSender

func (client IntegrationRuntimesClient) UpdateSender(req *http.Request) (*http.Response, error)

UpdateSender sends the Update request. The method will close the http.Response Body if it receives an error.

func (IntegrationRuntimesClient) Upgrade

func (client IntegrationRuntimesClient) Upgrade(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (result autorest.Response, err error)

Upgrade upgrade self-hosted integration runtime to latest version if availably. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. integrationRuntimeName - the integration runtime name.

func (IntegrationRuntimesClient) UpgradePreparer

func (client IntegrationRuntimesClient) UpgradePreparer(ctx context.Context, resourceGroupName string, factoryName string, integrationRuntimeName string) (*http.Request, error)

UpgradePreparer prepares the Upgrade request.

func (IntegrationRuntimesClient) UpgradeResponder

func (client IntegrationRuntimesClient) UpgradeResponder(resp *http.Response) (result autorest.Response, err error)

UpgradeResponder handles the response to the Upgrade request. The method always closes the http.Response Body.

func (IntegrationRuntimesClient) UpgradeSender

func (client IntegrationRuntimesClient) UpgradeSender(req *http.Request) (*http.Response, error)

UpgradeSender sends the Upgrade request. The method will close the http.Response Body if it receives an error.

type IntegrationRuntimesStartFuture

type IntegrationRuntimesStartFuture struct {
	azure.Future
	// contains filtered or unexported fields
}

IntegrationRuntimesStartFuture an abstraction for monitoring and retrieving the results of a long-running operation.

func (IntegrationRuntimesStartFuture) Result

Result returns the result of the asynchronous operation. If the operation has not completed it will return an error.

type IntegrationRuntimesStopFuture

type IntegrationRuntimesStopFuture struct {
	azure.Future
	// contains filtered or unexported fields
}

IntegrationRuntimesStopFuture an abstraction for monitoring and retrieving the results of a long-running operation.

func (IntegrationRuntimesStopFuture) Result

Result returns the result of the asynchronous operation. If the operation has not completed it will return an error.

type JSONFormat

type JSONFormat struct {
	// FilePattern - File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive. Possible values include: 'SetOfObjects', 'ArrayOfObjects'
	FilePattern JSONFormatFilePattern `json:"filePattern,omitempty"`
	// NestingSeparator - The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
	NestingSeparator interface{} `json:"nestingSeparator,omitempty"`
	// EncodingName - The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
	EncodingName interface{} `json:"encodingName,omitempty"`
	// JSONNodeReference - The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
	JSONNodeReference interface{} `json:"jsonNodeReference,omitempty"`
	// JSONPathDefinition - The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
	JSONPathDefinition interface{} `json:"jsonPathDefinition,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Serializer - Serializer. Type: string (or Expression with resultType string).
	Serializer interface{} `json:"serializer,omitempty"`
	// Deserializer - Deserializer. Type: string (or Expression with resultType string).
	Deserializer interface{} `json:"deserializer,omitempty"`
	// Type - Possible values include: 'TypeDatasetStorageFormat', 'TypeParquetFormat', 'TypeOrcFormat', 'TypeAvroFormat', 'TypeJSONFormat', 'TypeTextFormat'
	Type TypeBasicDatasetStorageFormat `json:"type,omitempty"`
}

JSONFormat the data stored in JSON format.

func (JSONFormat) AsAvroFormat

func (jf JSONFormat) AsAvroFormat() (*AvroFormat, bool)

AsAvroFormat is the BasicDatasetStorageFormat implementation for JSONFormat.

func (JSONFormat) AsBasicDatasetStorageFormat

func (jf JSONFormat) AsBasicDatasetStorageFormat() (BasicDatasetStorageFormat, bool)

AsBasicDatasetStorageFormat is the BasicDatasetStorageFormat implementation for JSONFormat.

func (JSONFormat) AsDatasetStorageFormat

func (jf JSONFormat) AsDatasetStorageFormat() (*DatasetStorageFormat, bool)

AsDatasetStorageFormat is the BasicDatasetStorageFormat implementation for JSONFormat.

func (JSONFormat) AsJSONFormat

func (jf JSONFormat) AsJSONFormat() (*JSONFormat, bool)

AsJSONFormat is the BasicDatasetStorageFormat implementation for JSONFormat.

func (JSONFormat) AsOrcFormat

func (jf JSONFormat) AsOrcFormat() (*OrcFormat, bool)

AsOrcFormat is the BasicDatasetStorageFormat implementation for JSONFormat.

func (JSONFormat) AsParquetFormat

func (jf JSONFormat) AsParquetFormat() (*ParquetFormat, bool)

AsParquetFormat is the BasicDatasetStorageFormat implementation for JSONFormat.

func (JSONFormat) AsTextFormat

func (jf JSONFormat) AsTextFormat() (*TextFormat, bool)

AsTextFormat is the BasicDatasetStorageFormat implementation for JSONFormat.

func (JSONFormat) MarshalJSON

func (jf JSONFormat) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for JSONFormat.

type JSONFormatFilePattern

type JSONFormatFilePattern string

JSONFormatFilePattern enumerates the values for json format file pattern.

const (
	// ArrayOfObjects ...
	ArrayOfObjects JSONFormatFilePattern = "arrayOfObjects"
	// SetOfObjects ...
	SetOfObjects JSONFormatFilePattern = "setOfObjects"
)

func PossibleJSONFormatFilePatternValues

func PossibleJSONFormatFilePatternValues() []JSONFormatFilePattern

PossibleJSONFormatFilePatternValues returns an array of possible values for the JSONFormatFilePattern const type.

type JiraLinkedService

type JiraLinkedService struct {
	// JiraLinkedServiceTypeProperties - Jira Serivce linked service properties.
	*JiraLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

JiraLinkedService jira Serivce linked service.

func (JiraLinkedService) AsAmazonMWSLinkedService

func (jls JiraLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAmazonRedshiftLinkedService

func (jls JiraLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAmazonS3LinkedService

func (jls JiraLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAzureBatchLinkedService

func (jls JiraLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (jls JiraLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAzureDataLakeStoreLinkedService

func (jls JiraLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAzureDatabricksLinkedService

func (jls JiraLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAzureKeyVaultLinkedService

func (jls JiraLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAzureMLLinkedService

func (jls JiraLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAzureMySQLLinkedService

func (jls JiraLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAzurePostgreSQLLinkedService

func (jls JiraLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAzureSQLDWLinkedService

func (jls JiraLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAzureSQLDatabaseLinkedService

func (jls JiraLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAzureSearchLinkedService

func (jls JiraLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsAzureStorageLinkedService

func (jls JiraLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsBasicLinkedService

func (jls JiraLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsCassandraLinkedService

func (jls JiraLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsConcurLinkedService

func (jls JiraLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsCosmosDbLinkedService

func (jls JiraLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsCouchbaseLinkedService

func (jls JiraLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsCustomDataSourceLinkedService

func (jls JiraLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsDb2LinkedService

func (jls JiraLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsDrillLinkedService

func (jls JiraLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsDynamicsLinkedService

func (jls JiraLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsEloquaLinkedService

func (jls JiraLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsFileServerLinkedService

func (jls JiraLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsFtpServerLinkedService

func (jls JiraLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsGoogleBigQueryLinkedService

func (jls JiraLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsGreenplumLinkedService

func (jls JiraLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsHBaseLinkedService

func (jls JiraLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsHDInsightLinkedService

func (jls JiraLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsHDInsightOnDemandLinkedService

func (jls JiraLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsHTTPLinkedService

func (jls JiraLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsHdfsLinkedService

func (jls JiraLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsHiveLinkedService

func (jls JiraLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsHubspotLinkedService

func (jls JiraLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsImpalaLinkedService

func (jls JiraLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsJiraLinkedService

func (jls JiraLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsLinkedService

func (jls JiraLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsMagentoLinkedService

func (jls JiraLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsMariaDBLinkedService

func (jls JiraLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsMarketoLinkedService

func (jls JiraLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsMongoDbLinkedService

func (jls JiraLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsMySQLLinkedService

func (jls JiraLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsNetezzaLinkedService

func (jls JiraLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsODataLinkedService

func (jls JiraLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsOdbcLinkedService

func (jls JiraLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsOracleLinkedService

func (jls JiraLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsPaypalLinkedService

func (jls JiraLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsPhoenixLinkedService

func (jls JiraLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsPostgreSQLLinkedService

func (jls JiraLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsPrestoLinkedService

func (jls JiraLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsQuickBooksLinkedService

func (jls JiraLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsResponsysLinkedService

func (jls JiraLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsSQLServerLinkedService

func (jls JiraLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsSalesforceLinkedService

func (jls JiraLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsSalesforceMarketingCloudLinkedService

func (jls JiraLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsSapBWLinkedService

func (jls JiraLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsSapCloudForCustomerLinkedService

func (jls JiraLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsSapEccLinkedService

func (jls JiraLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsSapHanaLinkedService

func (jls JiraLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsServiceNowLinkedService

func (jls JiraLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsSftpServerLinkedService

func (jls JiraLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsShopifyLinkedService

func (jls JiraLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsSparkLinkedService

func (jls JiraLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsSquareLinkedService

func (jls JiraLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsSybaseLinkedService

func (jls JiraLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsTeradataLinkedService

func (jls JiraLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsVerticaLinkedService

func (jls JiraLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsWebLinkedService

func (jls JiraLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsXeroLinkedService

func (jls JiraLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) AsZohoLinkedService

func (jls JiraLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for JiraLinkedService.

func (JiraLinkedService) MarshalJSON

func (jls JiraLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for JiraLinkedService.

func (*JiraLinkedService) UnmarshalJSON

func (jls *JiraLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for JiraLinkedService struct.

type JiraLinkedServiceTypeProperties

type JiraLinkedServiceTypeProperties struct {
	// Host - The IP address or host name of the Jira service. (e.g. jira.example.com)
	Host interface{} `json:"host,omitempty"`
	// Port - The TCP port that the Jira server uses to listen for client connections. The default value is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
	Port interface{} `json:"port,omitempty"`
	// Username - The user name that you use to access Jira Service.
	Username interface{} `json:"username,omitempty"`
	// Password - The password corresponding to the user name that you provided in the username field.
	Password BasicSecretBase `json:"password,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

JiraLinkedServiceTypeProperties jira Serivce linked service properties.

func (*JiraLinkedServiceTypeProperties) UnmarshalJSON

func (jlstp *JiraLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for JiraLinkedServiceTypeProperties struct.

type JiraObjectDataset

type JiraObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

JiraObjectDataset jira Serivce dataset.

func (JiraObjectDataset) AsAmazonMWSObjectDataset

func (jod JiraObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsAmazonS3Dataset

func (jod JiraObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsAzureBlobDataset

func (jod JiraObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsAzureDataLakeStoreDataset

func (jod JiraObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsAzureMySQLTableDataset

func (jod JiraObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsAzurePostgreSQLTableDataset

func (jod JiraObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsAzureSQLDWTableDataset

func (jod JiraObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsAzureSQLTableDataset

func (jod JiraObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsAzureSearchIndexDataset

func (jod JiraObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsAzureTableDataset

func (jod JiraObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsBasicDataset

func (jod JiraObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsCassandraTableDataset

func (jod JiraObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsConcurObjectDataset

func (jod JiraObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsCouchbaseTableDataset

func (jod JiraObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsCustomDataset

func (jod JiraObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsDataset

func (jod JiraObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsDocumentDbCollectionDataset

func (jod JiraObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsDrillTableDataset

func (jod JiraObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsDynamicsEntityDataset

func (jod JiraObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsEloquaObjectDataset

func (jod JiraObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsFileShareDataset

func (jod JiraObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsGoogleBigQueryObjectDataset

func (jod JiraObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsGreenplumTableDataset

func (jod JiraObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsHBaseObjectDataset

func (jod JiraObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsHTTPDataset

func (jod JiraObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsHiveObjectDataset

func (jod JiraObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsHubspotObjectDataset

func (jod JiraObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsImpalaObjectDataset

func (jod JiraObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsJiraObjectDataset

func (jod JiraObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsMagentoObjectDataset

func (jod JiraObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsMariaDBTableDataset

func (jod JiraObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsMarketoObjectDataset

func (jod JiraObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsMongoDbCollectionDataset

func (jod JiraObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsNetezzaTableDataset

func (jod JiraObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsODataResourceDataset

func (jod JiraObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsOracleTableDataset

func (jod JiraObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsPaypalObjectDataset

func (jod JiraObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsPhoenixObjectDataset

func (jod JiraObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsPrestoObjectDataset

func (jod JiraObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsQuickBooksObjectDataset

func (jod JiraObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsRelationalTableDataset

func (jod JiraObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsResponsysObjectDataset

func (jod JiraObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsSQLServerTableDataset

func (jod JiraObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (jod JiraObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsSalesforceObjectDataset

func (jod JiraObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsSapCloudForCustomerResourceDataset

func (jod JiraObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsSapEccResourceDataset

func (jod JiraObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsServiceNowObjectDataset

func (jod JiraObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsShopifyObjectDataset

func (jod JiraObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsSparkObjectDataset

func (jod JiraObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsSquareObjectDataset

func (jod JiraObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsVerticaTableDataset

func (jod JiraObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsWebTableDataset

func (jod JiraObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsXeroObjectDataset

func (jod JiraObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) AsZohoObjectDataset

func (jod JiraObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for JiraObjectDataset.

func (JiraObjectDataset) MarshalJSON

func (jod JiraObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for JiraObjectDataset.

type JiraSource

type JiraSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

JiraSource a copy activity Jira Serivce source.

func (JiraSource) AsAmazonMWSSource

func (js JiraSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsAmazonRedshiftSource

func (js JiraSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsAzureDataLakeStoreSource

func (js JiraSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsAzureMySQLSource

func (js JiraSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsAzurePostgreSQLSource

func (js JiraSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsAzureTableSource

func (js JiraSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsBasicCopySource

func (js JiraSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsBlobSource

func (js JiraSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsCassandraSource

func (js JiraSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsConcurSource

func (js JiraSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsCopySource

func (js JiraSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsCouchbaseSource

func (js JiraSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsDocumentDbCollectionSource

func (js JiraSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsDrillSource

func (js JiraSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsDynamicsSource

func (js JiraSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsEloquaSource

func (js JiraSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsFileSystemSource

func (js JiraSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsGoogleBigQuerySource

func (js JiraSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsGreenplumSource

func (js JiraSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsHBaseSource

func (js JiraSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsHTTPSource

func (js JiraSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsHdfsSource

func (js JiraSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsHiveSource

func (js JiraSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsHubspotSource

func (js JiraSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsImpalaSource

func (js JiraSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsJiraSource

func (js JiraSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsMagentoSource

func (js JiraSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsMariaDBSource

func (js JiraSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsMarketoSource

func (js JiraSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsMongoDbSource

func (js JiraSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsNetezzaSource

func (js JiraSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsOracleSource

func (js JiraSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsPaypalSource

func (js JiraSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsPhoenixSource

func (js JiraSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsPrestoSource

func (js JiraSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsQuickBooksSource

func (js JiraSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsRelationalSource

func (js JiraSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsResponsysSource

func (js JiraSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsSQLDWSource

func (js JiraSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsSQLSource

func (js JiraSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsSalesforceMarketingCloudSource

func (js JiraSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsSalesforceSource

func (js JiraSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsSapCloudForCustomerSource

func (js JiraSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsSapEccSource

func (js JiraSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsServiceNowSource

func (js JiraSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsShopifySource

func (js JiraSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsSparkSource

func (js JiraSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsSquareSource

func (js JiraSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsVerticaSource

func (js JiraSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsWebSource

func (js JiraSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsXeroSource

func (js JiraSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) AsZohoSource

func (js JiraSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for JiraSource.

func (JiraSource) MarshalJSON

func (js JiraSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for JiraSource.

type LinkedIntegrationRuntime

type LinkedIntegrationRuntime struct {
	// Name - The name of the linked integration runtime.
	Name *string `json:"name,omitempty"`
	// SubscriptionID - The subscription ID for which the linked integration runtime belong to.
	SubscriptionID *string `json:"subscriptionId,omitempty"`
	// DataFactoryName - The name of the data factory for which the linked integration runtime belong to.
	DataFactoryName *string `json:"dataFactoryName,omitempty"`
	// DataFactoryLocation - The location of the data factory for which the linked integration runtime belong to.
	DataFactoryLocation *string `json:"dataFactoryLocation,omitempty"`
	// CreateTime - The creating time of the linked integration runtime.
	CreateTime *date.Time `json:"createTime,omitempty"`
}

LinkedIntegrationRuntime the linked integration runtime information.

type LinkedIntegrationRuntimeKey

type LinkedIntegrationRuntimeKey struct {
	// Key - Type of the secret.
	Key *SecureString `json:"key,omitempty"`
	// AuthorizationType - Possible values include: 'AuthorizationTypeLinkedIntegrationRuntimeProperties', 'AuthorizationTypeRBAC', 'AuthorizationTypeKey'
	AuthorizationType AuthorizationType `json:"authorizationType,omitempty"`
}

LinkedIntegrationRuntimeKey the base definition of a secret type.

func (LinkedIntegrationRuntimeKey) AsBasicLinkedIntegrationRuntimeProperties

func (lirk LinkedIntegrationRuntimeKey) AsBasicLinkedIntegrationRuntimeProperties() (BasicLinkedIntegrationRuntimeProperties, bool)

AsBasicLinkedIntegrationRuntimeProperties is the BasicLinkedIntegrationRuntimeProperties implementation for LinkedIntegrationRuntimeKey.

func (LinkedIntegrationRuntimeKey) AsLinkedIntegrationRuntimeKey

func (lirk LinkedIntegrationRuntimeKey) AsLinkedIntegrationRuntimeKey() (*LinkedIntegrationRuntimeKey, bool)

AsLinkedIntegrationRuntimeKey is the BasicLinkedIntegrationRuntimeProperties implementation for LinkedIntegrationRuntimeKey.

func (LinkedIntegrationRuntimeKey) AsLinkedIntegrationRuntimeProperties

func (lirk LinkedIntegrationRuntimeKey) AsLinkedIntegrationRuntimeProperties() (*LinkedIntegrationRuntimeProperties, bool)

AsLinkedIntegrationRuntimeProperties is the BasicLinkedIntegrationRuntimeProperties implementation for LinkedIntegrationRuntimeKey.

func (LinkedIntegrationRuntimeKey) AsLinkedIntegrationRuntimeRbac

func (lirk LinkedIntegrationRuntimeKey) AsLinkedIntegrationRuntimeRbac() (*LinkedIntegrationRuntimeRbac, bool)

AsLinkedIntegrationRuntimeRbac is the BasicLinkedIntegrationRuntimeProperties implementation for LinkedIntegrationRuntimeKey.

func (LinkedIntegrationRuntimeKey) MarshalJSON

func (lirk LinkedIntegrationRuntimeKey) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for LinkedIntegrationRuntimeKey.

type LinkedIntegrationRuntimeProperties

type LinkedIntegrationRuntimeProperties struct {
	// AuthorizationType - Possible values include: 'AuthorizationTypeLinkedIntegrationRuntimeProperties', 'AuthorizationTypeRBAC', 'AuthorizationTypeKey'
	AuthorizationType AuthorizationType `json:"authorizationType,omitempty"`
}

LinkedIntegrationRuntimeProperties the base definition of a secret type.

func (LinkedIntegrationRuntimeProperties) AsBasicLinkedIntegrationRuntimeProperties

func (lirp LinkedIntegrationRuntimeProperties) AsBasicLinkedIntegrationRuntimeProperties() (BasicLinkedIntegrationRuntimeProperties, bool)

AsBasicLinkedIntegrationRuntimeProperties is the BasicLinkedIntegrationRuntimeProperties implementation for LinkedIntegrationRuntimeProperties.

func (LinkedIntegrationRuntimeProperties) AsLinkedIntegrationRuntimeKey

func (lirp LinkedIntegrationRuntimeProperties) AsLinkedIntegrationRuntimeKey() (*LinkedIntegrationRuntimeKey, bool)

AsLinkedIntegrationRuntimeKey is the BasicLinkedIntegrationRuntimeProperties implementation for LinkedIntegrationRuntimeProperties.

func (LinkedIntegrationRuntimeProperties) AsLinkedIntegrationRuntimeProperties

func (lirp LinkedIntegrationRuntimeProperties) AsLinkedIntegrationRuntimeProperties() (*LinkedIntegrationRuntimeProperties, bool)

AsLinkedIntegrationRuntimeProperties is the BasicLinkedIntegrationRuntimeProperties implementation for LinkedIntegrationRuntimeProperties.

func (LinkedIntegrationRuntimeProperties) AsLinkedIntegrationRuntimeRbac

func (lirp LinkedIntegrationRuntimeProperties) AsLinkedIntegrationRuntimeRbac() (*LinkedIntegrationRuntimeRbac, bool)

AsLinkedIntegrationRuntimeRbac is the BasicLinkedIntegrationRuntimeProperties implementation for LinkedIntegrationRuntimeProperties.

func (LinkedIntegrationRuntimeProperties) MarshalJSON

func (lirp LinkedIntegrationRuntimeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for LinkedIntegrationRuntimeProperties.

type LinkedIntegrationRuntimeRbac

type LinkedIntegrationRuntimeRbac struct {
	// ResourceID - The resource ID of the integration runtime to be shared.
	ResourceID *string `json:"resourceId,omitempty"`
	// AuthorizationType - Possible values include: 'AuthorizationTypeLinkedIntegrationRuntimeProperties', 'AuthorizationTypeRBAC', 'AuthorizationTypeKey'
	AuthorizationType AuthorizationType `json:"authorizationType,omitempty"`
}

LinkedIntegrationRuntimeRbac the base definition of a secret type.

func (LinkedIntegrationRuntimeRbac) AsBasicLinkedIntegrationRuntimeProperties

func (lirr LinkedIntegrationRuntimeRbac) AsBasicLinkedIntegrationRuntimeProperties() (BasicLinkedIntegrationRuntimeProperties, bool)

AsBasicLinkedIntegrationRuntimeProperties is the BasicLinkedIntegrationRuntimeProperties implementation for LinkedIntegrationRuntimeRbac.

func (LinkedIntegrationRuntimeRbac) AsLinkedIntegrationRuntimeKey

func (lirr LinkedIntegrationRuntimeRbac) AsLinkedIntegrationRuntimeKey() (*LinkedIntegrationRuntimeKey, bool)

AsLinkedIntegrationRuntimeKey is the BasicLinkedIntegrationRuntimeProperties implementation for LinkedIntegrationRuntimeRbac.

func (LinkedIntegrationRuntimeRbac) AsLinkedIntegrationRuntimeProperties

func (lirr LinkedIntegrationRuntimeRbac) AsLinkedIntegrationRuntimeProperties() (*LinkedIntegrationRuntimeProperties, bool)

AsLinkedIntegrationRuntimeProperties is the BasicLinkedIntegrationRuntimeProperties implementation for LinkedIntegrationRuntimeRbac.

func (LinkedIntegrationRuntimeRbac) AsLinkedIntegrationRuntimeRbac

func (lirr LinkedIntegrationRuntimeRbac) AsLinkedIntegrationRuntimeRbac() (*LinkedIntegrationRuntimeRbac, bool)

AsLinkedIntegrationRuntimeRbac is the BasicLinkedIntegrationRuntimeProperties implementation for LinkedIntegrationRuntimeRbac.

func (LinkedIntegrationRuntimeRbac) MarshalJSON

func (lirr LinkedIntegrationRuntimeRbac) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for LinkedIntegrationRuntimeRbac.

type LinkedIntegrationRuntimeTypeProperties

type LinkedIntegrationRuntimeTypeProperties struct {
	LinkedInfo BasicLinkedIntegrationRuntimeProperties `json:"linkedInfo,omitempty"`
}

LinkedIntegrationRuntimeTypeProperties the base definition of a secret type.

func (*LinkedIntegrationRuntimeTypeProperties) UnmarshalJSON

func (lirtp *LinkedIntegrationRuntimeTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for LinkedIntegrationRuntimeTypeProperties struct.

type LinkedService

type LinkedService struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

LinkedService the Azure Data Factory nested object which contains the information and credential which can be used to connect with related store or compute resource.

func (LinkedService) AsAmazonMWSLinkedService

func (ls LinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAmazonRedshiftLinkedService

func (ls LinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAmazonS3LinkedService

func (ls LinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAzureBatchLinkedService

func (ls LinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAzureDataLakeAnalyticsLinkedService

func (ls LinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAzureDataLakeStoreLinkedService

func (ls LinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAzureDatabricksLinkedService

func (ls LinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAzureKeyVaultLinkedService

func (ls LinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAzureMLLinkedService

func (ls LinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAzureMySQLLinkedService

func (ls LinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAzurePostgreSQLLinkedService

func (ls LinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAzureSQLDWLinkedService

func (ls LinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAzureSQLDatabaseLinkedService

func (ls LinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAzureSearchLinkedService

func (ls LinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsAzureStorageLinkedService

func (ls LinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsBasicLinkedService

func (ls LinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsCassandraLinkedService

func (ls LinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsConcurLinkedService

func (ls LinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsCosmosDbLinkedService

func (ls LinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsCouchbaseLinkedService

func (ls LinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsCustomDataSourceLinkedService

func (ls LinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsDb2LinkedService

func (ls LinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsDrillLinkedService

func (ls LinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsDynamicsLinkedService

func (ls LinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsEloquaLinkedService

func (ls LinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsFileServerLinkedService

func (ls LinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsFtpServerLinkedService

func (ls LinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsGoogleBigQueryLinkedService

func (ls LinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsGreenplumLinkedService

func (ls LinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsHBaseLinkedService

func (ls LinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsHDInsightLinkedService

func (ls LinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsHDInsightOnDemandLinkedService

func (ls LinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsHTTPLinkedService

func (ls LinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsHdfsLinkedService

func (ls LinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsHiveLinkedService

func (ls LinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsHubspotLinkedService

func (ls LinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsImpalaLinkedService

func (ls LinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsJiraLinkedService

func (ls LinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsLinkedService

func (ls LinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsMagentoLinkedService

func (ls LinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsMariaDBLinkedService

func (ls LinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsMarketoLinkedService

func (ls LinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsMongoDbLinkedService

func (ls LinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsMySQLLinkedService

func (ls LinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsNetezzaLinkedService

func (ls LinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsODataLinkedService

func (ls LinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsOdbcLinkedService

func (ls LinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsOracleLinkedService

func (ls LinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsPaypalLinkedService

func (ls LinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsPhoenixLinkedService

func (ls LinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsPostgreSQLLinkedService

func (ls LinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsPrestoLinkedService

func (ls LinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsQuickBooksLinkedService

func (ls LinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsResponsysLinkedService

func (ls LinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsSQLServerLinkedService

func (ls LinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsSalesforceLinkedService

func (ls LinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsSalesforceMarketingCloudLinkedService

func (ls LinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsSapBWLinkedService

func (ls LinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsSapCloudForCustomerLinkedService

func (ls LinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsSapEccLinkedService

func (ls LinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsSapHanaLinkedService

func (ls LinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsServiceNowLinkedService

func (ls LinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsSftpServerLinkedService

func (ls LinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsShopifyLinkedService

func (ls LinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsSparkLinkedService

func (ls LinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsSquareLinkedService

func (ls LinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsSybaseLinkedService

func (ls LinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsTeradataLinkedService

func (ls LinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsVerticaLinkedService

func (ls LinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsWebLinkedService

func (ls LinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsXeroLinkedService

func (ls LinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) AsZohoLinkedService

func (ls LinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for LinkedService.

func (LinkedService) MarshalJSON

func (ls LinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for LinkedService.

type LinkedServiceListResponse

type LinkedServiceListResponse struct {
	autorest.Response `json:"-"`
	// Value - List of linked services.
	Value *[]LinkedServiceResource `json:"value,omitempty"`
	// NextLink - The link to the next page of results, if any remaining results exist.
	NextLink *string `json:"nextLink,omitempty"`
}

LinkedServiceListResponse a list of linked service resources.

func (LinkedServiceListResponse) IsEmpty

func (lslr LinkedServiceListResponse) IsEmpty() bool

IsEmpty returns true if the ListResult contains no values.

type LinkedServiceListResponseIterator

type LinkedServiceListResponseIterator struct {
	// contains filtered or unexported fields
}

LinkedServiceListResponseIterator provides access to a complete listing of LinkedServiceResource values.

func (*LinkedServiceListResponseIterator) Next

Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.

func (LinkedServiceListResponseIterator) NotDone

func (iter LinkedServiceListResponseIterator) NotDone() bool

NotDone returns true if the enumeration should be started or is not yet complete.

func (LinkedServiceListResponseIterator) Response

Response returns the raw server response from the last page request.

func (LinkedServiceListResponseIterator) Value

Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.

type LinkedServiceListResponsePage

type LinkedServiceListResponsePage struct {
	// contains filtered or unexported fields
}

LinkedServiceListResponsePage contains a page of LinkedServiceResource values.

func (*LinkedServiceListResponsePage) Next

func (page *LinkedServiceListResponsePage) Next() error

Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.

func (LinkedServiceListResponsePage) NotDone

func (page LinkedServiceListResponsePage) NotDone() bool

NotDone returns true if the page enumeration should be started or is not yet complete.

func (LinkedServiceListResponsePage) Response

Response returns the raw server response from the last page request.

func (LinkedServiceListResponsePage) Values

Values returns the slice of values for the current page or nil if there are no values.

type LinkedServiceReference

type LinkedServiceReference struct {
	// Type - Linked service reference type.
	Type *string `json:"type,omitempty"`
	// ReferenceName - Reference LinkedService name.
	ReferenceName *string `json:"referenceName,omitempty"`
	// Parameters - Arguments for LinkedService.
	Parameters map[string]interface{} `json:"parameters"`
}

LinkedServiceReference linked service reference type.

func (LinkedServiceReference) MarshalJSON

func (lsr LinkedServiceReference) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for LinkedServiceReference.

type LinkedServiceResource

type LinkedServiceResource struct {
	autorest.Response `json:"-"`
	// Properties - Properties of linked service.
	Properties BasicLinkedService `json:"properties,omitempty"`
	// ID - The resource identifier.
	ID *string `json:"id,omitempty"`
	// Name - The resource name.
	Name *string `json:"name,omitempty"`
	// Type - The resource type.
	Type *string `json:"type,omitempty"`
	// Etag - Etag identifies change in the resource.
	Etag *string `json:"etag,omitempty"`
}

LinkedServiceResource linked service resource type.

func (*LinkedServiceResource) UnmarshalJSON

func (lsr *LinkedServiceResource) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for LinkedServiceResource struct.

type LinkedServicesClient

type LinkedServicesClient struct {
	BaseClient
}

LinkedServicesClient is the the Azure Data Factory V2 management API provides a RESTful set of web services that interact with Azure Data Factory V2 services.

func NewLinkedServicesClient

func NewLinkedServicesClient(subscriptionID string) LinkedServicesClient

NewLinkedServicesClient creates an instance of the LinkedServicesClient client.

func NewLinkedServicesClientWithBaseURI

func NewLinkedServicesClientWithBaseURI(baseURI string, subscriptionID string) LinkedServicesClient

NewLinkedServicesClientWithBaseURI creates an instance of the LinkedServicesClient client.

func (LinkedServicesClient) CreateOrUpdate

func (client LinkedServicesClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, factoryName string, linkedServiceName string, linkedService LinkedServiceResource, ifMatch string) (result LinkedServiceResource, err error)

CreateOrUpdate creates or updates a linked service. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. linkedServiceName - the linked service name. linkedService - linked service resource definition. ifMatch - eTag of the linkedService entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update.

func (LinkedServicesClient) CreateOrUpdatePreparer

func (client LinkedServicesClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, factoryName string, linkedServiceName string, linkedService LinkedServiceResource, ifMatch string) (*http.Request, error)

CreateOrUpdatePreparer prepares the CreateOrUpdate request.

func (LinkedServicesClient) CreateOrUpdateResponder

func (client LinkedServicesClient) CreateOrUpdateResponder(resp *http.Response) (result LinkedServiceResource, err error)

CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always closes the http.Response Body.

func (LinkedServicesClient) CreateOrUpdateSender

func (client LinkedServicesClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error)

CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the http.Response Body if it receives an error.

func (LinkedServicesClient) Delete

func (client LinkedServicesClient) Delete(ctx context.Context, resourceGroupName string, factoryName string, linkedServiceName string) (result autorest.Response, err error)

Delete deletes a linked service. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. linkedServiceName - the linked service name.

func (LinkedServicesClient) DeletePreparer

func (client LinkedServicesClient) DeletePreparer(ctx context.Context, resourceGroupName string, factoryName string, linkedServiceName string) (*http.Request, error)

DeletePreparer prepares the Delete request.

func (LinkedServicesClient) DeleteResponder

func (client LinkedServicesClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)

DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.

func (LinkedServicesClient) DeleteSender

func (client LinkedServicesClient) DeleteSender(req *http.Request) (*http.Response, error)

DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.

func (LinkedServicesClient) Get

func (client LinkedServicesClient) Get(ctx context.Context, resourceGroupName string, factoryName string, linkedServiceName string) (result LinkedServiceResource, err error)

Get gets a linked service. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. linkedServiceName - the linked service name.

func (LinkedServicesClient) GetPreparer

func (client LinkedServicesClient) GetPreparer(ctx context.Context, resourceGroupName string, factoryName string, linkedServiceName string) (*http.Request, error)

GetPreparer prepares the Get request.

func (LinkedServicesClient) GetResponder

func (client LinkedServicesClient) GetResponder(resp *http.Response) (result LinkedServiceResource, err error)

GetResponder handles the response to the Get request. The method always closes the http.Response Body.

func (LinkedServicesClient) GetSender

func (client LinkedServicesClient) GetSender(req *http.Request) (*http.Response, error)

GetSender sends the Get request. The method will close the http.Response Body if it receives an error.

func (LinkedServicesClient) ListByFactory

func (client LinkedServicesClient) ListByFactory(ctx context.Context, resourceGroupName string, factoryName string) (result LinkedServiceListResponsePage, err error)

ListByFactory lists linked services. Parameters: resourceGroupName - the resource group name. factoryName - the factory name.

func (LinkedServicesClient) ListByFactoryComplete

func (client LinkedServicesClient) ListByFactoryComplete(ctx context.Context, resourceGroupName string, factoryName string) (result LinkedServiceListResponseIterator, err error)

ListByFactoryComplete enumerates all values, automatically crossing page boundaries as required.

func (LinkedServicesClient) ListByFactoryPreparer

func (client LinkedServicesClient) ListByFactoryPreparer(ctx context.Context, resourceGroupName string, factoryName string) (*http.Request, error)

ListByFactoryPreparer prepares the ListByFactory request.

func (LinkedServicesClient) ListByFactoryResponder

func (client LinkedServicesClient) ListByFactoryResponder(resp *http.Response) (result LinkedServiceListResponse, err error)

ListByFactoryResponder handles the response to the ListByFactory request. The method always closes the http.Response Body.

func (LinkedServicesClient) ListByFactorySender

func (client LinkedServicesClient) ListByFactorySender(req *http.Request) (*http.Response, error)

ListByFactorySender sends the ListByFactory request. The method will close the http.Response Body if it receives an error.

type LookupActivity

type LookupActivity struct {
	// LookupActivityTypeProperties - Lookup activity properties.
	*LookupActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

LookupActivity lookup activity.

func (LookupActivity) AsActivity

func (la LookupActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsAzureMLBatchExecutionActivity

func (la LookupActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsAzureMLUpdateResourceActivity

func (la LookupActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsBasicActivity

func (la LookupActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsBasicControlActivity

func (la LookupActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsBasicExecutionActivity

func (la LookupActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsControlActivity

func (la LookupActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsCopyActivity

func (la LookupActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsCustomActivity

func (la LookupActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsDataLakeAnalyticsUSQLActivity

func (la LookupActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsDatabricksNotebookActivity

func (la LookupActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsExecutePipelineActivity

func (la LookupActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsExecuteSSISPackageActivity

func (la LookupActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsExecutionActivity

func (la LookupActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsFilterActivity

func (la LookupActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsForEachActivity

func (la LookupActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsGetMetadataActivity

func (la LookupActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsHDInsightHiveActivity

func (la LookupActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsHDInsightMapReduceActivity

func (la LookupActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsHDInsightPigActivity

func (la LookupActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsHDInsightSparkActivity

func (la LookupActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsHDInsightStreamingActivity

func (la LookupActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsIfConditionActivity

func (la LookupActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsLookupActivity

func (la LookupActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsSQLServerStoredProcedureActivity

func (la LookupActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsUntilActivity

func (la LookupActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsWaitActivity

func (la LookupActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) AsWebActivity

func (la LookupActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for LookupActivity.

func (LookupActivity) MarshalJSON

func (la LookupActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for LookupActivity.

func (*LookupActivity) UnmarshalJSON

func (la *LookupActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for LookupActivity struct.

type LookupActivityTypeProperties

type LookupActivityTypeProperties struct {
	// Source - Dataset-specific source properties, same as copy activity source.
	Source BasicCopySource `json:"source,omitempty"`
	// Dataset - Lookup activity dataset reference.
	Dataset *DatasetReference `json:"dataset,omitempty"`
	// FirstRowOnly - Whether to return first row or all rows. Default value is true. Type: boolean (or Expression with resultType boolean).
	FirstRowOnly interface{} `json:"firstRowOnly,omitempty"`
}

LookupActivityTypeProperties lookup activity properties.

func (*LookupActivityTypeProperties) UnmarshalJSON

func (latp *LookupActivityTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for LookupActivityTypeProperties struct.

type MagentoLinkedService

type MagentoLinkedService struct {
	// MagentoLinkedServiceTypeProperties - Magento server linked service properties.
	*MagentoLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

MagentoLinkedService magento server linked service.

func (MagentoLinkedService) AsAmazonMWSLinkedService

func (mls MagentoLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAmazonRedshiftLinkedService

func (mls MagentoLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAmazonS3LinkedService

func (mls MagentoLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAzureBatchLinkedService

func (mls MagentoLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (mls MagentoLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAzureDataLakeStoreLinkedService

func (mls MagentoLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAzureDatabricksLinkedService

func (mls MagentoLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAzureKeyVaultLinkedService

func (mls MagentoLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAzureMLLinkedService

func (mls MagentoLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAzureMySQLLinkedService

func (mls MagentoLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAzurePostgreSQLLinkedService

func (mls MagentoLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAzureSQLDWLinkedService

func (mls MagentoLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAzureSQLDatabaseLinkedService

func (mls MagentoLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAzureSearchLinkedService

func (mls MagentoLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsAzureStorageLinkedService

func (mls MagentoLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsBasicLinkedService

func (mls MagentoLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsCassandraLinkedService

func (mls MagentoLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsConcurLinkedService

func (mls MagentoLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsCosmosDbLinkedService

func (mls MagentoLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsCouchbaseLinkedService

func (mls MagentoLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsCustomDataSourceLinkedService

func (mls MagentoLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsDb2LinkedService

func (mls MagentoLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsDrillLinkedService

func (mls MagentoLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsDynamicsLinkedService

func (mls MagentoLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsEloquaLinkedService

func (mls MagentoLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsFileServerLinkedService

func (mls MagentoLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsFtpServerLinkedService

func (mls MagentoLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsGoogleBigQueryLinkedService

func (mls MagentoLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsGreenplumLinkedService

func (mls MagentoLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsHBaseLinkedService

func (mls MagentoLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsHDInsightLinkedService

func (mls MagentoLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsHDInsightOnDemandLinkedService

func (mls MagentoLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsHTTPLinkedService

func (mls MagentoLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsHdfsLinkedService

func (mls MagentoLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsHiveLinkedService

func (mls MagentoLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsHubspotLinkedService

func (mls MagentoLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsImpalaLinkedService

func (mls MagentoLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsJiraLinkedService

func (mls MagentoLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsLinkedService

func (mls MagentoLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsMagentoLinkedService

func (mls MagentoLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsMariaDBLinkedService

func (mls MagentoLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsMarketoLinkedService

func (mls MagentoLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsMongoDbLinkedService

func (mls MagentoLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsMySQLLinkedService

func (mls MagentoLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsNetezzaLinkedService

func (mls MagentoLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsODataLinkedService

func (mls MagentoLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsOdbcLinkedService

func (mls MagentoLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsOracleLinkedService

func (mls MagentoLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsPaypalLinkedService

func (mls MagentoLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsPhoenixLinkedService

func (mls MagentoLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsPostgreSQLLinkedService

func (mls MagentoLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsPrestoLinkedService

func (mls MagentoLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsQuickBooksLinkedService

func (mls MagentoLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsResponsysLinkedService

func (mls MagentoLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsSQLServerLinkedService

func (mls MagentoLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsSalesforceLinkedService

func (mls MagentoLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsSalesforceMarketingCloudLinkedService

func (mls MagentoLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsSapBWLinkedService

func (mls MagentoLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsSapCloudForCustomerLinkedService

func (mls MagentoLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsSapEccLinkedService

func (mls MagentoLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsSapHanaLinkedService

func (mls MagentoLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsServiceNowLinkedService

func (mls MagentoLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsSftpServerLinkedService

func (mls MagentoLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsShopifyLinkedService

func (mls MagentoLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsSparkLinkedService

func (mls MagentoLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsSquareLinkedService

func (mls MagentoLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsSybaseLinkedService

func (mls MagentoLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsTeradataLinkedService

func (mls MagentoLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsVerticaLinkedService

func (mls MagentoLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsWebLinkedService

func (mls MagentoLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsXeroLinkedService

func (mls MagentoLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) AsZohoLinkedService

func (mls MagentoLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for MagentoLinkedService.

func (MagentoLinkedService) MarshalJSON

func (mls MagentoLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MagentoLinkedService.

func (*MagentoLinkedService) UnmarshalJSON

func (mls *MagentoLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for MagentoLinkedService struct.

type MagentoLinkedServiceTypeProperties

type MagentoLinkedServiceTypeProperties struct {
	// Host - The URL of the Magento instance. (i.e. 192.168.222.110/magento3)
	Host interface{} `json:"host,omitempty"`
	// AccessToken - The access token from Magento.
	AccessToken BasicSecretBase `json:"accessToken,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

MagentoLinkedServiceTypeProperties magento server linked service properties.

func (*MagentoLinkedServiceTypeProperties) UnmarshalJSON

func (mlstp *MagentoLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for MagentoLinkedServiceTypeProperties struct.

type MagentoObjectDataset

type MagentoObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

MagentoObjectDataset magento server dataset.

func (MagentoObjectDataset) AsAmazonMWSObjectDataset

func (mod MagentoObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsAmazonS3Dataset

func (mod MagentoObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsAzureBlobDataset

func (mod MagentoObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsAzureDataLakeStoreDataset

func (mod MagentoObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsAzureMySQLTableDataset

func (mod MagentoObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsAzurePostgreSQLTableDataset

func (mod MagentoObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsAzureSQLDWTableDataset

func (mod MagentoObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsAzureSQLTableDataset

func (mod MagentoObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsAzureSearchIndexDataset

func (mod MagentoObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsAzureTableDataset

func (mod MagentoObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsBasicDataset

func (mod MagentoObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsCassandraTableDataset

func (mod MagentoObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsConcurObjectDataset

func (mod MagentoObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsCouchbaseTableDataset

func (mod MagentoObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsCustomDataset

func (mod MagentoObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsDataset

func (mod MagentoObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsDocumentDbCollectionDataset

func (mod MagentoObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsDrillTableDataset

func (mod MagentoObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsDynamicsEntityDataset

func (mod MagentoObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsEloquaObjectDataset

func (mod MagentoObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsFileShareDataset

func (mod MagentoObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsGoogleBigQueryObjectDataset

func (mod MagentoObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsGreenplumTableDataset

func (mod MagentoObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsHBaseObjectDataset

func (mod MagentoObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsHTTPDataset

func (mod MagentoObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsHiveObjectDataset

func (mod MagentoObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsHubspotObjectDataset

func (mod MagentoObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsImpalaObjectDataset

func (mod MagentoObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsJiraObjectDataset

func (mod MagentoObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsMagentoObjectDataset

func (mod MagentoObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsMariaDBTableDataset

func (mod MagentoObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsMarketoObjectDataset

func (mod MagentoObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsMongoDbCollectionDataset

func (mod MagentoObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsNetezzaTableDataset

func (mod MagentoObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsODataResourceDataset

func (mod MagentoObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsOracleTableDataset

func (mod MagentoObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsPaypalObjectDataset

func (mod MagentoObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsPhoenixObjectDataset

func (mod MagentoObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsPrestoObjectDataset

func (mod MagentoObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsQuickBooksObjectDataset

func (mod MagentoObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsRelationalTableDataset

func (mod MagentoObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsResponsysObjectDataset

func (mod MagentoObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsSQLServerTableDataset

func (mod MagentoObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (mod MagentoObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsSalesforceObjectDataset

func (mod MagentoObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsSapCloudForCustomerResourceDataset

func (mod MagentoObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsSapEccResourceDataset

func (mod MagentoObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsServiceNowObjectDataset

func (mod MagentoObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsShopifyObjectDataset

func (mod MagentoObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsSparkObjectDataset

func (mod MagentoObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsSquareObjectDataset

func (mod MagentoObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsVerticaTableDataset

func (mod MagentoObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsWebTableDataset

func (mod MagentoObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsXeroObjectDataset

func (mod MagentoObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) AsZohoObjectDataset

func (mod MagentoObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for MagentoObjectDataset.

func (MagentoObjectDataset) MarshalJSON

func (mod MagentoObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MagentoObjectDataset.

type MagentoSource

type MagentoSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

MagentoSource a copy activity Magento server source.

func (MagentoSource) AsAmazonMWSSource

func (ms MagentoSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsAmazonRedshiftSource

func (ms MagentoSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsAzureDataLakeStoreSource

func (ms MagentoSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsAzureMySQLSource

func (ms MagentoSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsAzurePostgreSQLSource

func (ms MagentoSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsAzureTableSource

func (ms MagentoSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsBasicCopySource

func (ms MagentoSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsBlobSource

func (ms MagentoSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsCassandraSource

func (ms MagentoSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsConcurSource

func (ms MagentoSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsCopySource

func (ms MagentoSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsCouchbaseSource

func (ms MagentoSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsDocumentDbCollectionSource

func (ms MagentoSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsDrillSource

func (ms MagentoSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsDynamicsSource

func (ms MagentoSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsEloquaSource

func (ms MagentoSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsFileSystemSource

func (ms MagentoSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsGoogleBigQuerySource

func (ms MagentoSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsGreenplumSource

func (ms MagentoSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsHBaseSource

func (ms MagentoSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsHTTPSource

func (ms MagentoSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsHdfsSource

func (ms MagentoSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsHiveSource

func (ms MagentoSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsHubspotSource

func (ms MagentoSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsImpalaSource

func (ms MagentoSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsJiraSource

func (ms MagentoSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsMagentoSource

func (ms MagentoSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsMariaDBSource

func (ms MagentoSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsMarketoSource

func (ms MagentoSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsMongoDbSource

func (ms MagentoSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsNetezzaSource

func (ms MagentoSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsOracleSource

func (ms MagentoSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsPaypalSource

func (ms MagentoSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsPhoenixSource

func (ms MagentoSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsPrestoSource

func (ms MagentoSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsQuickBooksSource

func (ms MagentoSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsRelationalSource

func (ms MagentoSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsResponsysSource

func (ms MagentoSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsSQLDWSource

func (ms MagentoSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsSQLSource

func (ms MagentoSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsSalesforceMarketingCloudSource

func (ms MagentoSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsSalesforceSource

func (ms MagentoSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsSapCloudForCustomerSource

func (ms MagentoSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsSapEccSource

func (ms MagentoSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsServiceNowSource

func (ms MagentoSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsShopifySource

func (ms MagentoSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsSparkSource

func (ms MagentoSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsSquareSource

func (ms MagentoSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsVerticaSource

func (ms MagentoSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsWebSource

func (ms MagentoSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsXeroSource

func (ms MagentoSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) AsZohoSource

func (ms MagentoSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for MagentoSource.

func (MagentoSource) MarshalJSON

func (ms MagentoSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MagentoSource.

type ManagedIntegrationRuntime

type ManagedIntegrationRuntime struct {
	// State - Integration runtime state, only valid for managed dedicated integration runtime. Possible values include: 'Initial', 'Stopped', 'Started', 'Starting', 'Stopping', 'NeedRegistration', 'Online', 'Limited', 'Offline'
	State IntegrationRuntimeState `json:"state,omitempty"`
	// ManagedIntegrationRuntimeTypeProperties - Managed integration runtime properties.
	*ManagedIntegrationRuntimeTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Integration runtime description.
	Description *string `json:"description,omitempty"`
	// Type - Possible values include: 'TypeIntegrationRuntime', 'TypeSelfHosted', 'TypeManaged'
	Type TypeBasicIntegrationRuntime `json:"type,omitempty"`
}

ManagedIntegrationRuntime managed integration runtime, including managed elastic and managed dedicated integration runtimes.

func (ManagedIntegrationRuntime) AsBasicIntegrationRuntime

func (mir ManagedIntegrationRuntime) AsBasicIntegrationRuntime() (BasicIntegrationRuntime, bool)

AsBasicIntegrationRuntime is the BasicIntegrationRuntime implementation for ManagedIntegrationRuntime.

func (ManagedIntegrationRuntime) AsIntegrationRuntime

func (mir ManagedIntegrationRuntime) AsIntegrationRuntime() (*IntegrationRuntime, bool)

AsIntegrationRuntime is the BasicIntegrationRuntime implementation for ManagedIntegrationRuntime.

func (ManagedIntegrationRuntime) AsManagedIntegrationRuntime

func (mir ManagedIntegrationRuntime) AsManagedIntegrationRuntime() (*ManagedIntegrationRuntime, bool)

AsManagedIntegrationRuntime is the BasicIntegrationRuntime implementation for ManagedIntegrationRuntime.

func (ManagedIntegrationRuntime) AsSelfHostedIntegrationRuntime

func (mir ManagedIntegrationRuntime) AsSelfHostedIntegrationRuntime() (*SelfHostedIntegrationRuntime, bool)

AsSelfHostedIntegrationRuntime is the BasicIntegrationRuntime implementation for ManagedIntegrationRuntime.

func (ManagedIntegrationRuntime) MarshalJSON

func (mir ManagedIntegrationRuntime) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ManagedIntegrationRuntime.

func (*ManagedIntegrationRuntime) UnmarshalJSON

func (mir *ManagedIntegrationRuntime) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ManagedIntegrationRuntime struct.

type ManagedIntegrationRuntimeError

type ManagedIntegrationRuntimeError struct {
	// Time - The time when the error occurred.
	Time *date.Time `json:"time,omitempty"`
	// Code - Error code.
	Code *string `json:"code,omitempty"`
	// Parameters - Managed integration runtime error parameters.
	Parameters *[]string `json:"parameters,omitempty"`
	// Message - Error message.
	Message *string `json:"message,omitempty"`
}

ManagedIntegrationRuntimeError error definition for managed integration runtime.

type ManagedIntegrationRuntimeNode

type ManagedIntegrationRuntimeNode struct {
	// NodeID - The managed integration runtime node id.
	NodeID *string `json:"nodeId,omitempty"`
	// Status - The managed integration runtime node status. Possible values include: 'ManagedIntegrationRuntimeNodeStatusStarting', 'ManagedIntegrationRuntimeNodeStatusAvailable', 'ManagedIntegrationRuntimeNodeStatusRecycling', 'ManagedIntegrationRuntimeNodeStatusUnavailable'
	Status ManagedIntegrationRuntimeNodeStatus `json:"status,omitempty"`
	// Errors - The errors that occurred on this integration runtime node.
	Errors *[]ManagedIntegrationRuntimeError `json:"errors,omitempty"`
}

ManagedIntegrationRuntimeNode properties of integration runtime node.

type ManagedIntegrationRuntimeNodeStatus

type ManagedIntegrationRuntimeNodeStatus string

ManagedIntegrationRuntimeNodeStatus enumerates the values for managed integration runtime node status.

const (
	// ManagedIntegrationRuntimeNodeStatusAvailable ...
	ManagedIntegrationRuntimeNodeStatusAvailable ManagedIntegrationRuntimeNodeStatus = "Available"
	// ManagedIntegrationRuntimeNodeStatusRecycling ...
	ManagedIntegrationRuntimeNodeStatusRecycling ManagedIntegrationRuntimeNodeStatus = "Recycling"
	// ManagedIntegrationRuntimeNodeStatusStarting ...
	ManagedIntegrationRuntimeNodeStatusStarting ManagedIntegrationRuntimeNodeStatus = "Starting"
	// ManagedIntegrationRuntimeNodeStatusUnavailable ...
	ManagedIntegrationRuntimeNodeStatusUnavailable ManagedIntegrationRuntimeNodeStatus = "Unavailable"
)

func PossibleManagedIntegrationRuntimeNodeStatusValues

func PossibleManagedIntegrationRuntimeNodeStatusValues() []ManagedIntegrationRuntimeNodeStatus

PossibleManagedIntegrationRuntimeNodeStatusValues returns an array of possible values for the ManagedIntegrationRuntimeNodeStatus const type.

type ManagedIntegrationRuntimeOperationResult

type ManagedIntegrationRuntimeOperationResult struct {
	// Type - The operation type. Could be start or stop.
	Type *string `json:"type,omitempty"`
	// StartTime - The start time of the operation.
	StartTime *date.Time `json:"startTime,omitempty"`
	// Result - The operation result.
	Result *string `json:"result,omitempty"`
	// ErrorCode - The error code.
	ErrorCode *string `json:"errorCode,omitempty"`
	// Parameters - Managed integration runtime error parameters.
	Parameters *[]string `json:"parameters,omitempty"`
	// ActivityID - The activity id for the operation request.
	ActivityID *string `json:"activityId,omitempty"`
}

ManagedIntegrationRuntimeOperationResult properties of managed integration runtime operation result.

type ManagedIntegrationRuntimeStatus

type ManagedIntegrationRuntimeStatus struct {
	// ManagedIntegrationRuntimeStatusTypeProperties - Managed integration runtime status type properties.
	*ManagedIntegrationRuntimeStatusTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// DataFactoryName - The data factory name which the integration runtime belong to.
	DataFactoryName *string `json:"dataFactoryName,omitempty"`
	// State - The state of integration runtime. Possible values include: 'Initial', 'Stopped', 'Started', 'Starting', 'Stopping', 'NeedRegistration', 'Online', 'Limited', 'Offline'
	State IntegrationRuntimeState `json:"state,omitempty"`
	// Type - Possible values include: 'TypeBasicIntegrationRuntimeStatusTypeIntegrationRuntimeStatus', 'TypeBasicIntegrationRuntimeStatusTypeSelfHosted', 'TypeBasicIntegrationRuntimeStatusTypeManaged'
	Type TypeBasicIntegrationRuntimeStatus `json:"type,omitempty"`
}

ManagedIntegrationRuntimeStatus managed integration runtime status.

func (ManagedIntegrationRuntimeStatus) AsBasicIntegrationRuntimeStatus

func (mirs ManagedIntegrationRuntimeStatus) AsBasicIntegrationRuntimeStatus() (BasicIntegrationRuntimeStatus, bool)

AsBasicIntegrationRuntimeStatus is the BasicIntegrationRuntimeStatus implementation for ManagedIntegrationRuntimeStatus.

func (ManagedIntegrationRuntimeStatus) AsIntegrationRuntimeStatus

func (mirs ManagedIntegrationRuntimeStatus) AsIntegrationRuntimeStatus() (*IntegrationRuntimeStatus, bool)

AsIntegrationRuntimeStatus is the BasicIntegrationRuntimeStatus implementation for ManagedIntegrationRuntimeStatus.

func (ManagedIntegrationRuntimeStatus) AsManagedIntegrationRuntimeStatus

func (mirs ManagedIntegrationRuntimeStatus) AsManagedIntegrationRuntimeStatus() (*ManagedIntegrationRuntimeStatus, bool)

AsManagedIntegrationRuntimeStatus is the BasicIntegrationRuntimeStatus implementation for ManagedIntegrationRuntimeStatus.

func (ManagedIntegrationRuntimeStatus) AsSelfHostedIntegrationRuntimeStatus

func (mirs ManagedIntegrationRuntimeStatus) AsSelfHostedIntegrationRuntimeStatus() (*SelfHostedIntegrationRuntimeStatus, bool)

AsSelfHostedIntegrationRuntimeStatus is the BasicIntegrationRuntimeStatus implementation for ManagedIntegrationRuntimeStatus.

func (ManagedIntegrationRuntimeStatus) MarshalJSON

func (mirs ManagedIntegrationRuntimeStatus) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ManagedIntegrationRuntimeStatus.

func (*ManagedIntegrationRuntimeStatus) UnmarshalJSON

func (mirs *ManagedIntegrationRuntimeStatus) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ManagedIntegrationRuntimeStatus struct.

type ManagedIntegrationRuntimeStatusTypeProperties

type ManagedIntegrationRuntimeStatusTypeProperties struct {
	// CreateTime - The time at which the integration runtime was created, in ISO8601 format.
	CreateTime *date.Time `json:"createTime,omitempty"`
	// Nodes - The list of nodes for managed integration runtime.
	Nodes *[]ManagedIntegrationRuntimeNode `json:"nodes,omitempty"`
	// OtherErrors - The errors that occurred on this integration runtime.
	OtherErrors *[]ManagedIntegrationRuntimeError `json:"otherErrors,omitempty"`
	// LastOperation - The last operation result that occurred on this integration runtime.
	LastOperation *ManagedIntegrationRuntimeOperationResult `json:"lastOperation,omitempty"`
}

ManagedIntegrationRuntimeStatusTypeProperties managed integration runtime status type properties.

type ManagedIntegrationRuntimeTypeProperties

type ManagedIntegrationRuntimeTypeProperties struct {
	// ComputeProperties - The compute resource for managed integration runtime.
	ComputeProperties *IntegrationRuntimeComputeProperties `json:"computeProperties,omitempty"`
	// SsisProperties - SSIS properties for managed integration runtime.
	SsisProperties *IntegrationRuntimeSsisProperties `json:"ssisProperties,omitempty"`
}

ManagedIntegrationRuntimeTypeProperties managed integration runtime type properties.

type MariaDBLinkedService

type MariaDBLinkedService struct {
	// MariaDBLinkedServiceTypeProperties - MariaDB server linked service properties.
	*MariaDBLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

MariaDBLinkedService mariaDB server linked service.

func (MariaDBLinkedService) AsAmazonMWSLinkedService

func (mdls MariaDBLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAmazonRedshiftLinkedService

func (mdls MariaDBLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAmazonS3LinkedService

func (mdls MariaDBLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAzureBatchLinkedService

func (mdls MariaDBLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (mdls MariaDBLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAzureDataLakeStoreLinkedService

func (mdls MariaDBLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAzureDatabricksLinkedService

func (mdls MariaDBLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAzureKeyVaultLinkedService

func (mdls MariaDBLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAzureMLLinkedService

func (mdls MariaDBLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAzureMySQLLinkedService

func (mdls MariaDBLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAzurePostgreSQLLinkedService

func (mdls MariaDBLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAzureSQLDWLinkedService

func (mdls MariaDBLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAzureSQLDatabaseLinkedService

func (mdls MariaDBLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAzureSearchLinkedService

func (mdls MariaDBLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsAzureStorageLinkedService

func (mdls MariaDBLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsBasicLinkedService

func (mdls MariaDBLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsCassandraLinkedService

func (mdls MariaDBLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsConcurLinkedService

func (mdls MariaDBLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsCosmosDbLinkedService

func (mdls MariaDBLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsCouchbaseLinkedService

func (mdls MariaDBLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsCustomDataSourceLinkedService

func (mdls MariaDBLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsDb2LinkedService

func (mdls MariaDBLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsDrillLinkedService

func (mdls MariaDBLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsDynamicsLinkedService

func (mdls MariaDBLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsEloquaLinkedService

func (mdls MariaDBLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsFileServerLinkedService

func (mdls MariaDBLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsFtpServerLinkedService

func (mdls MariaDBLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsGoogleBigQueryLinkedService

func (mdls MariaDBLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsGreenplumLinkedService

func (mdls MariaDBLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsHBaseLinkedService

func (mdls MariaDBLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsHDInsightLinkedService

func (mdls MariaDBLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsHDInsightOnDemandLinkedService

func (mdls MariaDBLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsHTTPLinkedService

func (mdls MariaDBLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsHdfsLinkedService

func (mdls MariaDBLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsHiveLinkedService

func (mdls MariaDBLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsHubspotLinkedService

func (mdls MariaDBLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsImpalaLinkedService

func (mdls MariaDBLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsJiraLinkedService

func (mdls MariaDBLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsLinkedService

func (mdls MariaDBLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsMagentoLinkedService

func (mdls MariaDBLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsMariaDBLinkedService

func (mdls MariaDBLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsMarketoLinkedService

func (mdls MariaDBLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsMongoDbLinkedService

func (mdls MariaDBLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsMySQLLinkedService

func (mdls MariaDBLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsNetezzaLinkedService

func (mdls MariaDBLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsODataLinkedService

func (mdls MariaDBLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsOdbcLinkedService

func (mdls MariaDBLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsOracleLinkedService

func (mdls MariaDBLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsPaypalLinkedService

func (mdls MariaDBLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsPhoenixLinkedService

func (mdls MariaDBLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsPostgreSQLLinkedService

func (mdls MariaDBLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsPrestoLinkedService

func (mdls MariaDBLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsQuickBooksLinkedService

func (mdls MariaDBLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsResponsysLinkedService

func (mdls MariaDBLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsSQLServerLinkedService

func (mdls MariaDBLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsSalesforceLinkedService

func (mdls MariaDBLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsSalesforceMarketingCloudLinkedService

func (mdls MariaDBLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsSapBWLinkedService

func (mdls MariaDBLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsSapCloudForCustomerLinkedService

func (mdls MariaDBLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsSapEccLinkedService

func (mdls MariaDBLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsSapHanaLinkedService

func (mdls MariaDBLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsServiceNowLinkedService

func (mdls MariaDBLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsSftpServerLinkedService

func (mdls MariaDBLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsShopifyLinkedService

func (mdls MariaDBLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsSparkLinkedService

func (mdls MariaDBLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsSquareLinkedService

func (mdls MariaDBLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsSybaseLinkedService

func (mdls MariaDBLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsTeradataLinkedService

func (mdls MariaDBLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsVerticaLinkedService

func (mdls MariaDBLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsWebLinkedService

func (mdls MariaDBLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsXeroLinkedService

func (mdls MariaDBLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) AsZohoLinkedService

func (mdls MariaDBLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for MariaDBLinkedService.

func (MariaDBLinkedService) MarshalJSON

func (mdls MariaDBLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MariaDBLinkedService.

func (*MariaDBLinkedService) UnmarshalJSON

func (mdls *MariaDBLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for MariaDBLinkedService struct.

type MariaDBLinkedServiceTypeProperties

type MariaDBLinkedServiceTypeProperties struct {
	// ConnectionString - An ODBC connection string.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

MariaDBLinkedServiceTypeProperties mariaDB server linked service properties.

func (*MariaDBLinkedServiceTypeProperties) UnmarshalJSON

func (mdlstp *MariaDBLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for MariaDBLinkedServiceTypeProperties struct.

type MariaDBSource

type MariaDBSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

MariaDBSource a copy activity MariaDB server source.

func (MariaDBSource) AsAmazonMWSSource

func (mds MariaDBSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsAmazonRedshiftSource

func (mds MariaDBSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsAzureDataLakeStoreSource

func (mds MariaDBSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsAzureMySQLSource

func (mds MariaDBSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsAzurePostgreSQLSource

func (mds MariaDBSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsAzureTableSource

func (mds MariaDBSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsBasicCopySource

func (mds MariaDBSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsBlobSource

func (mds MariaDBSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsCassandraSource

func (mds MariaDBSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsConcurSource

func (mds MariaDBSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsCopySource

func (mds MariaDBSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsCouchbaseSource

func (mds MariaDBSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsDocumentDbCollectionSource

func (mds MariaDBSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsDrillSource

func (mds MariaDBSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsDynamicsSource

func (mds MariaDBSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsEloquaSource

func (mds MariaDBSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsFileSystemSource

func (mds MariaDBSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsGoogleBigQuerySource

func (mds MariaDBSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsGreenplumSource

func (mds MariaDBSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsHBaseSource

func (mds MariaDBSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsHTTPSource

func (mds MariaDBSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsHdfsSource

func (mds MariaDBSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsHiveSource

func (mds MariaDBSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsHubspotSource

func (mds MariaDBSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsImpalaSource

func (mds MariaDBSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsJiraSource

func (mds MariaDBSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsMagentoSource

func (mds MariaDBSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsMariaDBSource

func (mds MariaDBSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsMarketoSource

func (mds MariaDBSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsMongoDbSource

func (mds MariaDBSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsNetezzaSource

func (mds MariaDBSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsOracleSource

func (mds MariaDBSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsPaypalSource

func (mds MariaDBSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsPhoenixSource

func (mds MariaDBSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsPrestoSource

func (mds MariaDBSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsQuickBooksSource

func (mds MariaDBSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsRelationalSource

func (mds MariaDBSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsResponsysSource

func (mds MariaDBSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsSQLDWSource

func (mds MariaDBSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsSQLSource

func (mds MariaDBSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsSalesforceMarketingCloudSource

func (mds MariaDBSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsSalesforceSource

func (mds MariaDBSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsSapCloudForCustomerSource

func (mds MariaDBSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsSapEccSource

func (mds MariaDBSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsServiceNowSource

func (mds MariaDBSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsShopifySource

func (mds MariaDBSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsSparkSource

func (mds MariaDBSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsSquareSource

func (mds MariaDBSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsVerticaSource

func (mds MariaDBSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsWebSource

func (mds MariaDBSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsXeroSource

func (mds MariaDBSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) AsZohoSource

func (mds MariaDBSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for MariaDBSource.

func (MariaDBSource) MarshalJSON

func (mds MariaDBSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MariaDBSource.

type MariaDBTableDataset

type MariaDBTableDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

MariaDBTableDataset mariaDB server dataset.

func (MariaDBTableDataset) AsAmazonMWSObjectDataset

func (mdtd MariaDBTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsAmazonS3Dataset

func (mdtd MariaDBTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsAzureBlobDataset

func (mdtd MariaDBTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsAzureDataLakeStoreDataset

func (mdtd MariaDBTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsAzureMySQLTableDataset

func (mdtd MariaDBTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsAzurePostgreSQLTableDataset

func (mdtd MariaDBTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsAzureSQLDWTableDataset

func (mdtd MariaDBTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsAzureSQLTableDataset

func (mdtd MariaDBTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsAzureSearchIndexDataset

func (mdtd MariaDBTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsAzureTableDataset

func (mdtd MariaDBTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsBasicDataset

func (mdtd MariaDBTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsCassandraTableDataset

func (mdtd MariaDBTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsConcurObjectDataset

func (mdtd MariaDBTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsCouchbaseTableDataset

func (mdtd MariaDBTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsCustomDataset

func (mdtd MariaDBTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsDataset

func (mdtd MariaDBTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsDocumentDbCollectionDataset

func (mdtd MariaDBTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsDrillTableDataset

func (mdtd MariaDBTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsDynamicsEntityDataset

func (mdtd MariaDBTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsEloquaObjectDataset

func (mdtd MariaDBTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsFileShareDataset

func (mdtd MariaDBTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsGoogleBigQueryObjectDataset

func (mdtd MariaDBTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsGreenplumTableDataset

func (mdtd MariaDBTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsHBaseObjectDataset

func (mdtd MariaDBTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsHTTPDataset

func (mdtd MariaDBTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsHiveObjectDataset

func (mdtd MariaDBTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsHubspotObjectDataset

func (mdtd MariaDBTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsImpalaObjectDataset

func (mdtd MariaDBTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsJiraObjectDataset

func (mdtd MariaDBTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsMagentoObjectDataset

func (mdtd MariaDBTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsMariaDBTableDataset

func (mdtd MariaDBTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsMarketoObjectDataset

func (mdtd MariaDBTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsMongoDbCollectionDataset

func (mdtd MariaDBTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsNetezzaTableDataset

func (mdtd MariaDBTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsODataResourceDataset

func (mdtd MariaDBTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsOracleTableDataset

func (mdtd MariaDBTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsPaypalObjectDataset

func (mdtd MariaDBTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsPhoenixObjectDataset

func (mdtd MariaDBTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsPrestoObjectDataset

func (mdtd MariaDBTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsQuickBooksObjectDataset

func (mdtd MariaDBTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsRelationalTableDataset

func (mdtd MariaDBTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsResponsysObjectDataset

func (mdtd MariaDBTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsSQLServerTableDataset

func (mdtd MariaDBTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsSalesforceMarketingCloudObjectDataset

func (mdtd MariaDBTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsSalesforceObjectDataset

func (mdtd MariaDBTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsSapCloudForCustomerResourceDataset

func (mdtd MariaDBTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsSapEccResourceDataset

func (mdtd MariaDBTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsServiceNowObjectDataset

func (mdtd MariaDBTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsShopifyObjectDataset

func (mdtd MariaDBTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsSparkObjectDataset

func (mdtd MariaDBTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsSquareObjectDataset

func (mdtd MariaDBTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsVerticaTableDataset

func (mdtd MariaDBTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsWebTableDataset

func (mdtd MariaDBTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsXeroObjectDataset

func (mdtd MariaDBTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) AsZohoObjectDataset

func (mdtd MariaDBTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for MariaDBTableDataset.

func (MariaDBTableDataset) MarshalJSON

func (mdtd MariaDBTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MariaDBTableDataset.

type MarketoLinkedService

type MarketoLinkedService struct {
	// MarketoLinkedServiceTypeProperties - Marketo server linked service properties.
	*MarketoLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

MarketoLinkedService marketo server linked service.

func (MarketoLinkedService) AsAmazonMWSLinkedService

func (mls MarketoLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAmazonRedshiftLinkedService

func (mls MarketoLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAmazonS3LinkedService

func (mls MarketoLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAzureBatchLinkedService

func (mls MarketoLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (mls MarketoLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAzureDataLakeStoreLinkedService

func (mls MarketoLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAzureDatabricksLinkedService

func (mls MarketoLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAzureKeyVaultLinkedService

func (mls MarketoLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAzureMLLinkedService

func (mls MarketoLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAzureMySQLLinkedService

func (mls MarketoLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAzurePostgreSQLLinkedService

func (mls MarketoLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAzureSQLDWLinkedService

func (mls MarketoLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAzureSQLDatabaseLinkedService

func (mls MarketoLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAzureSearchLinkedService

func (mls MarketoLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsAzureStorageLinkedService

func (mls MarketoLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsBasicLinkedService

func (mls MarketoLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsCassandraLinkedService

func (mls MarketoLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsConcurLinkedService

func (mls MarketoLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsCosmosDbLinkedService

func (mls MarketoLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsCouchbaseLinkedService

func (mls MarketoLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsCustomDataSourceLinkedService

func (mls MarketoLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsDb2LinkedService

func (mls MarketoLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsDrillLinkedService

func (mls MarketoLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsDynamicsLinkedService

func (mls MarketoLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsEloquaLinkedService

func (mls MarketoLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsFileServerLinkedService

func (mls MarketoLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsFtpServerLinkedService

func (mls MarketoLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsGoogleBigQueryLinkedService

func (mls MarketoLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsGreenplumLinkedService

func (mls MarketoLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsHBaseLinkedService

func (mls MarketoLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsHDInsightLinkedService

func (mls MarketoLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsHDInsightOnDemandLinkedService

func (mls MarketoLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsHTTPLinkedService

func (mls MarketoLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsHdfsLinkedService

func (mls MarketoLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsHiveLinkedService

func (mls MarketoLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsHubspotLinkedService

func (mls MarketoLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsImpalaLinkedService

func (mls MarketoLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsJiraLinkedService

func (mls MarketoLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsLinkedService

func (mls MarketoLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsMagentoLinkedService

func (mls MarketoLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsMariaDBLinkedService

func (mls MarketoLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsMarketoLinkedService

func (mls MarketoLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsMongoDbLinkedService

func (mls MarketoLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsMySQLLinkedService

func (mls MarketoLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsNetezzaLinkedService

func (mls MarketoLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsODataLinkedService

func (mls MarketoLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsOdbcLinkedService

func (mls MarketoLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsOracleLinkedService

func (mls MarketoLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsPaypalLinkedService

func (mls MarketoLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsPhoenixLinkedService

func (mls MarketoLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsPostgreSQLLinkedService

func (mls MarketoLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsPrestoLinkedService

func (mls MarketoLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsQuickBooksLinkedService

func (mls MarketoLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsResponsysLinkedService

func (mls MarketoLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsSQLServerLinkedService

func (mls MarketoLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsSalesforceLinkedService

func (mls MarketoLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsSalesforceMarketingCloudLinkedService

func (mls MarketoLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsSapBWLinkedService

func (mls MarketoLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsSapCloudForCustomerLinkedService

func (mls MarketoLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsSapEccLinkedService

func (mls MarketoLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsSapHanaLinkedService

func (mls MarketoLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsServiceNowLinkedService

func (mls MarketoLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsSftpServerLinkedService

func (mls MarketoLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsShopifyLinkedService

func (mls MarketoLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsSparkLinkedService

func (mls MarketoLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsSquareLinkedService

func (mls MarketoLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsSybaseLinkedService

func (mls MarketoLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsTeradataLinkedService

func (mls MarketoLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsVerticaLinkedService

func (mls MarketoLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsWebLinkedService

func (mls MarketoLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsXeroLinkedService

func (mls MarketoLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) AsZohoLinkedService

func (mls MarketoLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for MarketoLinkedService.

func (MarketoLinkedService) MarshalJSON

func (mls MarketoLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MarketoLinkedService.

func (*MarketoLinkedService) UnmarshalJSON

func (mls *MarketoLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for MarketoLinkedService struct.

type MarketoLinkedServiceTypeProperties

type MarketoLinkedServiceTypeProperties struct {
	// Endpoint - The endpoint of the Marketo server. (i.e. 123-ABC-321.mktorest.com)
	Endpoint interface{} `json:"endpoint,omitempty"`
	// ClientID - The client Id of your Marketo service.
	ClientID interface{} `json:"clientId,omitempty"`
	// ClientSecret - The client secret of your Marketo service.
	ClientSecret BasicSecretBase `json:"clientSecret,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

MarketoLinkedServiceTypeProperties marketo server linked service properties.

func (*MarketoLinkedServiceTypeProperties) UnmarshalJSON

func (mlstp *MarketoLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for MarketoLinkedServiceTypeProperties struct.

type MarketoObjectDataset

type MarketoObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

MarketoObjectDataset marketo server dataset.

func (MarketoObjectDataset) AsAmazonMWSObjectDataset

func (mod MarketoObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsAmazonS3Dataset

func (mod MarketoObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsAzureBlobDataset

func (mod MarketoObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsAzureDataLakeStoreDataset

func (mod MarketoObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsAzureMySQLTableDataset

func (mod MarketoObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsAzurePostgreSQLTableDataset

func (mod MarketoObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsAzureSQLDWTableDataset

func (mod MarketoObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsAzureSQLTableDataset

func (mod MarketoObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsAzureSearchIndexDataset

func (mod MarketoObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsAzureTableDataset

func (mod MarketoObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsBasicDataset

func (mod MarketoObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsCassandraTableDataset

func (mod MarketoObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsConcurObjectDataset

func (mod MarketoObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsCouchbaseTableDataset

func (mod MarketoObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsCustomDataset

func (mod MarketoObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsDataset

func (mod MarketoObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsDocumentDbCollectionDataset

func (mod MarketoObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsDrillTableDataset

func (mod MarketoObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsDynamicsEntityDataset

func (mod MarketoObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsEloquaObjectDataset

func (mod MarketoObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsFileShareDataset

func (mod MarketoObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsGoogleBigQueryObjectDataset

func (mod MarketoObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsGreenplumTableDataset

func (mod MarketoObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsHBaseObjectDataset

func (mod MarketoObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsHTTPDataset

func (mod MarketoObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsHiveObjectDataset

func (mod MarketoObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsHubspotObjectDataset

func (mod MarketoObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsImpalaObjectDataset

func (mod MarketoObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsJiraObjectDataset

func (mod MarketoObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsMagentoObjectDataset

func (mod MarketoObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsMariaDBTableDataset

func (mod MarketoObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsMarketoObjectDataset

func (mod MarketoObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsMongoDbCollectionDataset

func (mod MarketoObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsNetezzaTableDataset

func (mod MarketoObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsODataResourceDataset

func (mod MarketoObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsOracleTableDataset

func (mod MarketoObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsPaypalObjectDataset

func (mod MarketoObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsPhoenixObjectDataset

func (mod MarketoObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsPrestoObjectDataset

func (mod MarketoObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsQuickBooksObjectDataset

func (mod MarketoObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsRelationalTableDataset

func (mod MarketoObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsResponsysObjectDataset

func (mod MarketoObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsSQLServerTableDataset

func (mod MarketoObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (mod MarketoObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsSalesforceObjectDataset

func (mod MarketoObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsSapCloudForCustomerResourceDataset

func (mod MarketoObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsSapEccResourceDataset

func (mod MarketoObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsServiceNowObjectDataset

func (mod MarketoObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsShopifyObjectDataset

func (mod MarketoObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsSparkObjectDataset

func (mod MarketoObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsSquareObjectDataset

func (mod MarketoObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsVerticaTableDataset

func (mod MarketoObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsWebTableDataset

func (mod MarketoObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsXeroObjectDataset

func (mod MarketoObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) AsZohoObjectDataset

func (mod MarketoObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for MarketoObjectDataset.

func (MarketoObjectDataset) MarshalJSON

func (mod MarketoObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MarketoObjectDataset.

type MarketoSource

type MarketoSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

MarketoSource a copy activity Marketo server source.

func (MarketoSource) AsAmazonMWSSource

func (ms MarketoSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsAmazonRedshiftSource

func (ms MarketoSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsAzureDataLakeStoreSource

func (ms MarketoSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsAzureMySQLSource

func (ms MarketoSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsAzurePostgreSQLSource

func (ms MarketoSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsAzureTableSource

func (ms MarketoSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsBasicCopySource

func (ms MarketoSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsBlobSource

func (ms MarketoSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsCassandraSource

func (ms MarketoSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsConcurSource

func (ms MarketoSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsCopySource

func (ms MarketoSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsCouchbaseSource

func (ms MarketoSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsDocumentDbCollectionSource

func (ms MarketoSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsDrillSource

func (ms MarketoSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsDynamicsSource

func (ms MarketoSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsEloquaSource

func (ms MarketoSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsFileSystemSource

func (ms MarketoSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsGoogleBigQuerySource

func (ms MarketoSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsGreenplumSource

func (ms MarketoSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsHBaseSource

func (ms MarketoSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsHTTPSource

func (ms MarketoSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsHdfsSource

func (ms MarketoSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsHiveSource

func (ms MarketoSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsHubspotSource

func (ms MarketoSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsImpalaSource

func (ms MarketoSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsJiraSource

func (ms MarketoSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsMagentoSource

func (ms MarketoSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsMariaDBSource

func (ms MarketoSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsMarketoSource

func (ms MarketoSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsMongoDbSource

func (ms MarketoSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsNetezzaSource

func (ms MarketoSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsOracleSource

func (ms MarketoSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsPaypalSource

func (ms MarketoSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsPhoenixSource

func (ms MarketoSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsPrestoSource

func (ms MarketoSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsQuickBooksSource

func (ms MarketoSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsRelationalSource

func (ms MarketoSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsResponsysSource

func (ms MarketoSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsSQLDWSource

func (ms MarketoSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsSQLSource

func (ms MarketoSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsSalesforceMarketingCloudSource

func (ms MarketoSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsSalesforceSource

func (ms MarketoSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsSapCloudForCustomerSource

func (ms MarketoSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsSapEccSource

func (ms MarketoSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsServiceNowSource

func (ms MarketoSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsShopifySource

func (ms MarketoSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsSparkSource

func (ms MarketoSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsSquareSource

func (ms MarketoSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsVerticaSource

func (ms MarketoSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsWebSource

func (ms MarketoSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsXeroSource

func (ms MarketoSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) AsZohoSource

func (ms MarketoSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for MarketoSource.

func (MarketoSource) MarshalJSON

func (ms MarketoSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MarketoSource.

type MongoDbAuthenticationType

type MongoDbAuthenticationType string

MongoDbAuthenticationType enumerates the values for mongo db authentication type.

const (
	// MongoDbAuthenticationTypeAnonymous ...
	MongoDbAuthenticationTypeAnonymous MongoDbAuthenticationType = "Anonymous"
	// MongoDbAuthenticationTypeBasic ...
	MongoDbAuthenticationTypeBasic MongoDbAuthenticationType = "Basic"
)

func PossibleMongoDbAuthenticationTypeValues

func PossibleMongoDbAuthenticationTypeValues() []MongoDbAuthenticationType

PossibleMongoDbAuthenticationTypeValues returns an array of possible values for the MongoDbAuthenticationType const type.

type MongoDbCollectionDataset

type MongoDbCollectionDataset struct {
	// MongoDbCollectionDatasetTypeProperties - MongoDB database dataset properties.
	*MongoDbCollectionDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

MongoDbCollectionDataset the MongoDB database dataset.

func (MongoDbCollectionDataset) AsAmazonMWSObjectDataset

func (mdcd MongoDbCollectionDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsAmazonS3Dataset

func (mdcd MongoDbCollectionDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsAzureBlobDataset

func (mdcd MongoDbCollectionDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsAzureDataLakeStoreDataset

func (mdcd MongoDbCollectionDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsAzureMySQLTableDataset

func (mdcd MongoDbCollectionDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsAzurePostgreSQLTableDataset

func (mdcd MongoDbCollectionDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsAzureSQLDWTableDataset

func (mdcd MongoDbCollectionDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsAzureSQLTableDataset

func (mdcd MongoDbCollectionDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsAzureSearchIndexDataset

func (mdcd MongoDbCollectionDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsAzureTableDataset

func (mdcd MongoDbCollectionDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsBasicDataset

func (mdcd MongoDbCollectionDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsCassandraTableDataset

func (mdcd MongoDbCollectionDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsConcurObjectDataset

func (mdcd MongoDbCollectionDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsCouchbaseTableDataset

func (mdcd MongoDbCollectionDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsCustomDataset

func (mdcd MongoDbCollectionDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsDataset

func (mdcd MongoDbCollectionDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsDocumentDbCollectionDataset

func (mdcd MongoDbCollectionDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsDrillTableDataset

func (mdcd MongoDbCollectionDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsDynamicsEntityDataset

func (mdcd MongoDbCollectionDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsEloquaObjectDataset

func (mdcd MongoDbCollectionDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsFileShareDataset

func (mdcd MongoDbCollectionDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsGoogleBigQueryObjectDataset

func (mdcd MongoDbCollectionDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsGreenplumTableDataset

func (mdcd MongoDbCollectionDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsHBaseObjectDataset

func (mdcd MongoDbCollectionDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsHTTPDataset

func (mdcd MongoDbCollectionDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsHiveObjectDataset

func (mdcd MongoDbCollectionDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsHubspotObjectDataset

func (mdcd MongoDbCollectionDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsImpalaObjectDataset

func (mdcd MongoDbCollectionDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsJiraObjectDataset

func (mdcd MongoDbCollectionDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsMagentoObjectDataset

func (mdcd MongoDbCollectionDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsMariaDBTableDataset

func (mdcd MongoDbCollectionDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsMarketoObjectDataset

func (mdcd MongoDbCollectionDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsMongoDbCollectionDataset

func (mdcd MongoDbCollectionDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsNetezzaTableDataset

func (mdcd MongoDbCollectionDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsODataResourceDataset

func (mdcd MongoDbCollectionDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsOracleTableDataset

func (mdcd MongoDbCollectionDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsPaypalObjectDataset

func (mdcd MongoDbCollectionDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsPhoenixObjectDataset

func (mdcd MongoDbCollectionDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsPrestoObjectDataset

func (mdcd MongoDbCollectionDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsQuickBooksObjectDataset

func (mdcd MongoDbCollectionDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsRelationalTableDataset

func (mdcd MongoDbCollectionDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsResponsysObjectDataset

func (mdcd MongoDbCollectionDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsSQLServerTableDataset

func (mdcd MongoDbCollectionDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsSalesforceMarketingCloudObjectDataset

func (mdcd MongoDbCollectionDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsSalesforceObjectDataset

func (mdcd MongoDbCollectionDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsSapCloudForCustomerResourceDataset

func (mdcd MongoDbCollectionDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsSapEccResourceDataset

func (mdcd MongoDbCollectionDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsServiceNowObjectDataset

func (mdcd MongoDbCollectionDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsShopifyObjectDataset

func (mdcd MongoDbCollectionDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsSparkObjectDataset

func (mdcd MongoDbCollectionDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsSquareObjectDataset

func (mdcd MongoDbCollectionDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsVerticaTableDataset

func (mdcd MongoDbCollectionDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsWebTableDataset

func (mdcd MongoDbCollectionDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsXeroObjectDataset

func (mdcd MongoDbCollectionDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) AsZohoObjectDataset

func (mdcd MongoDbCollectionDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for MongoDbCollectionDataset.

func (MongoDbCollectionDataset) MarshalJSON

func (mdcd MongoDbCollectionDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MongoDbCollectionDataset.

func (*MongoDbCollectionDataset) UnmarshalJSON

func (mdcd *MongoDbCollectionDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for MongoDbCollectionDataset struct.

type MongoDbCollectionDatasetTypeProperties

type MongoDbCollectionDatasetTypeProperties struct {
	// CollectionName - The table name of the MongoDB database. Type: string (or Expression with resultType string).
	CollectionName interface{} `json:"collectionName,omitempty"`
}

MongoDbCollectionDatasetTypeProperties mongoDB database dataset properties.

type MongoDbLinkedService

type MongoDbLinkedService struct {
	// MongoDbLinkedServiceTypeProperties - MongoDB linked service properties.
	*MongoDbLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

MongoDbLinkedService linked service for MongoDb data source.

func (MongoDbLinkedService) AsAmazonMWSLinkedService

func (mdls MongoDbLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAmazonRedshiftLinkedService

func (mdls MongoDbLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAmazonS3LinkedService

func (mdls MongoDbLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAzureBatchLinkedService

func (mdls MongoDbLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (mdls MongoDbLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAzureDataLakeStoreLinkedService

func (mdls MongoDbLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAzureDatabricksLinkedService

func (mdls MongoDbLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAzureKeyVaultLinkedService

func (mdls MongoDbLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAzureMLLinkedService

func (mdls MongoDbLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAzureMySQLLinkedService

func (mdls MongoDbLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAzurePostgreSQLLinkedService

func (mdls MongoDbLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAzureSQLDWLinkedService

func (mdls MongoDbLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAzureSQLDatabaseLinkedService

func (mdls MongoDbLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAzureSearchLinkedService

func (mdls MongoDbLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsAzureStorageLinkedService

func (mdls MongoDbLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsBasicLinkedService

func (mdls MongoDbLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsCassandraLinkedService

func (mdls MongoDbLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsConcurLinkedService

func (mdls MongoDbLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsCosmosDbLinkedService

func (mdls MongoDbLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsCouchbaseLinkedService

func (mdls MongoDbLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsCustomDataSourceLinkedService

func (mdls MongoDbLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsDb2LinkedService

func (mdls MongoDbLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsDrillLinkedService

func (mdls MongoDbLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsDynamicsLinkedService

func (mdls MongoDbLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsEloquaLinkedService

func (mdls MongoDbLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsFileServerLinkedService

func (mdls MongoDbLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsFtpServerLinkedService

func (mdls MongoDbLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsGoogleBigQueryLinkedService

func (mdls MongoDbLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsGreenplumLinkedService

func (mdls MongoDbLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsHBaseLinkedService

func (mdls MongoDbLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsHDInsightLinkedService

func (mdls MongoDbLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsHDInsightOnDemandLinkedService

func (mdls MongoDbLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsHTTPLinkedService

func (mdls MongoDbLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsHdfsLinkedService

func (mdls MongoDbLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsHiveLinkedService

func (mdls MongoDbLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsHubspotLinkedService

func (mdls MongoDbLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsImpalaLinkedService

func (mdls MongoDbLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsJiraLinkedService

func (mdls MongoDbLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsLinkedService

func (mdls MongoDbLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsMagentoLinkedService

func (mdls MongoDbLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsMariaDBLinkedService

func (mdls MongoDbLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsMarketoLinkedService

func (mdls MongoDbLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsMongoDbLinkedService

func (mdls MongoDbLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsMySQLLinkedService

func (mdls MongoDbLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsNetezzaLinkedService

func (mdls MongoDbLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsODataLinkedService

func (mdls MongoDbLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsOdbcLinkedService

func (mdls MongoDbLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsOracleLinkedService

func (mdls MongoDbLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsPaypalLinkedService

func (mdls MongoDbLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsPhoenixLinkedService

func (mdls MongoDbLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsPostgreSQLLinkedService

func (mdls MongoDbLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsPrestoLinkedService

func (mdls MongoDbLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsQuickBooksLinkedService

func (mdls MongoDbLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsResponsysLinkedService

func (mdls MongoDbLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsSQLServerLinkedService

func (mdls MongoDbLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsSalesforceLinkedService

func (mdls MongoDbLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsSalesforceMarketingCloudLinkedService

func (mdls MongoDbLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsSapBWLinkedService

func (mdls MongoDbLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsSapCloudForCustomerLinkedService

func (mdls MongoDbLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsSapEccLinkedService

func (mdls MongoDbLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsSapHanaLinkedService

func (mdls MongoDbLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsServiceNowLinkedService

func (mdls MongoDbLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsSftpServerLinkedService

func (mdls MongoDbLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsShopifyLinkedService

func (mdls MongoDbLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsSparkLinkedService

func (mdls MongoDbLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsSquareLinkedService

func (mdls MongoDbLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsSybaseLinkedService

func (mdls MongoDbLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsTeradataLinkedService

func (mdls MongoDbLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsVerticaLinkedService

func (mdls MongoDbLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsWebLinkedService

func (mdls MongoDbLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsXeroLinkedService

func (mdls MongoDbLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) AsZohoLinkedService

func (mdls MongoDbLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for MongoDbLinkedService.

func (MongoDbLinkedService) MarshalJSON

func (mdls MongoDbLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MongoDbLinkedService.

func (*MongoDbLinkedService) UnmarshalJSON

func (mdls *MongoDbLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for MongoDbLinkedService struct.

type MongoDbLinkedServiceTypeProperties

type MongoDbLinkedServiceTypeProperties struct {
	// Server - The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
	Server interface{} `json:"server,omitempty"`
	// AuthenticationType - The authentication type to be used to connect to the MongoDB database. Possible values include: 'MongoDbAuthenticationTypeBasic', 'MongoDbAuthenticationTypeAnonymous'
	AuthenticationType MongoDbAuthenticationType `json:"authenticationType,omitempty"`
	// DatabaseName - The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
	DatabaseName interface{} `json:"databaseName,omitempty"`
	// Username - Username for authentication. Type: string (or Expression with resultType string).
	Username interface{} `json:"username,omitempty"`
	// Password - Password for authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// AuthSource - Database to verify the username and password. Type: string (or Expression with resultType string).
	AuthSource interface{} `json:"authSource,omitempty"`
	// Port - The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
	Port interface{} `json:"port,omitempty"`
	// EnableSsl - Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
	EnableSsl interface{} `json:"enableSsl,omitempty"`
	// AllowSelfSignedServerCert - Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
	AllowSelfSignedServerCert interface{} `json:"allowSelfSignedServerCert,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

MongoDbLinkedServiceTypeProperties mongoDB linked service properties.

func (*MongoDbLinkedServiceTypeProperties) UnmarshalJSON

func (mdlstp *MongoDbLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for MongoDbLinkedServiceTypeProperties struct.

type MongoDbSource

type MongoDbSource struct {
	// Query - Database query. Should be a SQL-92 query expression. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

MongoDbSource a copy activity source for a MongoDB database.

func (MongoDbSource) AsAmazonMWSSource

func (mds MongoDbSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsAmazonRedshiftSource

func (mds MongoDbSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsAzureDataLakeStoreSource

func (mds MongoDbSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsAzureMySQLSource

func (mds MongoDbSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsAzurePostgreSQLSource

func (mds MongoDbSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsAzureTableSource

func (mds MongoDbSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsBasicCopySource

func (mds MongoDbSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsBlobSource

func (mds MongoDbSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsCassandraSource

func (mds MongoDbSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsConcurSource

func (mds MongoDbSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsCopySource

func (mds MongoDbSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsCouchbaseSource

func (mds MongoDbSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsDocumentDbCollectionSource

func (mds MongoDbSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsDrillSource

func (mds MongoDbSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsDynamicsSource

func (mds MongoDbSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsEloquaSource

func (mds MongoDbSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsFileSystemSource

func (mds MongoDbSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsGoogleBigQuerySource

func (mds MongoDbSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsGreenplumSource

func (mds MongoDbSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsHBaseSource

func (mds MongoDbSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsHTTPSource

func (mds MongoDbSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsHdfsSource

func (mds MongoDbSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsHiveSource

func (mds MongoDbSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsHubspotSource

func (mds MongoDbSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsImpalaSource

func (mds MongoDbSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsJiraSource

func (mds MongoDbSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsMagentoSource

func (mds MongoDbSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsMariaDBSource

func (mds MongoDbSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsMarketoSource

func (mds MongoDbSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsMongoDbSource

func (mds MongoDbSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsNetezzaSource

func (mds MongoDbSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsOracleSource

func (mds MongoDbSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsPaypalSource

func (mds MongoDbSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsPhoenixSource

func (mds MongoDbSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsPrestoSource

func (mds MongoDbSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsQuickBooksSource

func (mds MongoDbSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsRelationalSource

func (mds MongoDbSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsResponsysSource

func (mds MongoDbSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsSQLDWSource

func (mds MongoDbSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsSQLSource

func (mds MongoDbSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsSalesforceMarketingCloudSource

func (mds MongoDbSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsSalesforceSource

func (mds MongoDbSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsSapCloudForCustomerSource

func (mds MongoDbSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsSapEccSource

func (mds MongoDbSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsServiceNowSource

func (mds MongoDbSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsShopifySource

func (mds MongoDbSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsSparkSource

func (mds MongoDbSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsSquareSource

func (mds MongoDbSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsVerticaSource

func (mds MongoDbSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsWebSource

func (mds MongoDbSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsXeroSource

func (mds MongoDbSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) AsZohoSource

func (mds MongoDbSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for MongoDbSource.

func (MongoDbSource) MarshalJSON

func (mds MongoDbSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MongoDbSource.

type MultiplePipelineTrigger

type MultiplePipelineTrigger struct {
	// Pipelines - Pipelines that need to be started.
	Pipelines *[]TriggerPipelineReference `json:"pipelines,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Trigger description.
	Description *string `json:"description,omitempty"`
	// RuntimeState - Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. Possible values include: 'TriggerRuntimeStateStarted', 'TriggerRuntimeStateStopped', 'TriggerRuntimeStateDisabled'
	RuntimeState TriggerRuntimeState `json:"runtimeState,omitempty"`
	// Type - Possible values include: 'TypeTrigger', 'TypeTumblingWindowTrigger', 'TypeBlobTrigger', 'TypeScheduleTrigger', 'TypeMultiplePipelineTrigger'
	Type TypeBasicTrigger `json:"type,omitempty"`
}

MultiplePipelineTrigger base class for all triggers that support one to many model for trigger to pipeline.

func (MultiplePipelineTrigger) AsBasicMultiplePipelineTrigger

func (mpt MultiplePipelineTrigger) AsBasicMultiplePipelineTrigger() (BasicMultiplePipelineTrigger, bool)

AsBasicMultiplePipelineTrigger is the BasicTrigger implementation for MultiplePipelineTrigger.

func (MultiplePipelineTrigger) AsBasicTrigger

func (mpt MultiplePipelineTrigger) AsBasicTrigger() (BasicTrigger, bool)

AsBasicTrigger is the BasicTrigger implementation for MultiplePipelineTrigger.

func (MultiplePipelineTrigger) AsBlobTrigger

func (mpt MultiplePipelineTrigger) AsBlobTrigger() (*BlobTrigger, bool)

AsBlobTrigger is the BasicTrigger implementation for MultiplePipelineTrigger.

func (MultiplePipelineTrigger) AsMultiplePipelineTrigger

func (mpt MultiplePipelineTrigger) AsMultiplePipelineTrigger() (*MultiplePipelineTrigger, bool)

AsMultiplePipelineTrigger is the BasicTrigger implementation for MultiplePipelineTrigger.

func (MultiplePipelineTrigger) AsScheduleTrigger

func (mpt MultiplePipelineTrigger) AsScheduleTrigger() (*ScheduleTrigger, bool)

AsScheduleTrigger is the BasicTrigger implementation for MultiplePipelineTrigger.

func (MultiplePipelineTrigger) AsTrigger

func (mpt MultiplePipelineTrigger) AsTrigger() (*Trigger, bool)

AsTrigger is the BasicTrigger implementation for MultiplePipelineTrigger.

func (MultiplePipelineTrigger) AsTumblingWindowTrigger

func (mpt MultiplePipelineTrigger) AsTumblingWindowTrigger() (*TumblingWindowTrigger, bool)

AsTumblingWindowTrigger is the BasicTrigger implementation for MultiplePipelineTrigger.

func (MultiplePipelineTrigger) MarshalJSON

func (mpt MultiplePipelineTrigger) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MultiplePipelineTrigger.

type MySQLLinkedService

type MySQLLinkedService struct {
	// MySQLLinkedServiceTypeProperties - MySQL linked service properties.
	*MySQLLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

MySQLLinkedService linked service for MySQL data source.

func (MySQLLinkedService) AsAmazonMWSLinkedService

func (msls MySQLLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAmazonRedshiftLinkedService

func (msls MySQLLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAmazonS3LinkedService

func (msls MySQLLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAzureBatchLinkedService

func (msls MySQLLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (msls MySQLLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAzureDataLakeStoreLinkedService

func (msls MySQLLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAzureDatabricksLinkedService

func (msls MySQLLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAzureKeyVaultLinkedService

func (msls MySQLLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAzureMLLinkedService

func (msls MySQLLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAzureMySQLLinkedService

func (msls MySQLLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAzurePostgreSQLLinkedService

func (msls MySQLLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAzureSQLDWLinkedService

func (msls MySQLLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAzureSQLDatabaseLinkedService

func (msls MySQLLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAzureSearchLinkedService

func (msls MySQLLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsAzureStorageLinkedService

func (msls MySQLLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsBasicLinkedService

func (msls MySQLLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsCassandraLinkedService

func (msls MySQLLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsConcurLinkedService

func (msls MySQLLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsCosmosDbLinkedService

func (msls MySQLLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsCouchbaseLinkedService

func (msls MySQLLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsCustomDataSourceLinkedService

func (msls MySQLLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsDb2LinkedService

func (msls MySQLLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsDrillLinkedService

func (msls MySQLLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsDynamicsLinkedService

func (msls MySQLLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsEloquaLinkedService

func (msls MySQLLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsFileServerLinkedService

func (msls MySQLLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsFtpServerLinkedService

func (msls MySQLLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsGoogleBigQueryLinkedService

func (msls MySQLLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsGreenplumLinkedService

func (msls MySQLLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsHBaseLinkedService

func (msls MySQLLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsHDInsightLinkedService

func (msls MySQLLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsHDInsightOnDemandLinkedService

func (msls MySQLLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsHTTPLinkedService

func (msls MySQLLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsHdfsLinkedService

func (msls MySQLLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsHiveLinkedService

func (msls MySQLLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsHubspotLinkedService

func (msls MySQLLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsImpalaLinkedService

func (msls MySQLLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsJiraLinkedService

func (msls MySQLLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsLinkedService

func (msls MySQLLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsMagentoLinkedService

func (msls MySQLLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsMariaDBLinkedService

func (msls MySQLLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsMarketoLinkedService

func (msls MySQLLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsMongoDbLinkedService

func (msls MySQLLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsMySQLLinkedService

func (msls MySQLLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsNetezzaLinkedService

func (msls MySQLLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsODataLinkedService

func (msls MySQLLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsOdbcLinkedService

func (msls MySQLLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsOracleLinkedService

func (msls MySQLLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsPaypalLinkedService

func (msls MySQLLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsPhoenixLinkedService

func (msls MySQLLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsPostgreSQLLinkedService

func (msls MySQLLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsPrestoLinkedService

func (msls MySQLLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsQuickBooksLinkedService

func (msls MySQLLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsResponsysLinkedService

func (msls MySQLLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsSQLServerLinkedService

func (msls MySQLLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsSalesforceLinkedService

func (msls MySQLLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsSalesforceMarketingCloudLinkedService

func (msls MySQLLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsSapBWLinkedService

func (msls MySQLLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsSapCloudForCustomerLinkedService

func (msls MySQLLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsSapEccLinkedService

func (msls MySQLLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsSapHanaLinkedService

func (msls MySQLLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsServiceNowLinkedService

func (msls MySQLLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsSftpServerLinkedService

func (msls MySQLLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsShopifyLinkedService

func (msls MySQLLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsSparkLinkedService

func (msls MySQLLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsSquareLinkedService

func (msls MySQLLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsSybaseLinkedService

func (msls MySQLLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsTeradataLinkedService

func (msls MySQLLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsVerticaLinkedService

func (msls MySQLLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsWebLinkedService

func (msls MySQLLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsXeroLinkedService

func (msls MySQLLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) AsZohoLinkedService

func (msls MySQLLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for MySQLLinkedService.

func (MySQLLinkedService) MarshalJSON

func (msls MySQLLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for MySQLLinkedService.

func (*MySQLLinkedService) UnmarshalJSON

func (msls *MySQLLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for MySQLLinkedService struct.

type MySQLLinkedServiceTypeProperties

type MySQLLinkedServiceTypeProperties struct {
	// Server - Server name for connection. Type: string (or Expression with resultType string).
	Server interface{} `json:"server,omitempty"`
	// Database - Database name for connection. Type: string (or Expression with resultType string).
	Database interface{} `json:"database,omitempty"`
	// Schema - Schema name for connection. Type: string (or Expression with resultType string).
	Schema interface{} `json:"schema,omitempty"`
	// Username - Username for authentication. Type: string (or Expression with resultType string).
	Username interface{} `json:"username,omitempty"`
	// Password - Password for authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

MySQLLinkedServiceTypeProperties mySQL linked service properties.

func (*MySQLLinkedServiceTypeProperties) UnmarshalJSON

func (mslstp *MySQLLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for MySQLLinkedServiceTypeProperties struct.

type NetezzaLinkedService

type NetezzaLinkedService struct {
	// NetezzaLinkedServiceTypeProperties - Netezza linked service properties.
	*NetezzaLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

NetezzaLinkedService netezza linked service.

func (NetezzaLinkedService) AsAmazonMWSLinkedService

func (nls NetezzaLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAmazonRedshiftLinkedService

func (nls NetezzaLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAmazonS3LinkedService

func (nls NetezzaLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAzureBatchLinkedService

func (nls NetezzaLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (nls NetezzaLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAzureDataLakeStoreLinkedService

func (nls NetezzaLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAzureDatabricksLinkedService

func (nls NetezzaLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAzureKeyVaultLinkedService

func (nls NetezzaLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAzureMLLinkedService

func (nls NetezzaLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAzureMySQLLinkedService

func (nls NetezzaLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAzurePostgreSQLLinkedService

func (nls NetezzaLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAzureSQLDWLinkedService

func (nls NetezzaLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAzureSQLDatabaseLinkedService

func (nls NetezzaLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAzureSearchLinkedService

func (nls NetezzaLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsAzureStorageLinkedService

func (nls NetezzaLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsBasicLinkedService

func (nls NetezzaLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsCassandraLinkedService

func (nls NetezzaLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsConcurLinkedService

func (nls NetezzaLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsCosmosDbLinkedService

func (nls NetezzaLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsCouchbaseLinkedService

func (nls NetezzaLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsCustomDataSourceLinkedService

func (nls NetezzaLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsDb2LinkedService

func (nls NetezzaLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsDrillLinkedService

func (nls NetezzaLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsDynamicsLinkedService

func (nls NetezzaLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsEloquaLinkedService

func (nls NetezzaLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsFileServerLinkedService

func (nls NetezzaLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsFtpServerLinkedService

func (nls NetezzaLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsGoogleBigQueryLinkedService

func (nls NetezzaLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsGreenplumLinkedService

func (nls NetezzaLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsHBaseLinkedService

func (nls NetezzaLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsHDInsightLinkedService

func (nls NetezzaLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsHDInsightOnDemandLinkedService

func (nls NetezzaLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsHTTPLinkedService

func (nls NetezzaLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsHdfsLinkedService

func (nls NetezzaLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsHiveLinkedService

func (nls NetezzaLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsHubspotLinkedService

func (nls NetezzaLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsImpalaLinkedService

func (nls NetezzaLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsJiraLinkedService

func (nls NetezzaLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsLinkedService

func (nls NetezzaLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsMagentoLinkedService

func (nls NetezzaLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsMariaDBLinkedService

func (nls NetezzaLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsMarketoLinkedService

func (nls NetezzaLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsMongoDbLinkedService

func (nls NetezzaLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsMySQLLinkedService

func (nls NetezzaLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsNetezzaLinkedService

func (nls NetezzaLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsODataLinkedService

func (nls NetezzaLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsOdbcLinkedService

func (nls NetezzaLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsOracleLinkedService

func (nls NetezzaLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsPaypalLinkedService

func (nls NetezzaLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsPhoenixLinkedService

func (nls NetezzaLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsPostgreSQLLinkedService

func (nls NetezzaLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsPrestoLinkedService

func (nls NetezzaLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsQuickBooksLinkedService

func (nls NetezzaLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsResponsysLinkedService

func (nls NetezzaLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsSQLServerLinkedService

func (nls NetezzaLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsSalesforceLinkedService

func (nls NetezzaLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsSalesforceMarketingCloudLinkedService

func (nls NetezzaLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsSapBWLinkedService

func (nls NetezzaLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsSapCloudForCustomerLinkedService

func (nls NetezzaLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsSapEccLinkedService

func (nls NetezzaLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsSapHanaLinkedService

func (nls NetezzaLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsServiceNowLinkedService

func (nls NetezzaLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsSftpServerLinkedService

func (nls NetezzaLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsShopifyLinkedService

func (nls NetezzaLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsSparkLinkedService

func (nls NetezzaLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsSquareLinkedService

func (nls NetezzaLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsSybaseLinkedService

func (nls NetezzaLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsTeradataLinkedService

func (nls NetezzaLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsVerticaLinkedService

func (nls NetezzaLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsWebLinkedService

func (nls NetezzaLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsXeroLinkedService

func (nls NetezzaLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) AsZohoLinkedService

func (nls NetezzaLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for NetezzaLinkedService.

func (NetezzaLinkedService) MarshalJSON

func (nls NetezzaLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for NetezzaLinkedService.

func (*NetezzaLinkedService) UnmarshalJSON

func (nls *NetezzaLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for NetezzaLinkedService struct.

type NetezzaLinkedServiceTypeProperties

type NetezzaLinkedServiceTypeProperties struct {
	// ConnectionString - An ODBC connection string.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

NetezzaLinkedServiceTypeProperties netezza linked service properties.

func (*NetezzaLinkedServiceTypeProperties) UnmarshalJSON

func (nlstp *NetezzaLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for NetezzaLinkedServiceTypeProperties struct.

type NetezzaSource

type NetezzaSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

NetezzaSource a copy activity Netezza source.

func (NetezzaSource) AsAmazonMWSSource

func (ns NetezzaSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsAmazonRedshiftSource

func (ns NetezzaSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsAzureDataLakeStoreSource

func (ns NetezzaSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsAzureMySQLSource

func (ns NetezzaSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsAzurePostgreSQLSource

func (ns NetezzaSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsAzureTableSource

func (ns NetezzaSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsBasicCopySource

func (ns NetezzaSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsBlobSource

func (ns NetezzaSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsCassandraSource

func (ns NetezzaSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsConcurSource

func (ns NetezzaSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsCopySource

func (ns NetezzaSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsCouchbaseSource

func (ns NetezzaSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsDocumentDbCollectionSource

func (ns NetezzaSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsDrillSource

func (ns NetezzaSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsDynamicsSource

func (ns NetezzaSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsEloquaSource

func (ns NetezzaSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsFileSystemSource

func (ns NetezzaSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsGoogleBigQuerySource

func (ns NetezzaSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsGreenplumSource

func (ns NetezzaSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsHBaseSource

func (ns NetezzaSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsHTTPSource

func (ns NetezzaSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsHdfsSource

func (ns NetezzaSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsHiveSource

func (ns NetezzaSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsHubspotSource

func (ns NetezzaSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsImpalaSource

func (ns NetezzaSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsJiraSource

func (ns NetezzaSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsMagentoSource

func (ns NetezzaSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsMariaDBSource

func (ns NetezzaSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsMarketoSource

func (ns NetezzaSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsMongoDbSource

func (ns NetezzaSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsNetezzaSource

func (ns NetezzaSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsOracleSource

func (ns NetezzaSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsPaypalSource

func (ns NetezzaSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsPhoenixSource

func (ns NetezzaSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsPrestoSource

func (ns NetezzaSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsQuickBooksSource

func (ns NetezzaSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsRelationalSource

func (ns NetezzaSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsResponsysSource

func (ns NetezzaSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsSQLDWSource

func (ns NetezzaSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsSQLSource

func (ns NetezzaSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsSalesforceMarketingCloudSource

func (ns NetezzaSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsSalesforceSource

func (ns NetezzaSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsSapCloudForCustomerSource

func (ns NetezzaSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsSapEccSource

func (ns NetezzaSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsServiceNowSource

func (ns NetezzaSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsShopifySource

func (ns NetezzaSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsSparkSource

func (ns NetezzaSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsSquareSource

func (ns NetezzaSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsVerticaSource

func (ns NetezzaSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsWebSource

func (ns NetezzaSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsXeroSource

func (ns NetezzaSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) AsZohoSource

func (ns NetezzaSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for NetezzaSource.

func (NetezzaSource) MarshalJSON

func (ns NetezzaSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for NetezzaSource.

type NetezzaTableDataset

type NetezzaTableDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

NetezzaTableDataset netezza dataset.

func (NetezzaTableDataset) AsAmazonMWSObjectDataset

func (ntd NetezzaTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsAmazonS3Dataset

func (ntd NetezzaTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsAzureBlobDataset

func (ntd NetezzaTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsAzureDataLakeStoreDataset

func (ntd NetezzaTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsAzureMySQLTableDataset

func (ntd NetezzaTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsAzurePostgreSQLTableDataset

func (ntd NetezzaTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsAzureSQLDWTableDataset

func (ntd NetezzaTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsAzureSQLTableDataset

func (ntd NetezzaTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsAzureSearchIndexDataset

func (ntd NetezzaTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsAzureTableDataset

func (ntd NetezzaTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsBasicDataset

func (ntd NetezzaTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsCassandraTableDataset

func (ntd NetezzaTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsConcurObjectDataset

func (ntd NetezzaTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsCouchbaseTableDataset

func (ntd NetezzaTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsCustomDataset

func (ntd NetezzaTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsDataset

func (ntd NetezzaTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsDocumentDbCollectionDataset

func (ntd NetezzaTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsDrillTableDataset

func (ntd NetezzaTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsDynamicsEntityDataset

func (ntd NetezzaTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsEloquaObjectDataset

func (ntd NetezzaTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsFileShareDataset

func (ntd NetezzaTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsGoogleBigQueryObjectDataset

func (ntd NetezzaTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsGreenplumTableDataset

func (ntd NetezzaTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsHBaseObjectDataset

func (ntd NetezzaTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsHTTPDataset

func (ntd NetezzaTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsHiveObjectDataset

func (ntd NetezzaTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsHubspotObjectDataset

func (ntd NetezzaTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsImpalaObjectDataset

func (ntd NetezzaTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsJiraObjectDataset

func (ntd NetezzaTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsMagentoObjectDataset

func (ntd NetezzaTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsMariaDBTableDataset

func (ntd NetezzaTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsMarketoObjectDataset

func (ntd NetezzaTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsMongoDbCollectionDataset

func (ntd NetezzaTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsNetezzaTableDataset

func (ntd NetezzaTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsODataResourceDataset

func (ntd NetezzaTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsOracleTableDataset

func (ntd NetezzaTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsPaypalObjectDataset

func (ntd NetezzaTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsPhoenixObjectDataset

func (ntd NetezzaTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsPrestoObjectDataset

func (ntd NetezzaTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsQuickBooksObjectDataset

func (ntd NetezzaTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsRelationalTableDataset

func (ntd NetezzaTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsResponsysObjectDataset

func (ntd NetezzaTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsSQLServerTableDataset

func (ntd NetezzaTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsSalesforceMarketingCloudObjectDataset

func (ntd NetezzaTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsSalesforceObjectDataset

func (ntd NetezzaTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsSapCloudForCustomerResourceDataset

func (ntd NetezzaTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsSapEccResourceDataset

func (ntd NetezzaTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsServiceNowObjectDataset

func (ntd NetezzaTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsShopifyObjectDataset

func (ntd NetezzaTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsSparkObjectDataset

func (ntd NetezzaTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsSquareObjectDataset

func (ntd NetezzaTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsVerticaTableDataset

func (ntd NetezzaTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsWebTableDataset

func (ntd NetezzaTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsXeroObjectDataset

func (ntd NetezzaTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) AsZohoObjectDataset

func (ntd NetezzaTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for NetezzaTableDataset.

func (NetezzaTableDataset) MarshalJSON

func (ntd NetezzaTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for NetezzaTableDataset.

type ODataAuthenticationType

type ODataAuthenticationType string

ODataAuthenticationType enumerates the values for o data authentication type.

const (
	// ODataAuthenticationTypeAnonymous ...
	ODataAuthenticationTypeAnonymous ODataAuthenticationType = "Anonymous"
	// ODataAuthenticationTypeBasic ...
	ODataAuthenticationTypeBasic ODataAuthenticationType = "Basic"
)

func PossibleODataAuthenticationTypeValues

func PossibleODataAuthenticationTypeValues() []ODataAuthenticationType

PossibleODataAuthenticationTypeValues returns an array of possible values for the ODataAuthenticationType const type.

type ODataLinkedService

type ODataLinkedService struct {
	// ODataLinkedServiceTypeProperties - OData linked service properties.
	*ODataLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

ODataLinkedService open Data Protocol (OData) linked service.

func (ODataLinkedService) AsAmazonMWSLinkedService

func (odls ODataLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAmazonRedshiftLinkedService

func (odls ODataLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAmazonS3LinkedService

func (odls ODataLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAzureBatchLinkedService

func (odls ODataLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (odls ODataLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAzureDataLakeStoreLinkedService

func (odls ODataLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAzureDatabricksLinkedService

func (odls ODataLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAzureKeyVaultLinkedService

func (odls ODataLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAzureMLLinkedService

func (odls ODataLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAzureMySQLLinkedService

func (odls ODataLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAzurePostgreSQLLinkedService

func (odls ODataLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAzureSQLDWLinkedService

func (odls ODataLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAzureSQLDatabaseLinkedService

func (odls ODataLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAzureSearchLinkedService

func (odls ODataLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsAzureStorageLinkedService

func (odls ODataLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsBasicLinkedService

func (odls ODataLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsCassandraLinkedService

func (odls ODataLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsConcurLinkedService

func (odls ODataLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsCosmosDbLinkedService

func (odls ODataLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsCouchbaseLinkedService

func (odls ODataLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsCustomDataSourceLinkedService

func (odls ODataLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsDb2LinkedService

func (odls ODataLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsDrillLinkedService

func (odls ODataLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsDynamicsLinkedService

func (odls ODataLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsEloquaLinkedService

func (odls ODataLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsFileServerLinkedService

func (odls ODataLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsFtpServerLinkedService

func (odls ODataLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsGoogleBigQueryLinkedService

func (odls ODataLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsGreenplumLinkedService

func (odls ODataLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsHBaseLinkedService

func (odls ODataLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsHDInsightLinkedService

func (odls ODataLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsHDInsightOnDemandLinkedService

func (odls ODataLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsHTTPLinkedService

func (odls ODataLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsHdfsLinkedService

func (odls ODataLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsHiveLinkedService

func (odls ODataLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsHubspotLinkedService

func (odls ODataLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsImpalaLinkedService

func (odls ODataLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsJiraLinkedService

func (odls ODataLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsLinkedService

func (odls ODataLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsMagentoLinkedService

func (odls ODataLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsMariaDBLinkedService

func (odls ODataLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsMarketoLinkedService

func (odls ODataLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsMongoDbLinkedService

func (odls ODataLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsMySQLLinkedService

func (odls ODataLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsNetezzaLinkedService

func (odls ODataLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsODataLinkedService

func (odls ODataLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsOdbcLinkedService

func (odls ODataLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsOracleLinkedService

func (odls ODataLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsPaypalLinkedService

func (odls ODataLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsPhoenixLinkedService

func (odls ODataLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsPostgreSQLLinkedService

func (odls ODataLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsPrestoLinkedService

func (odls ODataLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsQuickBooksLinkedService

func (odls ODataLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsResponsysLinkedService

func (odls ODataLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsSQLServerLinkedService

func (odls ODataLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsSalesforceLinkedService

func (odls ODataLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsSalesforceMarketingCloudLinkedService

func (odls ODataLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsSapBWLinkedService

func (odls ODataLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsSapCloudForCustomerLinkedService

func (odls ODataLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsSapEccLinkedService

func (odls ODataLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsSapHanaLinkedService

func (odls ODataLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsServiceNowLinkedService

func (odls ODataLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsSftpServerLinkedService

func (odls ODataLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsShopifyLinkedService

func (odls ODataLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsSparkLinkedService

func (odls ODataLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsSquareLinkedService

func (odls ODataLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsSybaseLinkedService

func (odls ODataLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsTeradataLinkedService

func (odls ODataLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsVerticaLinkedService

func (odls ODataLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsWebLinkedService

func (odls ODataLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsXeroLinkedService

func (odls ODataLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) AsZohoLinkedService

func (odls ODataLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for ODataLinkedService.

func (ODataLinkedService) MarshalJSON

func (odls ODataLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ODataLinkedService.

func (*ODataLinkedService) UnmarshalJSON

func (odls *ODataLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ODataLinkedService struct.

type ODataLinkedServiceTypeProperties

type ODataLinkedServiceTypeProperties struct {
	// URL - The URL of the OData service endpoint. Type: string (or Expression with resultType string).
	URL interface{} `json:"url,omitempty"`
	// AuthenticationType - Type of authentication used to connect to the OData service. Possible values include: 'ODataAuthenticationTypeBasic', 'ODataAuthenticationTypeAnonymous'
	AuthenticationType ODataAuthenticationType `json:"authenticationType,omitempty"`
	// UserName - User name of the OData service. Type: string (or Expression with resultType string).
	UserName interface{} `json:"userName,omitempty"`
	// Password - Password of the OData service.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

ODataLinkedServiceTypeProperties oData linked service properties.

func (*ODataLinkedServiceTypeProperties) UnmarshalJSON

func (odlstp *ODataLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ODataLinkedServiceTypeProperties struct.

type ODataResourceDataset

type ODataResourceDataset struct {
	// ODataResourceDatasetTypeProperties - OData dataset properties.
	*ODataResourceDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

ODataResourceDataset the Open Data Protocol (OData) resource dataset.

func (ODataResourceDataset) AsAmazonMWSObjectDataset

func (odrd ODataResourceDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsAmazonS3Dataset

func (odrd ODataResourceDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsAzureBlobDataset

func (odrd ODataResourceDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsAzureDataLakeStoreDataset

func (odrd ODataResourceDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsAzureMySQLTableDataset

func (odrd ODataResourceDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsAzurePostgreSQLTableDataset

func (odrd ODataResourceDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsAzureSQLDWTableDataset

func (odrd ODataResourceDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsAzureSQLTableDataset

func (odrd ODataResourceDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsAzureSearchIndexDataset

func (odrd ODataResourceDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsAzureTableDataset

func (odrd ODataResourceDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsBasicDataset

func (odrd ODataResourceDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsCassandraTableDataset

func (odrd ODataResourceDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsConcurObjectDataset

func (odrd ODataResourceDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsCouchbaseTableDataset

func (odrd ODataResourceDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsCustomDataset

func (odrd ODataResourceDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsDataset

func (odrd ODataResourceDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsDocumentDbCollectionDataset

func (odrd ODataResourceDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsDrillTableDataset

func (odrd ODataResourceDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsDynamicsEntityDataset

func (odrd ODataResourceDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsEloquaObjectDataset

func (odrd ODataResourceDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsFileShareDataset

func (odrd ODataResourceDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsGoogleBigQueryObjectDataset

func (odrd ODataResourceDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsGreenplumTableDataset

func (odrd ODataResourceDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsHBaseObjectDataset

func (odrd ODataResourceDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsHTTPDataset

func (odrd ODataResourceDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsHiveObjectDataset

func (odrd ODataResourceDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsHubspotObjectDataset

func (odrd ODataResourceDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsImpalaObjectDataset

func (odrd ODataResourceDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsJiraObjectDataset

func (odrd ODataResourceDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsMagentoObjectDataset

func (odrd ODataResourceDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsMariaDBTableDataset

func (odrd ODataResourceDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsMarketoObjectDataset

func (odrd ODataResourceDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsMongoDbCollectionDataset

func (odrd ODataResourceDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsNetezzaTableDataset

func (odrd ODataResourceDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsODataResourceDataset

func (odrd ODataResourceDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsOracleTableDataset

func (odrd ODataResourceDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsPaypalObjectDataset

func (odrd ODataResourceDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsPhoenixObjectDataset

func (odrd ODataResourceDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsPrestoObjectDataset

func (odrd ODataResourceDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsQuickBooksObjectDataset

func (odrd ODataResourceDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsRelationalTableDataset

func (odrd ODataResourceDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsResponsysObjectDataset

func (odrd ODataResourceDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsSQLServerTableDataset

func (odrd ODataResourceDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsSalesforceMarketingCloudObjectDataset

func (odrd ODataResourceDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsSalesforceObjectDataset

func (odrd ODataResourceDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsSapCloudForCustomerResourceDataset

func (odrd ODataResourceDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsSapEccResourceDataset

func (odrd ODataResourceDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsServiceNowObjectDataset

func (odrd ODataResourceDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsShopifyObjectDataset

func (odrd ODataResourceDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsSparkObjectDataset

func (odrd ODataResourceDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsSquareObjectDataset

func (odrd ODataResourceDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsVerticaTableDataset

func (odrd ODataResourceDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsWebTableDataset

func (odrd ODataResourceDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsXeroObjectDataset

func (odrd ODataResourceDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) AsZohoObjectDataset

func (odrd ODataResourceDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for ODataResourceDataset.

func (ODataResourceDataset) MarshalJSON

func (odrd ODataResourceDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ODataResourceDataset.

func (*ODataResourceDataset) UnmarshalJSON

func (odrd *ODataResourceDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ODataResourceDataset struct.

type ODataResourceDatasetTypeProperties

type ODataResourceDatasetTypeProperties struct {
	// Path - The OData resource path. Type: string (or Expression with resultType string).
	Path interface{} `json:"path,omitempty"`
}

ODataResourceDatasetTypeProperties oData dataset properties.

type OdbcLinkedService

type OdbcLinkedService struct {
	// OdbcLinkedServiceTypeProperties - ODBC linked service properties.
	*OdbcLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

OdbcLinkedService open Database Connectivity (ODBC) linked service.

func (OdbcLinkedService) AsAmazonMWSLinkedService

func (ols OdbcLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAmazonRedshiftLinkedService

func (ols OdbcLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAmazonS3LinkedService

func (ols OdbcLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAzureBatchLinkedService

func (ols OdbcLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (ols OdbcLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAzureDataLakeStoreLinkedService

func (ols OdbcLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAzureDatabricksLinkedService

func (ols OdbcLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAzureKeyVaultLinkedService

func (ols OdbcLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAzureMLLinkedService

func (ols OdbcLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAzureMySQLLinkedService

func (ols OdbcLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAzurePostgreSQLLinkedService

func (ols OdbcLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAzureSQLDWLinkedService

func (ols OdbcLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAzureSQLDatabaseLinkedService

func (ols OdbcLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAzureSearchLinkedService

func (ols OdbcLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsAzureStorageLinkedService

func (ols OdbcLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsBasicLinkedService

func (ols OdbcLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsCassandraLinkedService

func (ols OdbcLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsConcurLinkedService

func (ols OdbcLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsCosmosDbLinkedService

func (ols OdbcLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsCouchbaseLinkedService

func (ols OdbcLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsCustomDataSourceLinkedService

func (ols OdbcLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsDb2LinkedService

func (ols OdbcLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsDrillLinkedService

func (ols OdbcLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsDynamicsLinkedService

func (ols OdbcLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsEloquaLinkedService

func (ols OdbcLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsFileServerLinkedService

func (ols OdbcLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsFtpServerLinkedService

func (ols OdbcLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsGoogleBigQueryLinkedService

func (ols OdbcLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsGreenplumLinkedService

func (ols OdbcLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsHBaseLinkedService

func (ols OdbcLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsHDInsightLinkedService

func (ols OdbcLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsHDInsightOnDemandLinkedService

func (ols OdbcLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsHTTPLinkedService

func (ols OdbcLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsHdfsLinkedService

func (ols OdbcLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsHiveLinkedService

func (ols OdbcLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsHubspotLinkedService

func (ols OdbcLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsImpalaLinkedService

func (ols OdbcLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsJiraLinkedService

func (ols OdbcLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsLinkedService

func (ols OdbcLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsMagentoLinkedService

func (ols OdbcLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsMariaDBLinkedService

func (ols OdbcLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsMarketoLinkedService

func (ols OdbcLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsMongoDbLinkedService

func (ols OdbcLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsMySQLLinkedService

func (ols OdbcLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsNetezzaLinkedService

func (ols OdbcLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsODataLinkedService

func (ols OdbcLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsOdbcLinkedService

func (ols OdbcLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsOracleLinkedService

func (ols OdbcLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsPaypalLinkedService

func (ols OdbcLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsPhoenixLinkedService

func (ols OdbcLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsPostgreSQLLinkedService

func (ols OdbcLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsPrestoLinkedService

func (ols OdbcLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsQuickBooksLinkedService

func (ols OdbcLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsResponsysLinkedService

func (ols OdbcLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsSQLServerLinkedService

func (ols OdbcLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsSalesforceLinkedService

func (ols OdbcLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsSalesforceMarketingCloudLinkedService

func (ols OdbcLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsSapBWLinkedService

func (ols OdbcLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsSapCloudForCustomerLinkedService

func (ols OdbcLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsSapEccLinkedService

func (ols OdbcLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsSapHanaLinkedService

func (ols OdbcLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsServiceNowLinkedService

func (ols OdbcLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsSftpServerLinkedService

func (ols OdbcLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsShopifyLinkedService

func (ols OdbcLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsSparkLinkedService

func (ols OdbcLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsSquareLinkedService

func (ols OdbcLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsSybaseLinkedService

func (ols OdbcLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsTeradataLinkedService

func (ols OdbcLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsVerticaLinkedService

func (ols OdbcLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsWebLinkedService

func (ols OdbcLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsXeroLinkedService

func (ols OdbcLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) AsZohoLinkedService

func (ols OdbcLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for OdbcLinkedService.

func (OdbcLinkedService) MarshalJSON

func (ols OdbcLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for OdbcLinkedService.

func (*OdbcLinkedService) UnmarshalJSON

func (ols *OdbcLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for OdbcLinkedService struct.

type OdbcLinkedServiceTypeProperties

type OdbcLinkedServiceTypeProperties struct {
	// ConnectionString - The non-access credential portion of the connection string as well as an optional encrypted credential.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// AuthenticationType - Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).
	AuthenticationType interface{} `json:"authenticationType,omitempty"`
	// Credential - The access credential portion of the connection string specified in driver-specific property-value format.
	Credential BasicSecretBase `json:"credential,omitempty"`
	// UserName - User name for Basic authentication. Type: string (or Expression with resultType string).
	UserName interface{} `json:"userName,omitempty"`
	// Password - Password for Basic authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

OdbcLinkedServiceTypeProperties ODBC linked service properties.

func (*OdbcLinkedServiceTypeProperties) UnmarshalJSON

func (olstp *OdbcLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for OdbcLinkedServiceTypeProperties struct.

type OdbcSink

type OdbcSink struct {
	// PreCopyScript - A query to execute before starting the copy. Type: string (or Expression with resultType string).
	PreCopyScript interface{} `json:"preCopyScript,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

OdbcSink a copy activity ODBC sink.

func (OdbcSink) AsAzureDataLakeStoreSink

func (osVar OdbcSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsAzureQueueSink

func (osVar OdbcSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsAzureSearchIndexSink

func (osVar OdbcSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsAzureTableSink

func (osVar OdbcSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsBasicCopySink

func (osVar OdbcSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsBlobSink

func (osVar OdbcSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsCopySink

func (osVar OdbcSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsDocumentDbCollectionSink

func (osVar OdbcSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsDynamicsSink

func (osVar OdbcSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsFileSystemSink

func (osVar OdbcSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsOdbcSink

func (osVar OdbcSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsOracleSink

func (osVar OdbcSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsSQLDWSink

func (osVar OdbcSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsSQLSink

func (osVar OdbcSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsSalesforceSink

func (osVar OdbcSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) AsSapCloudForCustomerSink

func (osVar OdbcSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for OdbcSink.

func (OdbcSink) MarshalJSON

func (osVar OdbcSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for OdbcSink.

type Operation

type Operation struct {
	// Name - Operation name: {provider}/{resource}/{operation}
	Name *string `json:"name,omitempty"`
	// Origin - The intended executor of the operation.
	Origin *string `json:"origin,omitempty"`
	// Display - Metadata associated with the operation.
	Display *OperationDisplay `json:"display,omitempty"`
	// OperationProperties - Additional details about the operation.
	*OperationProperties `json:"properties,omitempty"`
}

Operation azure Data Factory API operation definition.

func (Operation) MarshalJSON

func (o Operation) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for Operation.

func (*Operation) UnmarshalJSON

func (o *Operation) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for Operation struct.

type OperationDisplay

type OperationDisplay struct {
	// Description - The description of the operation.
	Description *string `json:"description,omitempty"`
	// Provider - The name of the provider.
	Provider *string `json:"provider,omitempty"`
	// Resource - The name of the resource type on which the operation is performed.
	Resource *string `json:"resource,omitempty"`
	// Operation - The type of operation: get, read, delete, etc.
	Operation *string `json:"operation,omitempty"`
}

OperationDisplay metadata associated with the operation.

type OperationListResponse

type OperationListResponse struct {
	autorest.Response `json:"-"`
	// Value - List of Data Factory operations supported by the Data Factory resource provider.
	Value *[]Operation `json:"value,omitempty"`
	// NextLink - The link to the next page of results, if any remaining results exist.
	NextLink *string `json:"nextLink,omitempty"`
}

OperationListResponse a list of operations that can be performed by the Data Factory service.

type OperationLogSpecification

type OperationLogSpecification struct {
	// Name - The name of the log category.
	Name *string `json:"name,omitempty"`
	// DisplayName - Localized display name.
	DisplayName *string `json:"displayName,omitempty"`
	// BlobDuration - Blobs created in the customer storage account, per hour.
	BlobDuration *string `json:"blobDuration,omitempty"`
}

OperationLogSpecification details about an operation related to logs.

type OperationMetricAvailability

type OperationMetricAvailability struct {
	// TimeGrain - The granularity for the metric.
	TimeGrain *string `json:"timeGrain,omitempty"`
	// BlobDuration - Blob created in the customer storage account, per hour.
	BlobDuration *string `json:"blobDuration,omitempty"`
}

OperationMetricAvailability defines how often data for a metric becomes available.

type OperationMetricSpecification

type OperationMetricSpecification struct {
	// Name - The name of the metric.
	Name *string `json:"name,omitempty"`
	// DisplayName - Localized display name of the metric.
	DisplayName *string `json:"displayName,omitempty"`
	// DisplayDescription - The description of the metric.
	DisplayDescription *string `json:"displayDescription,omitempty"`
	// Unit - The unit that the metric is measured in.
	Unit *string `json:"unit,omitempty"`
	// AggregationType - The type of metric aggregation.
	AggregationType *string `json:"aggregationType,omitempty"`
	// EnableRegionalMdmAccount - Whether or not the service is using regional MDM accounts.
	EnableRegionalMdmAccount *string `json:"enableRegionalMdmAccount,omitempty"`
	// SourceMdmAccount - The name of the MDM account.
	SourceMdmAccount *string `json:"sourceMdmAccount,omitempty"`
	// SourceMdmNamespace - The name of the MDM namespace.
	SourceMdmNamespace *string `json:"sourceMdmNamespace,omitempty"`
	// Availabilities - Defines how often data for metrics becomes available.
	Availabilities *[]OperationMetricAvailability `json:"availabilities,omitempty"`
}

OperationMetricSpecification details about an operation related to metrics.

type OperationProperties

type OperationProperties struct {
	// ServiceSpecification - Details about a service operation.
	ServiceSpecification *OperationServiceSpecification `json:"serviceSpecification,omitempty"`
}

OperationProperties additional details about an operation.

type OperationServiceSpecification

type OperationServiceSpecification struct {
	// LogSpecifications - Details about operations related to logs.
	LogSpecifications *[]OperationLogSpecification `json:"logSpecifications,omitempty"`
	// MetricSpecifications - Details about operations related to metrics.
	MetricSpecifications *[]OperationMetricSpecification `json:"metricSpecifications,omitempty"`
}

OperationServiceSpecification details about a service operation.

type OperationsClient

type OperationsClient struct {
	BaseClient
}

OperationsClient is the the Azure Data Factory V2 management API provides a RESTful set of web services that interact with Azure Data Factory V2 services.

func NewOperationsClient

func NewOperationsClient(subscriptionID string) OperationsClient

NewOperationsClient creates an instance of the OperationsClient client.

func NewOperationsClientWithBaseURI

func NewOperationsClientWithBaseURI(baseURI string, subscriptionID string) OperationsClient

NewOperationsClientWithBaseURI creates an instance of the OperationsClient client.

func (OperationsClient) List

func (client OperationsClient) List(ctx context.Context) (result OperationListResponse, err error)

List lists the available Azure Data Factory API operations.

func (OperationsClient) ListPreparer

func (client OperationsClient) ListPreparer(ctx context.Context) (*http.Request, error)

ListPreparer prepares the List request.

func (OperationsClient) ListResponder

func (client OperationsClient) ListResponder(resp *http.Response) (result OperationListResponse, err error)

ListResponder handles the response to the List request. The method always closes the http.Response Body.

func (OperationsClient) ListSender

func (client OperationsClient) ListSender(req *http.Request) (*http.Response, error)

ListSender sends the List request. The method will close the http.Response Body if it receives an error.

type OracleLinkedService

type OracleLinkedService struct {
	// OracleLinkedServiceTypeProperties - Oracle database linked service properties.
	*OracleLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

OracleLinkedService oracle database.

func (OracleLinkedService) AsAmazonMWSLinkedService

func (ols OracleLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAmazonRedshiftLinkedService

func (ols OracleLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAmazonS3LinkedService

func (ols OracleLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAzureBatchLinkedService

func (ols OracleLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (ols OracleLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAzureDataLakeStoreLinkedService

func (ols OracleLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAzureDatabricksLinkedService

func (ols OracleLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAzureKeyVaultLinkedService

func (ols OracleLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAzureMLLinkedService

func (ols OracleLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAzureMySQLLinkedService

func (ols OracleLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAzurePostgreSQLLinkedService

func (ols OracleLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAzureSQLDWLinkedService

func (ols OracleLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAzureSQLDatabaseLinkedService

func (ols OracleLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAzureSearchLinkedService

func (ols OracleLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsAzureStorageLinkedService

func (ols OracleLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsBasicLinkedService

func (ols OracleLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsCassandraLinkedService

func (ols OracleLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsConcurLinkedService

func (ols OracleLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsCosmosDbLinkedService

func (ols OracleLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsCouchbaseLinkedService

func (ols OracleLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsCustomDataSourceLinkedService

func (ols OracleLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsDb2LinkedService

func (ols OracleLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsDrillLinkedService

func (ols OracleLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsDynamicsLinkedService

func (ols OracleLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsEloquaLinkedService

func (ols OracleLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsFileServerLinkedService

func (ols OracleLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsFtpServerLinkedService

func (ols OracleLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsGoogleBigQueryLinkedService

func (ols OracleLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsGreenplumLinkedService

func (ols OracleLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsHBaseLinkedService

func (ols OracleLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsHDInsightLinkedService

func (ols OracleLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsHDInsightOnDemandLinkedService

func (ols OracleLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsHTTPLinkedService

func (ols OracleLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsHdfsLinkedService

func (ols OracleLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsHiveLinkedService

func (ols OracleLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsHubspotLinkedService

func (ols OracleLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsImpalaLinkedService

func (ols OracleLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsJiraLinkedService

func (ols OracleLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsLinkedService

func (ols OracleLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsMagentoLinkedService

func (ols OracleLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsMariaDBLinkedService

func (ols OracleLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsMarketoLinkedService

func (ols OracleLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsMongoDbLinkedService

func (ols OracleLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsMySQLLinkedService

func (ols OracleLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsNetezzaLinkedService

func (ols OracleLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsODataLinkedService

func (ols OracleLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsOdbcLinkedService

func (ols OracleLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsOracleLinkedService

func (ols OracleLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsPaypalLinkedService

func (ols OracleLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsPhoenixLinkedService

func (ols OracleLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsPostgreSQLLinkedService

func (ols OracleLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsPrestoLinkedService

func (ols OracleLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsQuickBooksLinkedService

func (ols OracleLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsResponsysLinkedService

func (ols OracleLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsSQLServerLinkedService

func (ols OracleLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsSalesforceLinkedService

func (ols OracleLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsSalesforceMarketingCloudLinkedService

func (ols OracleLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsSapBWLinkedService

func (ols OracleLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsSapCloudForCustomerLinkedService

func (ols OracleLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsSapEccLinkedService

func (ols OracleLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsSapHanaLinkedService

func (ols OracleLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsServiceNowLinkedService

func (ols OracleLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsSftpServerLinkedService

func (ols OracleLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsShopifyLinkedService

func (ols OracleLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsSparkLinkedService

func (ols OracleLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsSquareLinkedService

func (ols OracleLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsSybaseLinkedService

func (ols OracleLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsTeradataLinkedService

func (ols OracleLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsVerticaLinkedService

func (ols OracleLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsWebLinkedService

func (ols OracleLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsXeroLinkedService

func (ols OracleLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) AsZohoLinkedService

func (ols OracleLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for OracleLinkedService.

func (OracleLinkedService) MarshalJSON

func (ols OracleLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for OracleLinkedService.

func (*OracleLinkedService) UnmarshalJSON

func (ols *OracleLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for OracleLinkedService struct.

type OracleLinkedServiceTypeProperties

type OracleLinkedServiceTypeProperties struct {
	// ConnectionString - The connection string.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

OracleLinkedServiceTypeProperties oracle database linked service properties.

func (*OracleLinkedServiceTypeProperties) UnmarshalJSON

func (olstp *OracleLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for OracleLinkedServiceTypeProperties struct.

type OracleSink

type OracleSink struct {
	// PreCopyScript - SQL pre-copy script. Type: string (or Expression with resultType string).
	PreCopyScript interface{} `json:"preCopyScript,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

OracleSink a copy activity Oracle sink.

func (OracleSink) AsAzureDataLakeStoreSink

func (osVar OracleSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsAzureQueueSink

func (osVar OracleSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsAzureSearchIndexSink

func (osVar OracleSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsAzureTableSink

func (osVar OracleSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsBasicCopySink

func (osVar OracleSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsBlobSink

func (osVar OracleSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsCopySink

func (osVar OracleSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsDocumentDbCollectionSink

func (osVar OracleSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsDynamicsSink

func (osVar OracleSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsFileSystemSink

func (osVar OracleSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsOdbcSink

func (osVar OracleSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsOracleSink

func (osVar OracleSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsSQLDWSink

func (osVar OracleSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsSQLSink

func (osVar OracleSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsSalesforceSink

func (osVar OracleSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) AsSapCloudForCustomerSink

func (osVar OracleSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for OracleSink.

func (OracleSink) MarshalJSON

func (osVar OracleSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for OracleSink.

type OracleSource

type OracleSource struct {
	// OracleReaderQuery - Oracle reader query. Type: string (or Expression with resultType string).
	OracleReaderQuery interface{} `json:"oracleReaderQuery,omitempty"`
	// QueryTimeout - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	QueryTimeout interface{} `json:"queryTimeout,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

OracleSource a copy activity Oracle source.

func (OracleSource) AsAmazonMWSSource

func (osVar OracleSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsAmazonRedshiftSource

func (osVar OracleSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsAzureDataLakeStoreSource

func (osVar OracleSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsAzureMySQLSource

func (osVar OracleSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsAzurePostgreSQLSource

func (osVar OracleSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsAzureTableSource

func (osVar OracleSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsBasicCopySource

func (osVar OracleSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsBlobSource

func (osVar OracleSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsCassandraSource

func (osVar OracleSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsConcurSource

func (osVar OracleSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsCopySource

func (osVar OracleSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsCouchbaseSource

func (osVar OracleSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsDocumentDbCollectionSource

func (osVar OracleSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsDrillSource

func (osVar OracleSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsDynamicsSource

func (osVar OracleSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsEloquaSource

func (osVar OracleSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsFileSystemSource

func (osVar OracleSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsGoogleBigQuerySource

func (osVar OracleSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsGreenplumSource

func (osVar OracleSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsHBaseSource

func (osVar OracleSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsHTTPSource

func (osVar OracleSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsHdfsSource

func (osVar OracleSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsHiveSource

func (osVar OracleSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsHubspotSource

func (osVar OracleSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsImpalaSource

func (osVar OracleSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsJiraSource

func (osVar OracleSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsMagentoSource

func (osVar OracleSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsMariaDBSource

func (osVar OracleSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsMarketoSource

func (osVar OracleSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsMongoDbSource

func (osVar OracleSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsNetezzaSource

func (osVar OracleSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsOracleSource

func (osVar OracleSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsPaypalSource

func (osVar OracleSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsPhoenixSource

func (osVar OracleSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsPrestoSource

func (osVar OracleSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsQuickBooksSource

func (osVar OracleSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsRelationalSource

func (osVar OracleSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsResponsysSource

func (osVar OracleSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsSQLDWSource

func (osVar OracleSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsSQLSource

func (osVar OracleSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsSalesforceMarketingCloudSource

func (osVar OracleSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsSalesforceSource

func (osVar OracleSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsSapCloudForCustomerSource

func (osVar OracleSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsSapEccSource

func (osVar OracleSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsServiceNowSource

func (osVar OracleSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsShopifySource

func (osVar OracleSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsSparkSource

func (osVar OracleSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsSquareSource

func (osVar OracleSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsVerticaSource

func (osVar OracleSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsWebSource

func (osVar OracleSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsXeroSource

func (osVar OracleSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) AsZohoSource

func (osVar OracleSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for OracleSource.

func (OracleSource) MarshalJSON

func (osVar OracleSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for OracleSource.

type OracleTableDataset

type OracleTableDataset struct {
	// OracleTableDatasetTypeProperties - On-premises Oracle dataset properties.
	*OracleTableDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

OracleTableDataset the on-premises Oracle database dataset.

func (OracleTableDataset) AsAmazonMWSObjectDataset

func (otd OracleTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsAmazonS3Dataset

func (otd OracleTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsAzureBlobDataset

func (otd OracleTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsAzureDataLakeStoreDataset

func (otd OracleTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsAzureMySQLTableDataset

func (otd OracleTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsAzurePostgreSQLTableDataset

func (otd OracleTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsAzureSQLDWTableDataset

func (otd OracleTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsAzureSQLTableDataset

func (otd OracleTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsAzureSearchIndexDataset

func (otd OracleTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsAzureTableDataset

func (otd OracleTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsBasicDataset

func (otd OracleTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsCassandraTableDataset

func (otd OracleTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsConcurObjectDataset

func (otd OracleTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsCouchbaseTableDataset

func (otd OracleTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsCustomDataset

func (otd OracleTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsDataset

func (otd OracleTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsDocumentDbCollectionDataset

func (otd OracleTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsDrillTableDataset

func (otd OracleTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsDynamicsEntityDataset

func (otd OracleTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsEloquaObjectDataset

func (otd OracleTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsFileShareDataset

func (otd OracleTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsGoogleBigQueryObjectDataset

func (otd OracleTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsGreenplumTableDataset

func (otd OracleTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsHBaseObjectDataset

func (otd OracleTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsHTTPDataset

func (otd OracleTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsHiveObjectDataset

func (otd OracleTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsHubspotObjectDataset

func (otd OracleTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsImpalaObjectDataset

func (otd OracleTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsJiraObjectDataset

func (otd OracleTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsMagentoObjectDataset

func (otd OracleTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsMariaDBTableDataset

func (otd OracleTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsMarketoObjectDataset

func (otd OracleTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsMongoDbCollectionDataset

func (otd OracleTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsNetezzaTableDataset

func (otd OracleTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsODataResourceDataset

func (otd OracleTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsOracleTableDataset

func (otd OracleTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsPaypalObjectDataset

func (otd OracleTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsPhoenixObjectDataset

func (otd OracleTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsPrestoObjectDataset

func (otd OracleTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsQuickBooksObjectDataset

func (otd OracleTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsRelationalTableDataset

func (otd OracleTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsResponsysObjectDataset

func (otd OracleTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsSQLServerTableDataset

func (otd OracleTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsSalesforceMarketingCloudObjectDataset

func (otd OracleTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsSalesforceObjectDataset

func (otd OracleTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsSapCloudForCustomerResourceDataset

func (otd OracleTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsSapEccResourceDataset

func (otd OracleTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsServiceNowObjectDataset

func (otd OracleTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsShopifyObjectDataset

func (otd OracleTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsSparkObjectDataset

func (otd OracleTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsSquareObjectDataset

func (otd OracleTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsVerticaTableDataset

func (otd OracleTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsWebTableDataset

func (otd OracleTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsXeroObjectDataset

func (otd OracleTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) AsZohoObjectDataset

func (otd OracleTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for OracleTableDataset.

func (OracleTableDataset) MarshalJSON

func (otd OracleTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for OracleTableDataset.

func (*OracleTableDataset) UnmarshalJSON

func (otd *OracleTableDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for OracleTableDataset struct.

type OracleTableDatasetTypeProperties

type OracleTableDatasetTypeProperties struct {
	// TableName - The table name of the on-premises Oracle database. Type: string (or Expression with resultType string).
	TableName interface{} `json:"tableName,omitempty"`
}

OracleTableDatasetTypeProperties on-premises Oracle dataset properties.

type OrcFormat

type OrcFormat struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Serializer - Serializer. Type: string (or Expression with resultType string).
	Serializer interface{} `json:"serializer,omitempty"`
	// Deserializer - Deserializer. Type: string (or Expression with resultType string).
	Deserializer interface{} `json:"deserializer,omitempty"`
	// Type - Possible values include: 'TypeDatasetStorageFormat', 'TypeParquetFormat', 'TypeOrcFormat', 'TypeAvroFormat', 'TypeJSONFormat', 'TypeTextFormat'
	Type TypeBasicDatasetStorageFormat `json:"type,omitempty"`
}

OrcFormat the data stored in Optimized Row Columnar (ORC) format.

func (OrcFormat) AsAvroFormat

func (of OrcFormat) AsAvroFormat() (*AvroFormat, bool)

AsAvroFormat is the BasicDatasetStorageFormat implementation for OrcFormat.

func (OrcFormat) AsBasicDatasetStorageFormat

func (of OrcFormat) AsBasicDatasetStorageFormat() (BasicDatasetStorageFormat, bool)

AsBasicDatasetStorageFormat is the BasicDatasetStorageFormat implementation for OrcFormat.

func (OrcFormat) AsDatasetStorageFormat

func (of OrcFormat) AsDatasetStorageFormat() (*DatasetStorageFormat, bool)

AsDatasetStorageFormat is the BasicDatasetStorageFormat implementation for OrcFormat.

func (OrcFormat) AsJSONFormat

func (of OrcFormat) AsJSONFormat() (*JSONFormat, bool)

AsJSONFormat is the BasicDatasetStorageFormat implementation for OrcFormat.

func (OrcFormat) AsOrcFormat

func (of OrcFormat) AsOrcFormat() (*OrcFormat, bool)

AsOrcFormat is the BasicDatasetStorageFormat implementation for OrcFormat.

func (OrcFormat) AsParquetFormat

func (of OrcFormat) AsParquetFormat() (*ParquetFormat, bool)

AsParquetFormat is the BasicDatasetStorageFormat implementation for OrcFormat.

func (OrcFormat) AsTextFormat

func (of OrcFormat) AsTextFormat() (*TextFormat, bool)

AsTextFormat is the BasicDatasetStorageFormat implementation for OrcFormat.

func (OrcFormat) MarshalJSON

func (of OrcFormat) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for OrcFormat.

type ParameterSpecification

type ParameterSpecification struct {
	// Type - Parameter type. Possible values include: 'ParameterTypeObject', 'ParameterTypeString', 'ParameterTypeInt', 'ParameterTypeFloat', 'ParameterTypeBool', 'ParameterTypeArray', 'ParameterTypeSecureString'
	Type ParameterType `json:"type,omitempty"`
	// DefaultValue - Default value of parameter.
	DefaultValue interface{} `json:"defaultValue,omitempty"`
}

ParameterSpecification definition of a single parameter for an entity.

type ParameterType

type ParameterType string

ParameterType enumerates the values for parameter type.

const (
	// ParameterTypeArray ...
	ParameterTypeArray ParameterType = "Array"
	// ParameterTypeBool ...
	ParameterTypeBool ParameterType = "Bool"
	// ParameterTypeFloat ...
	ParameterTypeFloat ParameterType = "Float"
	// ParameterTypeInt ...
	ParameterTypeInt ParameterType = "Int"
	// ParameterTypeObject ...
	ParameterTypeObject ParameterType = "Object"
	// ParameterTypeSecureString ...
	ParameterTypeSecureString ParameterType = "SecureString"
	// ParameterTypeString ...
	ParameterTypeString ParameterType = "String"
)

func PossibleParameterTypeValues

func PossibleParameterTypeValues() []ParameterType

PossibleParameterTypeValues returns an array of possible values for the ParameterType const type.

type ParquetFormat

type ParquetFormat struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Serializer - Serializer. Type: string (or Expression with resultType string).
	Serializer interface{} `json:"serializer,omitempty"`
	// Deserializer - Deserializer. Type: string (or Expression with resultType string).
	Deserializer interface{} `json:"deserializer,omitempty"`
	// Type - Possible values include: 'TypeDatasetStorageFormat', 'TypeParquetFormat', 'TypeOrcFormat', 'TypeAvroFormat', 'TypeJSONFormat', 'TypeTextFormat'
	Type TypeBasicDatasetStorageFormat `json:"type,omitempty"`
}

ParquetFormat the data stored in Parquet format.

func (ParquetFormat) AsAvroFormat

func (pf ParquetFormat) AsAvroFormat() (*AvroFormat, bool)

AsAvroFormat is the BasicDatasetStorageFormat implementation for ParquetFormat.

func (ParquetFormat) AsBasicDatasetStorageFormat

func (pf ParquetFormat) AsBasicDatasetStorageFormat() (BasicDatasetStorageFormat, bool)

AsBasicDatasetStorageFormat is the BasicDatasetStorageFormat implementation for ParquetFormat.

func (ParquetFormat) AsDatasetStorageFormat

func (pf ParquetFormat) AsDatasetStorageFormat() (*DatasetStorageFormat, bool)

AsDatasetStorageFormat is the BasicDatasetStorageFormat implementation for ParquetFormat.

func (ParquetFormat) AsJSONFormat

func (pf ParquetFormat) AsJSONFormat() (*JSONFormat, bool)

AsJSONFormat is the BasicDatasetStorageFormat implementation for ParquetFormat.

func (ParquetFormat) AsOrcFormat

func (pf ParquetFormat) AsOrcFormat() (*OrcFormat, bool)

AsOrcFormat is the BasicDatasetStorageFormat implementation for ParquetFormat.

func (ParquetFormat) AsParquetFormat

func (pf ParquetFormat) AsParquetFormat() (*ParquetFormat, bool)

AsParquetFormat is the BasicDatasetStorageFormat implementation for ParquetFormat.

func (ParquetFormat) AsTextFormat

func (pf ParquetFormat) AsTextFormat() (*TextFormat, bool)

AsTextFormat is the BasicDatasetStorageFormat implementation for ParquetFormat.

func (ParquetFormat) MarshalJSON

func (pf ParquetFormat) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ParquetFormat.

type PaypalLinkedService

type PaypalLinkedService struct {
	// PaypalLinkedServiceTypeProperties - Paypal Serivce linked service properties.
	*PaypalLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

PaypalLinkedService paypal Serivce linked service.

func (PaypalLinkedService) AsAmazonMWSLinkedService

func (pls PaypalLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAmazonRedshiftLinkedService

func (pls PaypalLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAmazonS3LinkedService

func (pls PaypalLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAzureBatchLinkedService

func (pls PaypalLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (pls PaypalLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAzureDataLakeStoreLinkedService

func (pls PaypalLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAzureDatabricksLinkedService

func (pls PaypalLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAzureKeyVaultLinkedService

func (pls PaypalLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAzureMLLinkedService

func (pls PaypalLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAzureMySQLLinkedService

func (pls PaypalLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAzurePostgreSQLLinkedService

func (pls PaypalLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAzureSQLDWLinkedService

func (pls PaypalLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAzureSQLDatabaseLinkedService

func (pls PaypalLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAzureSearchLinkedService

func (pls PaypalLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsAzureStorageLinkedService

func (pls PaypalLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsBasicLinkedService

func (pls PaypalLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsCassandraLinkedService

func (pls PaypalLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsConcurLinkedService

func (pls PaypalLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsCosmosDbLinkedService

func (pls PaypalLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsCouchbaseLinkedService

func (pls PaypalLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsCustomDataSourceLinkedService

func (pls PaypalLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsDb2LinkedService

func (pls PaypalLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsDrillLinkedService

func (pls PaypalLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsDynamicsLinkedService

func (pls PaypalLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsEloquaLinkedService

func (pls PaypalLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsFileServerLinkedService

func (pls PaypalLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsFtpServerLinkedService

func (pls PaypalLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsGoogleBigQueryLinkedService

func (pls PaypalLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsGreenplumLinkedService

func (pls PaypalLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsHBaseLinkedService

func (pls PaypalLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsHDInsightLinkedService

func (pls PaypalLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsHDInsightOnDemandLinkedService

func (pls PaypalLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsHTTPLinkedService

func (pls PaypalLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsHdfsLinkedService

func (pls PaypalLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsHiveLinkedService

func (pls PaypalLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsHubspotLinkedService

func (pls PaypalLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsImpalaLinkedService

func (pls PaypalLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsJiraLinkedService

func (pls PaypalLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsLinkedService

func (pls PaypalLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsMagentoLinkedService

func (pls PaypalLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsMariaDBLinkedService

func (pls PaypalLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsMarketoLinkedService

func (pls PaypalLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsMongoDbLinkedService

func (pls PaypalLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsMySQLLinkedService

func (pls PaypalLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsNetezzaLinkedService

func (pls PaypalLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsODataLinkedService

func (pls PaypalLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsOdbcLinkedService

func (pls PaypalLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsOracleLinkedService

func (pls PaypalLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsPaypalLinkedService

func (pls PaypalLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsPhoenixLinkedService

func (pls PaypalLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsPostgreSQLLinkedService

func (pls PaypalLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsPrestoLinkedService

func (pls PaypalLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsQuickBooksLinkedService

func (pls PaypalLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsResponsysLinkedService

func (pls PaypalLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsSQLServerLinkedService

func (pls PaypalLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsSalesforceLinkedService

func (pls PaypalLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsSalesforceMarketingCloudLinkedService

func (pls PaypalLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsSapBWLinkedService

func (pls PaypalLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsSapCloudForCustomerLinkedService

func (pls PaypalLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsSapEccLinkedService

func (pls PaypalLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsSapHanaLinkedService

func (pls PaypalLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsServiceNowLinkedService

func (pls PaypalLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsSftpServerLinkedService

func (pls PaypalLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsShopifyLinkedService

func (pls PaypalLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsSparkLinkedService

func (pls PaypalLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsSquareLinkedService

func (pls PaypalLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsSybaseLinkedService

func (pls PaypalLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsTeradataLinkedService

func (pls PaypalLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsVerticaLinkedService

func (pls PaypalLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsWebLinkedService

func (pls PaypalLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsXeroLinkedService

func (pls PaypalLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) AsZohoLinkedService

func (pls PaypalLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for PaypalLinkedService.

func (PaypalLinkedService) MarshalJSON

func (pls PaypalLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for PaypalLinkedService.

func (*PaypalLinkedService) UnmarshalJSON

func (pls *PaypalLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for PaypalLinkedService struct.

type PaypalLinkedServiceTypeProperties

type PaypalLinkedServiceTypeProperties struct {
	// Host - The URL of the PayPal instance. (i.e. api.sandbox.paypal.com)
	Host interface{} `json:"host,omitempty"`
	// ClientID - The client ID associated with your PayPal application.
	ClientID interface{} `json:"clientId,omitempty"`
	// ClientSecret - The client secret associated with your PayPal application.
	ClientSecret BasicSecretBase `json:"clientSecret,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

PaypalLinkedServiceTypeProperties paypal Serivce linked service properties.

func (*PaypalLinkedServiceTypeProperties) UnmarshalJSON

func (plstp *PaypalLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for PaypalLinkedServiceTypeProperties struct.

type PaypalObjectDataset

type PaypalObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

PaypalObjectDataset paypal Serivce dataset.

func (PaypalObjectDataset) AsAmazonMWSObjectDataset

func (pod PaypalObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsAmazonS3Dataset

func (pod PaypalObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsAzureBlobDataset

func (pod PaypalObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsAzureDataLakeStoreDataset

func (pod PaypalObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsAzureMySQLTableDataset

func (pod PaypalObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsAzurePostgreSQLTableDataset

func (pod PaypalObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsAzureSQLDWTableDataset

func (pod PaypalObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsAzureSQLTableDataset

func (pod PaypalObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsAzureSearchIndexDataset

func (pod PaypalObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsAzureTableDataset

func (pod PaypalObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsBasicDataset

func (pod PaypalObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsCassandraTableDataset

func (pod PaypalObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsConcurObjectDataset

func (pod PaypalObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsCouchbaseTableDataset

func (pod PaypalObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsCustomDataset

func (pod PaypalObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsDataset

func (pod PaypalObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsDocumentDbCollectionDataset

func (pod PaypalObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsDrillTableDataset

func (pod PaypalObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsDynamicsEntityDataset

func (pod PaypalObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsEloquaObjectDataset

func (pod PaypalObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsFileShareDataset

func (pod PaypalObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsGoogleBigQueryObjectDataset

func (pod PaypalObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsGreenplumTableDataset

func (pod PaypalObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsHBaseObjectDataset

func (pod PaypalObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsHTTPDataset

func (pod PaypalObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsHiveObjectDataset

func (pod PaypalObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsHubspotObjectDataset

func (pod PaypalObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsImpalaObjectDataset

func (pod PaypalObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsJiraObjectDataset

func (pod PaypalObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsMagentoObjectDataset

func (pod PaypalObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsMariaDBTableDataset

func (pod PaypalObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsMarketoObjectDataset

func (pod PaypalObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsMongoDbCollectionDataset

func (pod PaypalObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsNetezzaTableDataset

func (pod PaypalObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsODataResourceDataset

func (pod PaypalObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsOracleTableDataset

func (pod PaypalObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsPaypalObjectDataset

func (pod PaypalObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsPhoenixObjectDataset

func (pod PaypalObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsPrestoObjectDataset

func (pod PaypalObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsQuickBooksObjectDataset

func (pod PaypalObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsRelationalTableDataset

func (pod PaypalObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsResponsysObjectDataset

func (pod PaypalObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsSQLServerTableDataset

func (pod PaypalObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (pod PaypalObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsSalesforceObjectDataset

func (pod PaypalObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsSapCloudForCustomerResourceDataset

func (pod PaypalObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsSapEccResourceDataset

func (pod PaypalObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsServiceNowObjectDataset

func (pod PaypalObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsShopifyObjectDataset

func (pod PaypalObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsSparkObjectDataset

func (pod PaypalObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsSquareObjectDataset

func (pod PaypalObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsVerticaTableDataset

func (pod PaypalObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsWebTableDataset

func (pod PaypalObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsXeroObjectDataset

func (pod PaypalObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) AsZohoObjectDataset

func (pod PaypalObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for PaypalObjectDataset.

func (PaypalObjectDataset) MarshalJSON

func (pod PaypalObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for PaypalObjectDataset.

type PaypalSource

type PaypalSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

PaypalSource a copy activity Paypal Serivce source.

func (PaypalSource) AsAmazonMWSSource

func (ps PaypalSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsAmazonRedshiftSource

func (ps PaypalSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsAzureDataLakeStoreSource

func (ps PaypalSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsAzureMySQLSource

func (ps PaypalSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsAzurePostgreSQLSource

func (ps PaypalSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsAzureTableSource

func (ps PaypalSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsBasicCopySource

func (ps PaypalSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsBlobSource

func (ps PaypalSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsCassandraSource

func (ps PaypalSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsConcurSource

func (ps PaypalSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsCopySource

func (ps PaypalSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsCouchbaseSource

func (ps PaypalSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsDocumentDbCollectionSource

func (ps PaypalSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsDrillSource

func (ps PaypalSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsDynamicsSource

func (ps PaypalSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsEloquaSource

func (ps PaypalSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsFileSystemSource

func (ps PaypalSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsGoogleBigQuerySource

func (ps PaypalSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsGreenplumSource

func (ps PaypalSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsHBaseSource

func (ps PaypalSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsHTTPSource

func (ps PaypalSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsHdfsSource

func (ps PaypalSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsHiveSource

func (ps PaypalSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsHubspotSource

func (ps PaypalSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsImpalaSource

func (ps PaypalSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsJiraSource

func (ps PaypalSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsMagentoSource

func (ps PaypalSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsMariaDBSource

func (ps PaypalSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsMarketoSource

func (ps PaypalSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsMongoDbSource

func (ps PaypalSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsNetezzaSource

func (ps PaypalSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsOracleSource

func (ps PaypalSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsPaypalSource

func (ps PaypalSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsPhoenixSource

func (ps PaypalSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsPrestoSource

func (ps PaypalSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsQuickBooksSource

func (ps PaypalSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsRelationalSource

func (ps PaypalSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsResponsysSource

func (ps PaypalSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsSQLDWSource

func (ps PaypalSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsSQLSource

func (ps PaypalSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsSalesforceMarketingCloudSource

func (ps PaypalSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsSalesforceSource

func (ps PaypalSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsSapCloudForCustomerSource

func (ps PaypalSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsSapEccSource

func (ps PaypalSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsServiceNowSource

func (ps PaypalSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsShopifySource

func (ps PaypalSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsSparkSource

func (ps PaypalSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsSquareSource

func (ps PaypalSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsVerticaSource

func (ps PaypalSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsWebSource

func (ps PaypalSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsXeroSource

func (ps PaypalSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) AsZohoSource

func (ps PaypalSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for PaypalSource.

func (PaypalSource) MarshalJSON

func (ps PaypalSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for PaypalSource.

type PhoenixAuthenticationType

type PhoenixAuthenticationType string

PhoenixAuthenticationType enumerates the values for phoenix authentication type.

const (
	// PhoenixAuthenticationTypeAnonymous ...
	PhoenixAuthenticationTypeAnonymous PhoenixAuthenticationType = "Anonymous"
	// PhoenixAuthenticationTypeUsernameAndPassword ...
	PhoenixAuthenticationTypeUsernameAndPassword PhoenixAuthenticationType = "UsernameAndPassword"
	// PhoenixAuthenticationTypeWindowsAzureHDInsightService ...
	PhoenixAuthenticationTypeWindowsAzureHDInsightService PhoenixAuthenticationType = "WindowsAzureHDInsightService"
)

func PossiblePhoenixAuthenticationTypeValues

func PossiblePhoenixAuthenticationTypeValues() []PhoenixAuthenticationType

PossiblePhoenixAuthenticationTypeValues returns an array of possible values for the PhoenixAuthenticationType const type.

type PhoenixLinkedService

type PhoenixLinkedService struct {
	// PhoenixLinkedServiceTypeProperties - Phoenix server linked service properties.
	*PhoenixLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

PhoenixLinkedService phoenix server linked service.

func (PhoenixLinkedService) AsAmazonMWSLinkedService

func (pls PhoenixLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAmazonRedshiftLinkedService

func (pls PhoenixLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAmazonS3LinkedService

func (pls PhoenixLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAzureBatchLinkedService

func (pls PhoenixLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (pls PhoenixLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAzureDataLakeStoreLinkedService

func (pls PhoenixLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAzureDatabricksLinkedService

func (pls PhoenixLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAzureKeyVaultLinkedService

func (pls PhoenixLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAzureMLLinkedService

func (pls PhoenixLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAzureMySQLLinkedService

func (pls PhoenixLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAzurePostgreSQLLinkedService

func (pls PhoenixLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAzureSQLDWLinkedService

func (pls PhoenixLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAzureSQLDatabaseLinkedService

func (pls PhoenixLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAzureSearchLinkedService

func (pls PhoenixLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsAzureStorageLinkedService

func (pls PhoenixLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsBasicLinkedService

func (pls PhoenixLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsCassandraLinkedService

func (pls PhoenixLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsConcurLinkedService

func (pls PhoenixLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsCosmosDbLinkedService

func (pls PhoenixLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsCouchbaseLinkedService

func (pls PhoenixLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsCustomDataSourceLinkedService

func (pls PhoenixLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsDb2LinkedService

func (pls PhoenixLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsDrillLinkedService

func (pls PhoenixLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsDynamicsLinkedService

func (pls PhoenixLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsEloquaLinkedService

func (pls PhoenixLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsFileServerLinkedService

func (pls PhoenixLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsFtpServerLinkedService

func (pls PhoenixLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsGoogleBigQueryLinkedService

func (pls PhoenixLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsGreenplumLinkedService

func (pls PhoenixLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsHBaseLinkedService

func (pls PhoenixLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsHDInsightLinkedService

func (pls PhoenixLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsHDInsightOnDemandLinkedService

func (pls PhoenixLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsHTTPLinkedService

func (pls PhoenixLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsHdfsLinkedService

func (pls PhoenixLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsHiveLinkedService

func (pls PhoenixLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsHubspotLinkedService

func (pls PhoenixLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsImpalaLinkedService

func (pls PhoenixLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsJiraLinkedService

func (pls PhoenixLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsLinkedService

func (pls PhoenixLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsMagentoLinkedService

func (pls PhoenixLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsMariaDBLinkedService

func (pls PhoenixLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsMarketoLinkedService

func (pls PhoenixLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsMongoDbLinkedService

func (pls PhoenixLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsMySQLLinkedService

func (pls PhoenixLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsNetezzaLinkedService

func (pls PhoenixLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsODataLinkedService

func (pls PhoenixLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsOdbcLinkedService

func (pls PhoenixLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsOracleLinkedService

func (pls PhoenixLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsPaypalLinkedService

func (pls PhoenixLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsPhoenixLinkedService

func (pls PhoenixLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsPostgreSQLLinkedService

func (pls PhoenixLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsPrestoLinkedService

func (pls PhoenixLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsQuickBooksLinkedService

func (pls PhoenixLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsResponsysLinkedService

func (pls PhoenixLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsSQLServerLinkedService

func (pls PhoenixLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsSalesforceLinkedService

func (pls PhoenixLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsSalesforceMarketingCloudLinkedService

func (pls PhoenixLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsSapBWLinkedService

func (pls PhoenixLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsSapCloudForCustomerLinkedService

func (pls PhoenixLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsSapEccLinkedService

func (pls PhoenixLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsSapHanaLinkedService

func (pls PhoenixLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsServiceNowLinkedService

func (pls PhoenixLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsSftpServerLinkedService

func (pls PhoenixLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsShopifyLinkedService

func (pls PhoenixLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsSparkLinkedService

func (pls PhoenixLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsSquareLinkedService

func (pls PhoenixLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsSybaseLinkedService

func (pls PhoenixLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsTeradataLinkedService

func (pls PhoenixLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsVerticaLinkedService

func (pls PhoenixLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsWebLinkedService

func (pls PhoenixLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsXeroLinkedService

func (pls PhoenixLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) AsZohoLinkedService

func (pls PhoenixLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for PhoenixLinkedService.

func (PhoenixLinkedService) MarshalJSON

func (pls PhoenixLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for PhoenixLinkedService.

func (*PhoenixLinkedService) UnmarshalJSON

func (pls *PhoenixLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for PhoenixLinkedService struct.

type PhoenixLinkedServiceTypeProperties

type PhoenixLinkedServiceTypeProperties struct {
	// Host - The IP address or host name of the Phoenix server. (i.e. 192.168.222.160)
	Host interface{} `json:"host,omitempty"`
	// Port - The TCP port that the Phoenix server uses to listen for client connections. The default value is 8765.
	Port interface{} `json:"port,omitempty"`
	// HTTPPath - The partial URL corresponding to the Phoenix server. (i.e. /gateway/sandbox/phoenix/version). The default value is hbasephoenix if using WindowsAzureHDInsightService.
	HTTPPath interface{} `json:"httpPath,omitempty"`
	// AuthenticationType - The authentication mechanism used to connect to the Phoenix server. Possible values include: 'PhoenixAuthenticationTypeAnonymous', 'PhoenixAuthenticationTypeUsernameAndPassword', 'PhoenixAuthenticationTypeWindowsAzureHDInsightService'
	AuthenticationType PhoenixAuthenticationType `json:"authenticationType,omitempty"`
	// Username - The user name used to connect to the Phoenix server.
	Username interface{} `json:"username,omitempty"`
	// Password - The password corresponding to the user name.
	Password BasicSecretBase `json:"password,omitempty"`
	// EnableSsl - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
	EnableSsl interface{} `json:"enableSsl,omitempty"`
	// TrustedCertPath - The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
	TrustedCertPath interface{} `json:"trustedCertPath,omitempty"`
	// UseSystemTrustStore - Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
	UseSystemTrustStore interface{} `json:"useSystemTrustStore,omitempty"`
	// AllowHostNameCNMismatch - Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
	AllowHostNameCNMismatch interface{} `json:"allowHostNameCNMismatch,omitempty"`
	// AllowSelfSignedServerCert - Specifies whether to allow self-signed certificates from the server. The default value is false.
	AllowSelfSignedServerCert interface{} `json:"allowSelfSignedServerCert,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

PhoenixLinkedServiceTypeProperties phoenix server linked service properties.

func (*PhoenixLinkedServiceTypeProperties) UnmarshalJSON

func (plstp *PhoenixLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for PhoenixLinkedServiceTypeProperties struct.

type PhoenixObjectDataset

type PhoenixObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

PhoenixObjectDataset phoenix server dataset.

func (PhoenixObjectDataset) AsAmazonMWSObjectDataset

func (pod PhoenixObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsAmazonS3Dataset

func (pod PhoenixObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsAzureBlobDataset

func (pod PhoenixObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsAzureDataLakeStoreDataset

func (pod PhoenixObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsAzureMySQLTableDataset

func (pod PhoenixObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsAzurePostgreSQLTableDataset

func (pod PhoenixObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsAzureSQLDWTableDataset

func (pod PhoenixObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsAzureSQLTableDataset

func (pod PhoenixObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsAzureSearchIndexDataset

func (pod PhoenixObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsAzureTableDataset

func (pod PhoenixObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsBasicDataset

func (pod PhoenixObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsCassandraTableDataset

func (pod PhoenixObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsConcurObjectDataset

func (pod PhoenixObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsCouchbaseTableDataset

func (pod PhoenixObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsCustomDataset

func (pod PhoenixObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsDataset

func (pod PhoenixObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsDocumentDbCollectionDataset

func (pod PhoenixObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsDrillTableDataset

func (pod PhoenixObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsDynamicsEntityDataset

func (pod PhoenixObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsEloquaObjectDataset

func (pod PhoenixObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsFileShareDataset

func (pod PhoenixObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsGoogleBigQueryObjectDataset

func (pod PhoenixObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsGreenplumTableDataset

func (pod PhoenixObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsHBaseObjectDataset

func (pod PhoenixObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsHTTPDataset

func (pod PhoenixObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsHiveObjectDataset

func (pod PhoenixObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsHubspotObjectDataset

func (pod PhoenixObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsImpalaObjectDataset

func (pod PhoenixObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsJiraObjectDataset

func (pod PhoenixObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsMagentoObjectDataset

func (pod PhoenixObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsMariaDBTableDataset

func (pod PhoenixObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsMarketoObjectDataset

func (pod PhoenixObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsMongoDbCollectionDataset

func (pod PhoenixObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsNetezzaTableDataset

func (pod PhoenixObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsODataResourceDataset

func (pod PhoenixObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsOracleTableDataset

func (pod PhoenixObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsPaypalObjectDataset

func (pod PhoenixObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsPhoenixObjectDataset

func (pod PhoenixObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsPrestoObjectDataset

func (pod PhoenixObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsQuickBooksObjectDataset

func (pod PhoenixObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsRelationalTableDataset

func (pod PhoenixObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsResponsysObjectDataset

func (pod PhoenixObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsSQLServerTableDataset

func (pod PhoenixObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (pod PhoenixObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsSalesforceObjectDataset

func (pod PhoenixObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsSapCloudForCustomerResourceDataset

func (pod PhoenixObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsSapEccResourceDataset

func (pod PhoenixObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsServiceNowObjectDataset

func (pod PhoenixObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsShopifyObjectDataset

func (pod PhoenixObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsSparkObjectDataset

func (pod PhoenixObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsSquareObjectDataset

func (pod PhoenixObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsVerticaTableDataset

func (pod PhoenixObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsWebTableDataset

func (pod PhoenixObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsXeroObjectDataset

func (pod PhoenixObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) AsZohoObjectDataset

func (pod PhoenixObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for PhoenixObjectDataset.

func (PhoenixObjectDataset) MarshalJSON

func (pod PhoenixObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for PhoenixObjectDataset.

type PhoenixSource

type PhoenixSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

PhoenixSource a copy activity Phoenix server source.

func (PhoenixSource) AsAmazonMWSSource

func (ps PhoenixSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsAmazonRedshiftSource

func (ps PhoenixSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsAzureDataLakeStoreSource

func (ps PhoenixSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsAzureMySQLSource

func (ps PhoenixSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsAzurePostgreSQLSource

func (ps PhoenixSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsAzureTableSource

func (ps PhoenixSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsBasicCopySource

func (ps PhoenixSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsBlobSource

func (ps PhoenixSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsCassandraSource

func (ps PhoenixSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsConcurSource

func (ps PhoenixSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsCopySource

func (ps PhoenixSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsCouchbaseSource

func (ps PhoenixSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsDocumentDbCollectionSource

func (ps PhoenixSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsDrillSource

func (ps PhoenixSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsDynamicsSource

func (ps PhoenixSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsEloquaSource

func (ps PhoenixSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsFileSystemSource

func (ps PhoenixSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsGoogleBigQuerySource

func (ps PhoenixSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsGreenplumSource

func (ps PhoenixSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsHBaseSource

func (ps PhoenixSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsHTTPSource

func (ps PhoenixSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsHdfsSource

func (ps PhoenixSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsHiveSource

func (ps PhoenixSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsHubspotSource

func (ps PhoenixSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsImpalaSource

func (ps PhoenixSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsJiraSource

func (ps PhoenixSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsMagentoSource

func (ps PhoenixSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsMariaDBSource

func (ps PhoenixSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsMarketoSource

func (ps PhoenixSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsMongoDbSource

func (ps PhoenixSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsNetezzaSource

func (ps PhoenixSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsOracleSource

func (ps PhoenixSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsPaypalSource

func (ps PhoenixSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsPhoenixSource

func (ps PhoenixSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsPrestoSource

func (ps PhoenixSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsQuickBooksSource

func (ps PhoenixSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsRelationalSource

func (ps PhoenixSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsResponsysSource

func (ps PhoenixSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsSQLDWSource

func (ps PhoenixSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsSQLSource

func (ps PhoenixSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsSalesforceMarketingCloudSource

func (ps PhoenixSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsSalesforceSource

func (ps PhoenixSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsSapCloudForCustomerSource

func (ps PhoenixSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsSapEccSource

func (ps PhoenixSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsServiceNowSource

func (ps PhoenixSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsShopifySource

func (ps PhoenixSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsSparkSource

func (ps PhoenixSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsSquareSource

func (ps PhoenixSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsVerticaSource

func (ps PhoenixSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsWebSource

func (ps PhoenixSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsXeroSource

func (ps PhoenixSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) AsZohoSource

func (ps PhoenixSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for PhoenixSource.

func (PhoenixSource) MarshalJSON

func (ps PhoenixSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for PhoenixSource.

type Pipeline

type Pipeline struct {
	// Description - The description of the pipeline.
	Description *string `json:"description,omitempty"`
	// Activities - List of activities in pipeline.
	Activities *[]BasicActivity `json:"activities,omitempty"`
	// Parameters - List of parameters for pipeline.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Concurrency - The max number of concurrent runs for the pipeline.
	Concurrency *int32 `json:"concurrency,omitempty"`
	// Annotations - List of tags that can be used for describing the Pipeline.
	Annotations *[]interface{} `json:"annotations,omitempty"`
}

Pipeline a data factory pipeline.

func (Pipeline) MarshalJSON

func (p Pipeline) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for Pipeline.

func (*Pipeline) UnmarshalJSON

func (p *Pipeline) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for Pipeline struct.

type PipelineListResponse

type PipelineListResponse struct {
	autorest.Response `json:"-"`
	// Value - List of pipelines.
	Value *[]PipelineResource `json:"value,omitempty"`
	// NextLink - The link to the next page of results, if any remaining results exist.
	NextLink *string `json:"nextLink,omitempty"`
}

PipelineListResponse a list of pipeline resources.

func (PipelineListResponse) IsEmpty

func (plr PipelineListResponse) IsEmpty() bool

IsEmpty returns true if the ListResult contains no values.

type PipelineListResponseIterator

type PipelineListResponseIterator struct {
	// contains filtered or unexported fields
}

PipelineListResponseIterator provides access to a complete listing of PipelineResource values.

func (*PipelineListResponseIterator) Next

func (iter *PipelineListResponseIterator) Next() error

Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.

func (PipelineListResponseIterator) NotDone

func (iter PipelineListResponseIterator) NotDone() bool

NotDone returns true if the enumeration should be started or is not yet complete.

func (PipelineListResponseIterator) Response

Response returns the raw server response from the last page request.

func (PipelineListResponseIterator) Value

Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.

type PipelineListResponsePage

type PipelineListResponsePage struct {
	// contains filtered or unexported fields
}

PipelineListResponsePage contains a page of PipelineResource values.

func (*PipelineListResponsePage) Next

func (page *PipelineListResponsePage) Next() error

Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.

func (PipelineListResponsePage) NotDone

func (page PipelineListResponsePage) NotDone() bool

NotDone returns true if the page enumeration should be started or is not yet complete.

func (PipelineListResponsePage) Response

Response returns the raw server response from the last page request.

func (PipelineListResponsePage) Values

Values returns the slice of values for the current page or nil if there are no values.

type PipelineReference

type PipelineReference struct {
	// Type - Pipeline reference type.
	Type *string `json:"type,omitempty"`
	// ReferenceName - Reference pipeline name.
	ReferenceName *string `json:"referenceName,omitempty"`
	// Name - Reference name.
	Name *string `json:"name,omitempty"`
}

PipelineReference pipeline reference type.

type PipelineResource

type PipelineResource struct {
	autorest.Response `json:"-"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Pipeline - Properties of the pipeline.
	*Pipeline `json:"properties,omitempty"`
	// ID - The resource identifier.
	ID *string `json:"id,omitempty"`
	// Name - The resource name.
	Name *string `json:"name,omitempty"`
	// Type - The resource type.
	Type *string `json:"type,omitempty"`
	// Etag - Etag identifies change in the resource.
	Etag *string `json:"etag,omitempty"`
}

PipelineResource pipeline resource type.

func (PipelineResource) MarshalJSON

func (pr PipelineResource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for PipelineResource.

func (*PipelineResource) UnmarshalJSON

func (pr *PipelineResource) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for PipelineResource struct.

type PipelineRun

type PipelineRun struct {
	autorest.Response `json:"-"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// RunID - Identifier of a run.
	RunID *string `json:"runId,omitempty"`
	// PipelineName - The pipeline name.
	PipelineName *string `json:"pipelineName,omitempty"`
	// Parameters - The full or partial list of parameter name, value pair used in the pipeline run.
	Parameters map[string]*string `json:"parameters"`
	// InvokedBy - Entity that started the pipeline run.
	InvokedBy *PipelineRunInvokedBy `json:"invokedBy,omitempty"`
	// LastUpdated - The last updated timestamp for the pipeline run event in ISO8601 format.
	LastUpdated *date.Time `json:"lastUpdated,omitempty"`
	// RunStart - The start time of a pipeline run in ISO8601 format.
	RunStart *date.Time `json:"runStart,omitempty"`
	// RunEnd - The end time of a pipeline run in ISO8601 format.
	RunEnd *date.Time `json:"runEnd,omitempty"`
	// DurationInMs - The duration of a pipeline run.
	DurationInMs *int32 `json:"durationInMs,omitempty"`
	// Status - The status of a pipeline run.
	Status *string `json:"status,omitempty"`
	// Message - The message from a pipeline run.
	Message *string `json:"message,omitempty"`
}

PipelineRun information about a pipeline run.

func (PipelineRun) MarshalJSON

func (pr PipelineRun) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for PipelineRun.

type PipelineRunFilterParameters

type PipelineRunFilterParameters struct {
	// ContinuationToken - The continuation token for getting the next page of results. Null for first page.
	ContinuationToken *string `json:"continuationToken,omitempty"`
	// LastUpdatedAfter - The time at or after which the pipeline run event was updated in 'ISO 8601' format.
	LastUpdatedAfter *date.Time `json:"lastUpdatedAfter,omitempty"`
	// LastUpdatedBefore - The time at or before which the pipeline run event was updated in 'ISO 8601' format.
	LastUpdatedBefore *date.Time `json:"lastUpdatedBefore,omitempty"`
	// Filters - List of filters.
	Filters *[]PipelineRunQueryFilter `json:"filters,omitempty"`
	// OrderBy - List of OrderBy option.
	OrderBy *[]PipelineRunQueryOrderBy `json:"orderBy,omitempty"`
}

PipelineRunFilterParameters query parameters for listing pipeline runs.

type PipelineRunInvokedBy

type PipelineRunInvokedBy struct {
	// Name - Name of the entity that started the pipeline run.
	Name *string `json:"name,omitempty"`
	// ID - The ID of the entity that started the run.
	ID *string `json:"id,omitempty"`
}

PipelineRunInvokedBy provides entity name and id that started the pipeline run.

type PipelineRunQueryFilter

type PipelineRunQueryFilter struct {
	// Operand - Parameter name to be used for filter. Possible values include: 'PipelineName', 'Status', 'RunStart', 'RunEnd'
	Operand PipelineRunQueryFilterOperand `json:"operand,omitempty"`
	// Operator - Operator to be used for filter. Possible values include: 'Equals', 'NotEquals', 'In', 'NotIn'
	Operator PipelineRunQueryFilterOperator `json:"operator,omitempty"`
	// Values - List of filter values.
	Values *[]string `json:"values,omitempty"`
}

PipelineRunQueryFilter query filter option for listing pipeline runs.

type PipelineRunQueryFilterOperand

type PipelineRunQueryFilterOperand string

PipelineRunQueryFilterOperand enumerates the values for pipeline run query filter operand.

const (
	// PipelineName ...
	PipelineName PipelineRunQueryFilterOperand = "PipelineName"
	// RunEnd ...
	RunEnd PipelineRunQueryFilterOperand = "RunEnd"
	// RunStart ...
	RunStart PipelineRunQueryFilterOperand = "RunStart"
	// Status ...
	Status PipelineRunQueryFilterOperand = "Status"
)

func PossiblePipelineRunQueryFilterOperandValues

func PossiblePipelineRunQueryFilterOperandValues() []PipelineRunQueryFilterOperand

PossiblePipelineRunQueryFilterOperandValues returns an array of possible values for the PipelineRunQueryFilterOperand const type.

type PipelineRunQueryFilterOperator

type PipelineRunQueryFilterOperator string

PipelineRunQueryFilterOperator enumerates the values for pipeline run query filter operator.

const (
	// Equals ...
	Equals PipelineRunQueryFilterOperator = "Equals"
	// In ...
	In PipelineRunQueryFilterOperator = "In"
	// NotEquals ...
	NotEquals PipelineRunQueryFilterOperator = "NotEquals"
	// NotIn ...
	NotIn PipelineRunQueryFilterOperator = "NotIn"
)

func PossiblePipelineRunQueryFilterOperatorValues

func PossiblePipelineRunQueryFilterOperatorValues() []PipelineRunQueryFilterOperator

PossiblePipelineRunQueryFilterOperatorValues returns an array of possible values for the PipelineRunQueryFilterOperator const type.

type PipelineRunQueryOrder

type PipelineRunQueryOrder string

PipelineRunQueryOrder enumerates the values for pipeline run query order.

const (
	// ASC ...
	ASC PipelineRunQueryOrder = "ASC"
	// DESC ...
	DESC PipelineRunQueryOrder = "DESC"
)

func PossiblePipelineRunQueryOrderValues

func PossiblePipelineRunQueryOrderValues() []PipelineRunQueryOrder

PossiblePipelineRunQueryOrderValues returns an array of possible values for the PipelineRunQueryOrder const type.

type PipelineRunQueryOrderBy

type PipelineRunQueryOrderBy struct {
	// OrderBy - Parameter name to be used for order by. Possible values include: 'PipelineRunQueryOrderByFieldRunStart', 'PipelineRunQueryOrderByFieldRunEnd'
	OrderBy PipelineRunQueryOrderByField `json:"orderBy,omitempty"`
	// Order - Sorting order of the parameter. Possible values include: 'ASC', 'DESC'
	Order PipelineRunQueryOrder `json:"order,omitempty"`
}

PipelineRunQueryOrderBy an object to provide order by options for listing pipeline runs.

type PipelineRunQueryOrderByField

type PipelineRunQueryOrderByField string

PipelineRunQueryOrderByField enumerates the values for pipeline run query order by field.

const (
	// PipelineRunQueryOrderByFieldRunEnd ...
	PipelineRunQueryOrderByFieldRunEnd PipelineRunQueryOrderByField = "RunEnd"
	// PipelineRunQueryOrderByFieldRunStart ...
	PipelineRunQueryOrderByFieldRunStart PipelineRunQueryOrderByField = "RunStart"
)

func PossiblePipelineRunQueryOrderByFieldValues

func PossiblePipelineRunQueryOrderByFieldValues() []PipelineRunQueryOrderByField

PossiblePipelineRunQueryOrderByFieldValues returns an array of possible values for the PipelineRunQueryOrderByField const type.

type PipelineRunQueryResponse

type PipelineRunQueryResponse struct {
	autorest.Response `json:"-"`
	// Value - List of pipeline runs.
	Value *[]PipelineRun `json:"value,omitempty"`
	// ContinuationToken - The continuation token for getting the next page of results, if any remaining results exist, null otherwise.
	ContinuationToken *string `json:"continuationToken,omitempty"`
}

PipelineRunQueryResponse a list pipeline runs.

type PipelineRunsClient

type PipelineRunsClient struct {
	BaseClient
}

PipelineRunsClient is the the Azure Data Factory V2 management API provides a RESTful set of web services that interact with Azure Data Factory V2 services.

func NewPipelineRunsClient

func NewPipelineRunsClient(subscriptionID string) PipelineRunsClient

NewPipelineRunsClient creates an instance of the PipelineRunsClient client.

func NewPipelineRunsClientWithBaseURI

func NewPipelineRunsClientWithBaseURI(baseURI string, subscriptionID string) PipelineRunsClient

NewPipelineRunsClientWithBaseURI creates an instance of the PipelineRunsClient client.

func (PipelineRunsClient) Get

func (client PipelineRunsClient) Get(ctx context.Context, resourceGroupName string, factoryName string, runID string) (result PipelineRun, err error)

Get get a pipeline run by its run ID. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. runID - the pipeline run identifier.

func (PipelineRunsClient) GetPreparer

func (client PipelineRunsClient) GetPreparer(ctx context.Context, resourceGroupName string, factoryName string, runID string) (*http.Request, error)

GetPreparer prepares the Get request.

func (PipelineRunsClient) GetResponder

func (client PipelineRunsClient) GetResponder(resp *http.Response) (result PipelineRun, err error)

GetResponder handles the response to the Get request. The method always closes the http.Response Body.

func (PipelineRunsClient) GetSender

func (client PipelineRunsClient) GetSender(req *http.Request) (*http.Response, error)

GetSender sends the Get request. The method will close the http.Response Body if it receives an error.

func (PipelineRunsClient) QueryByFactory

func (client PipelineRunsClient) QueryByFactory(ctx context.Context, resourceGroupName string, factoryName string, filterParameters PipelineRunFilterParameters) (result PipelineRunQueryResponse, err error)

QueryByFactory query pipeline runs in the factory based on input filter conditions. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. filterParameters - parameters to filter the pipeline run.

func (PipelineRunsClient) QueryByFactoryPreparer

func (client PipelineRunsClient) QueryByFactoryPreparer(ctx context.Context, resourceGroupName string, factoryName string, filterParameters PipelineRunFilterParameters) (*http.Request, error)

QueryByFactoryPreparer prepares the QueryByFactory request.

func (PipelineRunsClient) QueryByFactoryResponder

func (client PipelineRunsClient) QueryByFactoryResponder(resp *http.Response) (result PipelineRunQueryResponse, err error)

QueryByFactoryResponder handles the response to the QueryByFactory request. The method always closes the http.Response Body.

func (PipelineRunsClient) QueryByFactorySender

func (client PipelineRunsClient) QueryByFactorySender(req *http.Request) (*http.Response, error)

QueryByFactorySender sends the QueryByFactory request. The method will close the http.Response Body if it receives an error.

type PipelinesClient

type PipelinesClient struct {
	BaseClient
}

PipelinesClient is the the Azure Data Factory V2 management API provides a RESTful set of web services that interact with Azure Data Factory V2 services.

func NewPipelinesClient

func NewPipelinesClient(subscriptionID string) PipelinesClient

NewPipelinesClient creates an instance of the PipelinesClient client.

func NewPipelinesClientWithBaseURI

func NewPipelinesClientWithBaseURI(baseURI string, subscriptionID string) PipelinesClient

NewPipelinesClientWithBaseURI creates an instance of the PipelinesClient client.

func (PipelinesClient) CreateOrUpdate

func (client PipelinesClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, factoryName string, pipelineName string, pipeline PipelineResource, ifMatch string) (result PipelineResource, err error)

CreateOrUpdate creates or updates a pipeline. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. pipelineName - the pipeline name. pipeline - pipeline resource definition. ifMatch - eTag of the pipeline entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update.

func (PipelinesClient) CreateOrUpdatePreparer

func (client PipelinesClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, factoryName string, pipelineName string, pipeline PipelineResource, ifMatch string) (*http.Request, error)

CreateOrUpdatePreparer prepares the CreateOrUpdate request.

func (PipelinesClient) CreateOrUpdateResponder

func (client PipelinesClient) CreateOrUpdateResponder(resp *http.Response) (result PipelineResource, err error)

CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always closes the http.Response Body.

func (PipelinesClient) CreateOrUpdateSender

func (client PipelinesClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error)

CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the http.Response Body if it receives an error.

func (PipelinesClient) CreateRun

func (client PipelinesClient) CreateRun(ctx context.Context, resourceGroupName string, factoryName string, pipelineName string, parameters map[string]interface{}) (result CreateRunResponse, err error)

CreateRun creates a run of a pipeline. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. pipelineName - the pipeline name. parameters - parameters of the pipeline run.

func (PipelinesClient) CreateRunPreparer

func (client PipelinesClient) CreateRunPreparer(ctx context.Context, resourceGroupName string, factoryName string, pipelineName string, parameters map[string]interface{}) (*http.Request, error)

CreateRunPreparer prepares the CreateRun request.

func (PipelinesClient) CreateRunResponder

func (client PipelinesClient) CreateRunResponder(resp *http.Response) (result CreateRunResponse, err error)

CreateRunResponder handles the response to the CreateRun request. The method always closes the http.Response Body.

func (PipelinesClient) CreateRunSender

func (client PipelinesClient) CreateRunSender(req *http.Request) (*http.Response, error)

CreateRunSender sends the CreateRun request. The method will close the http.Response Body if it receives an error.

func (PipelinesClient) Delete

func (client PipelinesClient) Delete(ctx context.Context, resourceGroupName string, factoryName string, pipelineName string) (result autorest.Response, err error)

Delete deletes a pipeline. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. pipelineName - the pipeline name.

func (PipelinesClient) DeletePreparer

func (client PipelinesClient) DeletePreparer(ctx context.Context, resourceGroupName string, factoryName string, pipelineName string) (*http.Request, error)

DeletePreparer prepares the Delete request.

func (PipelinesClient) DeleteResponder

func (client PipelinesClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)

DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.

func (PipelinesClient) DeleteSender

func (client PipelinesClient) DeleteSender(req *http.Request) (*http.Response, error)

DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.

func (PipelinesClient) Get

func (client PipelinesClient) Get(ctx context.Context, resourceGroupName string, factoryName string, pipelineName string) (result PipelineResource, err error)

Get gets a pipeline. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. pipelineName - the pipeline name.

func (PipelinesClient) GetPreparer

func (client PipelinesClient) GetPreparer(ctx context.Context, resourceGroupName string, factoryName string, pipelineName string) (*http.Request, error)

GetPreparer prepares the Get request.

func (PipelinesClient) GetResponder

func (client PipelinesClient) GetResponder(resp *http.Response) (result PipelineResource, err error)

GetResponder handles the response to the Get request. The method always closes the http.Response Body.

func (PipelinesClient) GetSender

func (client PipelinesClient) GetSender(req *http.Request) (*http.Response, error)

GetSender sends the Get request. The method will close the http.Response Body if it receives an error.

func (PipelinesClient) ListByFactory

func (client PipelinesClient) ListByFactory(ctx context.Context, resourceGroupName string, factoryName string) (result PipelineListResponsePage, err error)

ListByFactory lists pipelines. Parameters: resourceGroupName - the resource group name. factoryName - the factory name.

func (PipelinesClient) ListByFactoryComplete

func (client PipelinesClient) ListByFactoryComplete(ctx context.Context, resourceGroupName string, factoryName string) (result PipelineListResponseIterator, err error)

ListByFactoryComplete enumerates all values, automatically crossing page boundaries as required.

func (PipelinesClient) ListByFactoryPreparer

func (client PipelinesClient) ListByFactoryPreparer(ctx context.Context, resourceGroupName string, factoryName string) (*http.Request, error)

ListByFactoryPreparer prepares the ListByFactory request.

func (PipelinesClient) ListByFactoryResponder

func (client PipelinesClient) ListByFactoryResponder(resp *http.Response) (result PipelineListResponse, err error)

ListByFactoryResponder handles the response to the ListByFactory request. The method always closes the http.Response Body.

func (PipelinesClient) ListByFactorySender

func (client PipelinesClient) ListByFactorySender(req *http.Request) (*http.Response, error)

ListByFactorySender sends the ListByFactory request. The method will close the http.Response Body if it receives an error.

type PolybaseSettings

type PolybaseSettings struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// RejectType - Reject type. Possible values include: 'Value', 'Percentage'
	RejectType PolybaseSettingsRejectType `json:"rejectType,omitempty"`
	// RejectValue - Specifies the value or the percentage of rows that can be rejected before the query fails. Type: number (or Expression with resultType number), minimum: 0.
	RejectValue interface{} `json:"rejectValue,omitempty"`
	// RejectSampleValue - Determines the number of rows to attempt to retrieve before the PolyBase recalculates the percentage of rejected rows. Type: integer (or Expression with resultType integer), minimum: 0.
	RejectSampleValue interface{} `json:"rejectSampleValue,omitempty"`
	// UseTypeDefault - Specifies how to handle missing values in delimited text files when PolyBase retrieves data from the text file. Type: boolean (or Expression with resultType boolean).
	UseTypeDefault interface{} `json:"useTypeDefault,omitempty"`
}

PolybaseSettings polyBase settings.

func (PolybaseSettings) MarshalJSON

func (ps PolybaseSettings) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for PolybaseSettings.

type PolybaseSettingsRejectType

type PolybaseSettingsRejectType string

PolybaseSettingsRejectType enumerates the values for polybase settings reject type.

const (
	// Percentage ...
	Percentage PolybaseSettingsRejectType = "percentage"
	// Value ...
	Value PolybaseSettingsRejectType = "value"
)

func PossiblePolybaseSettingsRejectTypeValues

func PossiblePolybaseSettingsRejectTypeValues() []PolybaseSettingsRejectType

PossiblePolybaseSettingsRejectTypeValues returns an array of possible values for the PolybaseSettingsRejectType const type.

type PostgreSQLLinkedService

type PostgreSQLLinkedService struct {
	// PostgreSQLLinkedServiceTypeProperties - PostgreSQL linked service properties.
	*PostgreSQLLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

PostgreSQLLinkedService linked service for PostgreSQL data source.

func (PostgreSQLLinkedService) AsAmazonMWSLinkedService

func (psls PostgreSQLLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAmazonRedshiftLinkedService

func (psls PostgreSQLLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAmazonS3LinkedService

func (psls PostgreSQLLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAzureBatchLinkedService

func (psls PostgreSQLLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (psls PostgreSQLLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAzureDataLakeStoreLinkedService

func (psls PostgreSQLLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAzureDatabricksLinkedService

func (psls PostgreSQLLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAzureKeyVaultLinkedService

func (psls PostgreSQLLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAzureMLLinkedService

func (psls PostgreSQLLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAzureMySQLLinkedService

func (psls PostgreSQLLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAzurePostgreSQLLinkedService

func (psls PostgreSQLLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAzureSQLDWLinkedService

func (psls PostgreSQLLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAzureSQLDatabaseLinkedService

func (psls PostgreSQLLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAzureSearchLinkedService

func (psls PostgreSQLLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsAzureStorageLinkedService

func (psls PostgreSQLLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsBasicLinkedService

func (psls PostgreSQLLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsCassandraLinkedService

func (psls PostgreSQLLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsConcurLinkedService

func (psls PostgreSQLLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsCosmosDbLinkedService

func (psls PostgreSQLLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsCouchbaseLinkedService

func (psls PostgreSQLLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsCustomDataSourceLinkedService

func (psls PostgreSQLLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsDb2LinkedService

func (psls PostgreSQLLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsDrillLinkedService

func (psls PostgreSQLLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsDynamicsLinkedService

func (psls PostgreSQLLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsEloquaLinkedService

func (psls PostgreSQLLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsFileServerLinkedService

func (psls PostgreSQLLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsFtpServerLinkedService

func (psls PostgreSQLLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsGoogleBigQueryLinkedService

func (psls PostgreSQLLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsGreenplumLinkedService

func (psls PostgreSQLLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsHBaseLinkedService

func (psls PostgreSQLLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsHDInsightLinkedService

func (psls PostgreSQLLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsHDInsightOnDemandLinkedService

func (psls PostgreSQLLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsHTTPLinkedService

func (psls PostgreSQLLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsHdfsLinkedService

func (psls PostgreSQLLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsHiveLinkedService

func (psls PostgreSQLLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsHubspotLinkedService

func (psls PostgreSQLLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsImpalaLinkedService

func (psls PostgreSQLLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsJiraLinkedService

func (psls PostgreSQLLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsLinkedService

func (psls PostgreSQLLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsMagentoLinkedService

func (psls PostgreSQLLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsMariaDBLinkedService

func (psls PostgreSQLLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsMarketoLinkedService

func (psls PostgreSQLLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsMongoDbLinkedService

func (psls PostgreSQLLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsMySQLLinkedService

func (psls PostgreSQLLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsNetezzaLinkedService

func (psls PostgreSQLLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsODataLinkedService

func (psls PostgreSQLLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsOdbcLinkedService

func (psls PostgreSQLLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsOracleLinkedService

func (psls PostgreSQLLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsPaypalLinkedService

func (psls PostgreSQLLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsPhoenixLinkedService

func (psls PostgreSQLLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsPostgreSQLLinkedService

func (psls PostgreSQLLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsPrestoLinkedService

func (psls PostgreSQLLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsQuickBooksLinkedService

func (psls PostgreSQLLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsResponsysLinkedService

func (psls PostgreSQLLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsSQLServerLinkedService

func (psls PostgreSQLLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsSalesforceLinkedService

func (psls PostgreSQLLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsSalesforceMarketingCloudLinkedService

func (psls PostgreSQLLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsSapBWLinkedService

func (psls PostgreSQLLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsSapCloudForCustomerLinkedService

func (psls PostgreSQLLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsSapEccLinkedService

func (psls PostgreSQLLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsSapHanaLinkedService

func (psls PostgreSQLLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsServiceNowLinkedService

func (psls PostgreSQLLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsSftpServerLinkedService

func (psls PostgreSQLLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsShopifyLinkedService

func (psls PostgreSQLLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsSparkLinkedService

func (psls PostgreSQLLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsSquareLinkedService

func (psls PostgreSQLLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsSybaseLinkedService

func (psls PostgreSQLLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsTeradataLinkedService

func (psls PostgreSQLLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsVerticaLinkedService

func (psls PostgreSQLLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsWebLinkedService

func (psls PostgreSQLLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsXeroLinkedService

func (psls PostgreSQLLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) AsZohoLinkedService

func (psls PostgreSQLLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for PostgreSQLLinkedService.

func (PostgreSQLLinkedService) MarshalJSON

func (psls PostgreSQLLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for PostgreSQLLinkedService.

func (*PostgreSQLLinkedService) UnmarshalJSON

func (psls *PostgreSQLLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for PostgreSQLLinkedService struct.

type PostgreSQLLinkedServiceTypeProperties

type PostgreSQLLinkedServiceTypeProperties struct {
	// Server - Server name for connection. Type: string (or Expression with resultType string).
	Server interface{} `json:"server,omitempty"`
	// Database - Database name for connection. Type: string (or Expression with resultType string).
	Database interface{} `json:"database,omitempty"`
	// Schema - Schema name for connection. Type: string (or Expression with resultType string).
	Schema interface{} `json:"schema,omitempty"`
	// Username - Username for authentication. Type: string (or Expression with resultType string).
	Username interface{} `json:"username,omitempty"`
	// Password - Password for authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

PostgreSQLLinkedServiceTypeProperties postgreSQL linked service properties.

func (*PostgreSQLLinkedServiceTypeProperties) UnmarshalJSON

func (pslstp *PostgreSQLLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for PostgreSQLLinkedServiceTypeProperties struct.

type PrestoAuthenticationType

type PrestoAuthenticationType string

PrestoAuthenticationType enumerates the values for presto authentication type.

const (
	// PrestoAuthenticationTypeAnonymous ...
	PrestoAuthenticationTypeAnonymous PrestoAuthenticationType = "Anonymous"
	// PrestoAuthenticationTypeLDAP ...
	PrestoAuthenticationTypeLDAP PrestoAuthenticationType = "LDAP"
)

func PossiblePrestoAuthenticationTypeValues

func PossiblePrestoAuthenticationTypeValues() []PrestoAuthenticationType

PossiblePrestoAuthenticationTypeValues returns an array of possible values for the PrestoAuthenticationType const type.

type PrestoLinkedService

type PrestoLinkedService struct {
	// PrestoLinkedServiceTypeProperties - Presto server linked service properties.
	*PrestoLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

PrestoLinkedService presto server linked service.

func (PrestoLinkedService) AsAmazonMWSLinkedService

func (pls PrestoLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAmazonRedshiftLinkedService

func (pls PrestoLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAmazonS3LinkedService

func (pls PrestoLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAzureBatchLinkedService

func (pls PrestoLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (pls PrestoLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAzureDataLakeStoreLinkedService

func (pls PrestoLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAzureDatabricksLinkedService

func (pls PrestoLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAzureKeyVaultLinkedService

func (pls PrestoLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAzureMLLinkedService

func (pls PrestoLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAzureMySQLLinkedService

func (pls PrestoLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAzurePostgreSQLLinkedService

func (pls PrestoLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAzureSQLDWLinkedService

func (pls PrestoLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAzureSQLDatabaseLinkedService

func (pls PrestoLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAzureSearchLinkedService

func (pls PrestoLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsAzureStorageLinkedService

func (pls PrestoLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsBasicLinkedService

func (pls PrestoLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsCassandraLinkedService

func (pls PrestoLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsConcurLinkedService

func (pls PrestoLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsCosmosDbLinkedService

func (pls PrestoLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsCouchbaseLinkedService

func (pls PrestoLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsCustomDataSourceLinkedService

func (pls PrestoLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsDb2LinkedService

func (pls PrestoLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsDrillLinkedService

func (pls PrestoLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsDynamicsLinkedService

func (pls PrestoLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsEloquaLinkedService

func (pls PrestoLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsFileServerLinkedService

func (pls PrestoLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsFtpServerLinkedService

func (pls PrestoLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsGoogleBigQueryLinkedService

func (pls PrestoLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsGreenplumLinkedService

func (pls PrestoLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsHBaseLinkedService

func (pls PrestoLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsHDInsightLinkedService

func (pls PrestoLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsHDInsightOnDemandLinkedService

func (pls PrestoLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsHTTPLinkedService

func (pls PrestoLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsHdfsLinkedService

func (pls PrestoLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsHiveLinkedService

func (pls PrestoLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsHubspotLinkedService

func (pls PrestoLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsImpalaLinkedService

func (pls PrestoLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsJiraLinkedService

func (pls PrestoLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsLinkedService

func (pls PrestoLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsMagentoLinkedService

func (pls PrestoLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsMariaDBLinkedService

func (pls PrestoLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsMarketoLinkedService

func (pls PrestoLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsMongoDbLinkedService

func (pls PrestoLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsMySQLLinkedService

func (pls PrestoLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsNetezzaLinkedService

func (pls PrestoLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsODataLinkedService

func (pls PrestoLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsOdbcLinkedService

func (pls PrestoLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsOracleLinkedService

func (pls PrestoLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsPaypalLinkedService

func (pls PrestoLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsPhoenixLinkedService

func (pls PrestoLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsPostgreSQLLinkedService

func (pls PrestoLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsPrestoLinkedService

func (pls PrestoLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsQuickBooksLinkedService

func (pls PrestoLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsResponsysLinkedService

func (pls PrestoLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsSQLServerLinkedService

func (pls PrestoLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsSalesforceLinkedService

func (pls PrestoLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsSalesforceMarketingCloudLinkedService

func (pls PrestoLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsSapBWLinkedService

func (pls PrestoLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsSapCloudForCustomerLinkedService

func (pls PrestoLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsSapEccLinkedService

func (pls PrestoLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsSapHanaLinkedService

func (pls PrestoLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsServiceNowLinkedService

func (pls PrestoLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsSftpServerLinkedService

func (pls PrestoLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsShopifyLinkedService

func (pls PrestoLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsSparkLinkedService

func (pls PrestoLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsSquareLinkedService

func (pls PrestoLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsSybaseLinkedService

func (pls PrestoLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsTeradataLinkedService

func (pls PrestoLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsVerticaLinkedService

func (pls PrestoLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsWebLinkedService

func (pls PrestoLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsXeroLinkedService

func (pls PrestoLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) AsZohoLinkedService

func (pls PrestoLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for PrestoLinkedService.

func (PrestoLinkedService) MarshalJSON

func (pls PrestoLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for PrestoLinkedService.

func (*PrestoLinkedService) UnmarshalJSON

func (pls *PrestoLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for PrestoLinkedService struct.

type PrestoLinkedServiceTypeProperties

type PrestoLinkedServiceTypeProperties struct {
	// Host - The IP address or host name of the Presto server. (i.e. 192.168.222.160)
	Host interface{} `json:"host,omitempty"`
	// ServerVersion - The version of the Presto server. (i.e. 0.148-t)
	ServerVersion interface{} `json:"serverVersion,omitempty"`
	// Catalog - The catalog context for all request against the server.
	Catalog interface{} `json:"catalog,omitempty"`
	// Port - The TCP port that the Presto server uses to listen for client connections. The default value is 8080.
	Port interface{} `json:"port,omitempty"`
	// AuthenticationType - The authentication mechanism used to connect to the Presto server. Possible values include: 'PrestoAuthenticationTypeAnonymous', 'PrestoAuthenticationTypeLDAP'
	AuthenticationType PrestoAuthenticationType `json:"authenticationType,omitempty"`
	// Username - The user name used to connect to the Presto server.
	Username interface{} `json:"username,omitempty"`
	// Password - The password corresponding to the user name.
	Password BasicSecretBase `json:"password,omitempty"`
	// EnableSsl - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
	EnableSsl interface{} `json:"enableSsl,omitempty"`
	// TrustedCertPath - The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
	TrustedCertPath interface{} `json:"trustedCertPath,omitempty"`
	// UseSystemTrustStore - Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
	UseSystemTrustStore interface{} `json:"useSystemTrustStore,omitempty"`
	// AllowHostNameCNMismatch - Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
	AllowHostNameCNMismatch interface{} `json:"allowHostNameCNMismatch,omitempty"`
	// AllowSelfSignedServerCert - Specifies whether to allow self-signed certificates from the server. The default value is false.
	AllowSelfSignedServerCert interface{} `json:"allowSelfSignedServerCert,omitempty"`
	// TimeZoneID - The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone.
	TimeZoneID interface{} `json:"timeZoneID,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

PrestoLinkedServiceTypeProperties presto server linked service properties.

func (*PrestoLinkedServiceTypeProperties) UnmarshalJSON

func (plstp *PrestoLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for PrestoLinkedServiceTypeProperties struct.

type PrestoObjectDataset

type PrestoObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

PrestoObjectDataset presto server dataset.

func (PrestoObjectDataset) AsAmazonMWSObjectDataset

func (pod PrestoObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsAmazonS3Dataset

func (pod PrestoObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsAzureBlobDataset

func (pod PrestoObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsAzureDataLakeStoreDataset

func (pod PrestoObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsAzureMySQLTableDataset

func (pod PrestoObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsAzurePostgreSQLTableDataset

func (pod PrestoObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsAzureSQLDWTableDataset

func (pod PrestoObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsAzureSQLTableDataset

func (pod PrestoObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsAzureSearchIndexDataset

func (pod PrestoObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsAzureTableDataset

func (pod PrestoObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsBasicDataset

func (pod PrestoObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsCassandraTableDataset

func (pod PrestoObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsConcurObjectDataset

func (pod PrestoObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsCouchbaseTableDataset

func (pod PrestoObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsCustomDataset

func (pod PrestoObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsDataset

func (pod PrestoObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsDocumentDbCollectionDataset

func (pod PrestoObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsDrillTableDataset

func (pod PrestoObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsDynamicsEntityDataset

func (pod PrestoObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsEloquaObjectDataset

func (pod PrestoObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsFileShareDataset

func (pod PrestoObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsGoogleBigQueryObjectDataset

func (pod PrestoObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsGreenplumTableDataset

func (pod PrestoObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsHBaseObjectDataset

func (pod PrestoObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsHTTPDataset

func (pod PrestoObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsHiveObjectDataset

func (pod PrestoObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsHubspotObjectDataset

func (pod PrestoObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsImpalaObjectDataset

func (pod PrestoObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsJiraObjectDataset

func (pod PrestoObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsMagentoObjectDataset

func (pod PrestoObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsMariaDBTableDataset

func (pod PrestoObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsMarketoObjectDataset

func (pod PrestoObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsMongoDbCollectionDataset

func (pod PrestoObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsNetezzaTableDataset

func (pod PrestoObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsODataResourceDataset

func (pod PrestoObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsOracleTableDataset

func (pod PrestoObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsPaypalObjectDataset

func (pod PrestoObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsPhoenixObjectDataset

func (pod PrestoObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsPrestoObjectDataset

func (pod PrestoObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsQuickBooksObjectDataset

func (pod PrestoObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsRelationalTableDataset

func (pod PrestoObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsResponsysObjectDataset

func (pod PrestoObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsSQLServerTableDataset

func (pod PrestoObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (pod PrestoObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsSalesforceObjectDataset

func (pod PrestoObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsSapCloudForCustomerResourceDataset

func (pod PrestoObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsSapEccResourceDataset

func (pod PrestoObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsServiceNowObjectDataset

func (pod PrestoObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsShopifyObjectDataset

func (pod PrestoObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsSparkObjectDataset

func (pod PrestoObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsSquareObjectDataset

func (pod PrestoObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsVerticaTableDataset

func (pod PrestoObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsWebTableDataset

func (pod PrestoObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsXeroObjectDataset

func (pod PrestoObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) AsZohoObjectDataset

func (pod PrestoObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for PrestoObjectDataset.

func (PrestoObjectDataset) MarshalJSON

func (pod PrestoObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for PrestoObjectDataset.

type PrestoSource

type PrestoSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

PrestoSource a copy activity Presto server source.

func (PrestoSource) AsAmazonMWSSource

func (ps PrestoSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsAmazonRedshiftSource

func (ps PrestoSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsAzureDataLakeStoreSource

func (ps PrestoSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsAzureMySQLSource

func (ps PrestoSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsAzurePostgreSQLSource

func (ps PrestoSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsAzureTableSource

func (ps PrestoSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsBasicCopySource

func (ps PrestoSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsBlobSource

func (ps PrestoSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsCassandraSource

func (ps PrestoSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsConcurSource

func (ps PrestoSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsCopySource

func (ps PrestoSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsCouchbaseSource

func (ps PrestoSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsDocumentDbCollectionSource

func (ps PrestoSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsDrillSource

func (ps PrestoSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsDynamicsSource

func (ps PrestoSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsEloquaSource

func (ps PrestoSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsFileSystemSource

func (ps PrestoSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsGoogleBigQuerySource

func (ps PrestoSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsGreenplumSource

func (ps PrestoSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsHBaseSource

func (ps PrestoSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsHTTPSource

func (ps PrestoSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsHdfsSource

func (ps PrestoSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsHiveSource

func (ps PrestoSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsHubspotSource

func (ps PrestoSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsImpalaSource

func (ps PrestoSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsJiraSource

func (ps PrestoSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsMagentoSource

func (ps PrestoSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsMariaDBSource

func (ps PrestoSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsMarketoSource

func (ps PrestoSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsMongoDbSource

func (ps PrestoSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsNetezzaSource

func (ps PrestoSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsOracleSource

func (ps PrestoSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsPaypalSource

func (ps PrestoSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsPhoenixSource

func (ps PrestoSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsPrestoSource

func (ps PrestoSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsQuickBooksSource

func (ps PrestoSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsRelationalSource

func (ps PrestoSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsResponsysSource

func (ps PrestoSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsSQLDWSource

func (ps PrestoSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsSQLSource

func (ps PrestoSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsSalesforceMarketingCloudSource

func (ps PrestoSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsSalesforceSource

func (ps PrestoSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsSapCloudForCustomerSource

func (ps PrestoSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsSapEccSource

func (ps PrestoSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsServiceNowSource

func (ps PrestoSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsShopifySource

func (ps PrestoSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsSparkSource

func (ps PrestoSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsSquareSource

func (ps PrestoSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsVerticaSource

func (ps PrestoSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsWebSource

func (ps PrestoSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsXeroSource

func (ps PrestoSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) AsZohoSource

func (ps PrestoSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for PrestoSource.

func (PrestoSource) MarshalJSON

func (ps PrestoSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for PrestoSource.

type QuickBooksLinkedService

type QuickBooksLinkedService struct {
	// QuickBooksLinkedServiceTypeProperties - QuickBooks server linked service properties.
	*QuickBooksLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

QuickBooksLinkedService quickBooks server linked service.

func (QuickBooksLinkedService) AsAmazonMWSLinkedService

func (qbls QuickBooksLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAmazonRedshiftLinkedService

func (qbls QuickBooksLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAmazonS3LinkedService

func (qbls QuickBooksLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAzureBatchLinkedService

func (qbls QuickBooksLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (qbls QuickBooksLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAzureDataLakeStoreLinkedService

func (qbls QuickBooksLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAzureDatabricksLinkedService

func (qbls QuickBooksLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAzureKeyVaultLinkedService

func (qbls QuickBooksLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAzureMLLinkedService

func (qbls QuickBooksLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAzureMySQLLinkedService

func (qbls QuickBooksLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAzurePostgreSQLLinkedService

func (qbls QuickBooksLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAzureSQLDWLinkedService

func (qbls QuickBooksLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAzureSQLDatabaseLinkedService

func (qbls QuickBooksLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAzureSearchLinkedService

func (qbls QuickBooksLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsAzureStorageLinkedService

func (qbls QuickBooksLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsBasicLinkedService

func (qbls QuickBooksLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsCassandraLinkedService

func (qbls QuickBooksLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsConcurLinkedService

func (qbls QuickBooksLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsCosmosDbLinkedService

func (qbls QuickBooksLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsCouchbaseLinkedService

func (qbls QuickBooksLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsCustomDataSourceLinkedService

func (qbls QuickBooksLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsDb2LinkedService

func (qbls QuickBooksLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsDrillLinkedService

func (qbls QuickBooksLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsDynamicsLinkedService

func (qbls QuickBooksLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsEloquaLinkedService

func (qbls QuickBooksLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsFileServerLinkedService

func (qbls QuickBooksLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsFtpServerLinkedService

func (qbls QuickBooksLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsGoogleBigQueryLinkedService

func (qbls QuickBooksLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsGreenplumLinkedService

func (qbls QuickBooksLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsHBaseLinkedService

func (qbls QuickBooksLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsHDInsightLinkedService

func (qbls QuickBooksLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsHDInsightOnDemandLinkedService

func (qbls QuickBooksLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsHTTPLinkedService

func (qbls QuickBooksLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsHdfsLinkedService

func (qbls QuickBooksLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsHiveLinkedService

func (qbls QuickBooksLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsHubspotLinkedService

func (qbls QuickBooksLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsImpalaLinkedService

func (qbls QuickBooksLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsJiraLinkedService

func (qbls QuickBooksLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsLinkedService

func (qbls QuickBooksLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsMagentoLinkedService

func (qbls QuickBooksLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsMariaDBLinkedService

func (qbls QuickBooksLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsMarketoLinkedService

func (qbls QuickBooksLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsMongoDbLinkedService

func (qbls QuickBooksLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsMySQLLinkedService

func (qbls QuickBooksLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsNetezzaLinkedService

func (qbls QuickBooksLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsODataLinkedService

func (qbls QuickBooksLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsOdbcLinkedService

func (qbls QuickBooksLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsOracleLinkedService

func (qbls QuickBooksLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsPaypalLinkedService

func (qbls QuickBooksLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsPhoenixLinkedService

func (qbls QuickBooksLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsPostgreSQLLinkedService

func (qbls QuickBooksLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsPrestoLinkedService

func (qbls QuickBooksLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsQuickBooksLinkedService

func (qbls QuickBooksLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsResponsysLinkedService

func (qbls QuickBooksLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsSQLServerLinkedService

func (qbls QuickBooksLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsSalesforceLinkedService

func (qbls QuickBooksLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsSalesforceMarketingCloudLinkedService

func (qbls QuickBooksLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsSapBWLinkedService

func (qbls QuickBooksLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsSapCloudForCustomerLinkedService

func (qbls QuickBooksLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsSapEccLinkedService

func (qbls QuickBooksLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsSapHanaLinkedService

func (qbls QuickBooksLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsServiceNowLinkedService

func (qbls QuickBooksLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsSftpServerLinkedService

func (qbls QuickBooksLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsShopifyLinkedService

func (qbls QuickBooksLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsSparkLinkedService

func (qbls QuickBooksLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsSquareLinkedService

func (qbls QuickBooksLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsSybaseLinkedService

func (qbls QuickBooksLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsTeradataLinkedService

func (qbls QuickBooksLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsVerticaLinkedService

func (qbls QuickBooksLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsWebLinkedService

func (qbls QuickBooksLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsXeroLinkedService

func (qbls QuickBooksLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) AsZohoLinkedService

func (qbls QuickBooksLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for QuickBooksLinkedService.

func (QuickBooksLinkedService) MarshalJSON

func (qbls QuickBooksLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for QuickBooksLinkedService.

func (*QuickBooksLinkedService) UnmarshalJSON

func (qbls *QuickBooksLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for QuickBooksLinkedService struct.

type QuickBooksLinkedServiceTypeProperties

type QuickBooksLinkedServiceTypeProperties struct {
	// Endpoint - The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com)
	Endpoint interface{} `json:"endpoint,omitempty"`
	// CompanyID - The company ID of the QuickBooks company to authorize.
	CompanyID interface{} `json:"companyId,omitempty"`
	// AccessToken - The access token for OAuth 1.0 authentication.
	AccessToken BasicSecretBase `json:"accessToken,omitempty"`
	// AccessTokenSecret - The access token secret for OAuth 1.0 authentication.
	AccessTokenSecret BasicSecretBase `json:"accessTokenSecret,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

QuickBooksLinkedServiceTypeProperties quickBooks server linked service properties.

func (*QuickBooksLinkedServiceTypeProperties) UnmarshalJSON

func (qblstp *QuickBooksLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for QuickBooksLinkedServiceTypeProperties struct.

type QuickBooksObjectDataset

type QuickBooksObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

QuickBooksObjectDataset quickBooks server dataset.

func (QuickBooksObjectDataset) AsAmazonMWSObjectDataset

func (qbod QuickBooksObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsAmazonS3Dataset

func (qbod QuickBooksObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsAzureBlobDataset

func (qbod QuickBooksObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsAzureDataLakeStoreDataset

func (qbod QuickBooksObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsAzureMySQLTableDataset

func (qbod QuickBooksObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsAzurePostgreSQLTableDataset

func (qbod QuickBooksObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsAzureSQLDWTableDataset

func (qbod QuickBooksObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsAzureSQLTableDataset

func (qbod QuickBooksObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsAzureSearchIndexDataset

func (qbod QuickBooksObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsAzureTableDataset

func (qbod QuickBooksObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsBasicDataset

func (qbod QuickBooksObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsCassandraTableDataset

func (qbod QuickBooksObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsConcurObjectDataset

func (qbod QuickBooksObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsCouchbaseTableDataset

func (qbod QuickBooksObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsCustomDataset

func (qbod QuickBooksObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsDataset

func (qbod QuickBooksObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsDocumentDbCollectionDataset

func (qbod QuickBooksObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsDrillTableDataset

func (qbod QuickBooksObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsDynamicsEntityDataset

func (qbod QuickBooksObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsEloquaObjectDataset

func (qbod QuickBooksObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsFileShareDataset

func (qbod QuickBooksObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsGoogleBigQueryObjectDataset

func (qbod QuickBooksObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsGreenplumTableDataset

func (qbod QuickBooksObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsHBaseObjectDataset

func (qbod QuickBooksObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsHTTPDataset

func (qbod QuickBooksObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsHiveObjectDataset

func (qbod QuickBooksObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsHubspotObjectDataset

func (qbod QuickBooksObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsImpalaObjectDataset

func (qbod QuickBooksObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsJiraObjectDataset

func (qbod QuickBooksObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsMagentoObjectDataset

func (qbod QuickBooksObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsMariaDBTableDataset

func (qbod QuickBooksObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsMarketoObjectDataset

func (qbod QuickBooksObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsMongoDbCollectionDataset

func (qbod QuickBooksObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsNetezzaTableDataset

func (qbod QuickBooksObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsODataResourceDataset

func (qbod QuickBooksObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsOracleTableDataset

func (qbod QuickBooksObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsPaypalObjectDataset

func (qbod QuickBooksObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsPhoenixObjectDataset

func (qbod QuickBooksObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsPrestoObjectDataset

func (qbod QuickBooksObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsQuickBooksObjectDataset

func (qbod QuickBooksObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsRelationalTableDataset

func (qbod QuickBooksObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsResponsysObjectDataset

func (qbod QuickBooksObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsSQLServerTableDataset

func (qbod QuickBooksObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (qbod QuickBooksObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsSalesforceObjectDataset

func (qbod QuickBooksObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsSapCloudForCustomerResourceDataset

func (qbod QuickBooksObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsSapEccResourceDataset

func (qbod QuickBooksObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsServiceNowObjectDataset

func (qbod QuickBooksObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsShopifyObjectDataset

func (qbod QuickBooksObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsSparkObjectDataset

func (qbod QuickBooksObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsSquareObjectDataset

func (qbod QuickBooksObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsVerticaTableDataset

func (qbod QuickBooksObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsWebTableDataset

func (qbod QuickBooksObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsXeroObjectDataset

func (qbod QuickBooksObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) AsZohoObjectDataset

func (qbod QuickBooksObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for QuickBooksObjectDataset.

func (QuickBooksObjectDataset) MarshalJSON

func (qbod QuickBooksObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for QuickBooksObjectDataset.

type QuickBooksSource

type QuickBooksSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

QuickBooksSource a copy activity QuickBooks server source.

func (QuickBooksSource) AsAmazonMWSSource

func (qbs QuickBooksSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsAmazonRedshiftSource

func (qbs QuickBooksSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsAzureDataLakeStoreSource

func (qbs QuickBooksSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsAzureMySQLSource

func (qbs QuickBooksSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsAzurePostgreSQLSource

func (qbs QuickBooksSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsAzureTableSource

func (qbs QuickBooksSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsBasicCopySource

func (qbs QuickBooksSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsBlobSource

func (qbs QuickBooksSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsCassandraSource

func (qbs QuickBooksSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsConcurSource

func (qbs QuickBooksSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsCopySource

func (qbs QuickBooksSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsCouchbaseSource

func (qbs QuickBooksSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsDocumentDbCollectionSource

func (qbs QuickBooksSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsDrillSource

func (qbs QuickBooksSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsDynamicsSource

func (qbs QuickBooksSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsEloquaSource

func (qbs QuickBooksSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsFileSystemSource

func (qbs QuickBooksSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsGoogleBigQuerySource

func (qbs QuickBooksSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsGreenplumSource

func (qbs QuickBooksSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsHBaseSource

func (qbs QuickBooksSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsHTTPSource

func (qbs QuickBooksSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsHdfsSource

func (qbs QuickBooksSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsHiveSource

func (qbs QuickBooksSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsHubspotSource

func (qbs QuickBooksSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsImpalaSource

func (qbs QuickBooksSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsJiraSource

func (qbs QuickBooksSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsMagentoSource

func (qbs QuickBooksSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsMariaDBSource

func (qbs QuickBooksSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsMarketoSource

func (qbs QuickBooksSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsMongoDbSource

func (qbs QuickBooksSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsNetezzaSource

func (qbs QuickBooksSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsOracleSource

func (qbs QuickBooksSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsPaypalSource

func (qbs QuickBooksSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsPhoenixSource

func (qbs QuickBooksSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsPrestoSource

func (qbs QuickBooksSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsQuickBooksSource

func (qbs QuickBooksSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsRelationalSource

func (qbs QuickBooksSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsResponsysSource

func (qbs QuickBooksSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsSQLDWSource

func (qbs QuickBooksSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsSQLSource

func (qbs QuickBooksSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsSalesforceMarketingCloudSource

func (qbs QuickBooksSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsSalesforceSource

func (qbs QuickBooksSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsSapCloudForCustomerSource

func (qbs QuickBooksSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsSapEccSource

func (qbs QuickBooksSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsServiceNowSource

func (qbs QuickBooksSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsShopifySource

func (qbs QuickBooksSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsSparkSource

func (qbs QuickBooksSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsSquareSource

func (qbs QuickBooksSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsVerticaSource

func (qbs QuickBooksSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsWebSource

func (qbs QuickBooksSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsXeroSource

func (qbs QuickBooksSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) AsZohoSource

func (qbs QuickBooksSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for QuickBooksSource.

func (QuickBooksSource) MarshalJSON

func (qbs QuickBooksSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for QuickBooksSource.

type RecurrenceFrequency

type RecurrenceFrequency string

RecurrenceFrequency enumerates the values for recurrence frequency.

const (
	// Day ...
	Day RecurrenceFrequency = "Day"
	// Hour ...
	Hour RecurrenceFrequency = "Hour"
	// Minute ...
	Minute RecurrenceFrequency = "Minute"
	// Month ...
	Month RecurrenceFrequency = "Month"
	// NotSpecified ...
	NotSpecified RecurrenceFrequency = "NotSpecified"
	// Week ...
	Week RecurrenceFrequency = "Week"
	// Year ...
	Year RecurrenceFrequency = "Year"
)

func PossibleRecurrenceFrequencyValues

func PossibleRecurrenceFrequencyValues() []RecurrenceFrequency

PossibleRecurrenceFrequencyValues returns an array of possible values for the RecurrenceFrequency const type.

type RecurrenceSchedule

type RecurrenceSchedule struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Minutes - The minutes.
	Minutes *[]int32 `json:"minutes,omitempty"`
	// Hours - The hours.
	Hours *[]int32 `json:"hours,omitempty"`
	// WeekDays - The days of the week.
	WeekDays *[]DaysOfWeek `json:"weekDays,omitempty"`
	// MonthDays - The month days.
	MonthDays *[]int32 `json:"monthDays,omitempty"`
	// MonthlyOccurrences - The monthly occurrences.
	MonthlyOccurrences *[]RecurrenceScheduleOccurrence `json:"monthlyOccurrences,omitempty"`
}

RecurrenceSchedule the recurrence schedule.

func (RecurrenceSchedule) MarshalJSON

func (rs RecurrenceSchedule) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for RecurrenceSchedule.

type RecurrenceScheduleOccurrence

type RecurrenceScheduleOccurrence struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Day - The day of the week. Possible values include: 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'
	Day DayOfWeek `json:"day,omitempty"`
	// Occurrence - The occurrence.
	Occurrence *int32 `json:"occurrence,omitempty"`
}

RecurrenceScheduleOccurrence the recurrence schedule occurence.

func (RecurrenceScheduleOccurrence) MarshalJSON

func (rso RecurrenceScheduleOccurrence) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for RecurrenceScheduleOccurrence.

type RedirectIncompatibleRowSettings

type RedirectIncompatibleRowSettings struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// LinkedServiceName - Name of the Azure Storage, Storage SAS, or Azure Data Lake Store linked service used for redirecting incompatible row. Must be specified if redirectIncompatibleRowSettings is specified. Type: string (or Expression with resultType string).
	LinkedServiceName interface{} `json:"linkedServiceName,omitempty"`
	// Path - The path for storing the redirect incompatible row data. Type: string (or Expression with resultType string).
	Path interface{} `json:"path,omitempty"`
}

RedirectIncompatibleRowSettings redirect incompatible row settings

func (RedirectIncompatibleRowSettings) MarshalJSON

func (rirs RedirectIncompatibleRowSettings) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for RedirectIncompatibleRowSettings.

type RedshiftUnloadSettings

type RedshiftUnloadSettings struct {
	// S3LinkedServiceName - The name of the Amazon S3 linked service which will be used for the unload operation when copying from the Amazon Redshift source.
	S3LinkedServiceName *LinkedServiceReference `json:"s3LinkedServiceName,omitempty"`
	// BucketName - The bucket of the interim Amazon S3 which will be used to store the unloaded data from Amazon Redshift source. The bucket must be in the same region as the Amazon Redshift source. Type: string (or Expression with resultType string).
	BucketName interface{} `json:"bucketName,omitempty"`
}

RedshiftUnloadSettings the Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.

type RelationalSource

type RelationalSource struct {
	// Query - Database query. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

RelationalSource a copy activity source for various relational databases.

func (RelationalSource) AsAmazonMWSSource

func (rs RelationalSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsAmazonRedshiftSource

func (rs RelationalSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsAzureDataLakeStoreSource

func (rs RelationalSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsAzureMySQLSource

func (rs RelationalSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsAzurePostgreSQLSource

func (rs RelationalSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsAzureTableSource

func (rs RelationalSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsBasicCopySource

func (rs RelationalSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsBlobSource

func (rs RelationalSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsCassandraSource

func (rs RelationalSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsConcurSource

func (rs RelationalSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsCopySource

func (rs RelationalSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsCouchbaseSource

func (rs RelationalSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsDocumentDbCollectionSource

func (rs RelationalSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsDrillSource

func (rs RelationalSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsDynamicsSource

func (rs RelationalSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsEloquaSource

func (rs RelationalSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsFileSystemSource

func (rs RelationalSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsGoogleBigQuerySource

func (rs RelationalSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsGreenplumSource

func (rs RelationalSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsHBaseSource

func (rs RelationalSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsHTTPSource

func (rs RelationalSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsHdfsSource

func (rs RelationalSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsHiveSource

func (rs RelationalSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsHubspotSource

func (rs RelationalSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsImpalaSource

func (rs RelationalSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsJiraSource

func (rs RelationalSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsMagentoSource

func (rs RelationalSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsMariaDBSource

func (rs RelationalSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsMarketoSource

func (rs RelationalSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsMongoDbSource

func (rs RelationalSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsNetezzaSource

func (rs RelationalSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsOracleSource

func (rs RelationalSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsPaypalSource

func (rs RelationalSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsPhoenixSource

func (rs RelationalSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsPrestoSource

func (rs RelationalSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsQuickBooksSource

func (rs RelationalSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsRelationalSource

func (rs RelationalSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsResponsysSource

func (rs RelationalSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsSQLDWSource

func (rs RelationalSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsSQLSource

func (rs RelationalSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsSalesforceMarketingCloudSource

func (rs RelationalSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsSalesforceSource

func (rs RelationalSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsSapCloudForCustomerSource

func (rs RelationalSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsSapEccSource

func (rs RelationalSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsServiceNowSource

func (rs RelationalSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsShopifySource

func (rs RelationalSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsSparkSource

func (rs RelationalSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsSquareSource

func (rs RelationalSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsVerticaSource

func (rs RelationalSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsWebSource

func (rs RelationalSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsXeroSource

func (rs RelationalSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) AsZohoSource

func (rs RelationalSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for RelationalSource.

func (RelationalSource) MarshalJSON

func (rs RelationalSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for RelationalSource.

type RelationalTableDataset

type RelationalTableDataset struct {
	// RelationalTableDatasetTypeProperties - Relational table dataset properties.
	*RelationalTableDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

RelationalTableDataset the relational table dataset.

func (RelationalTableDataset) AsAmazonMWSObjectDataset

func (rtd RelationalTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsAmazonS3Dataset

func (rtd RelationalTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsAzureBlobDataset

func (rtd RelationalTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsAzureDataLakeStoreDataset

func (rtd RelationalTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsAzureMySQLTableDataset

func (rtd RelationalTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsAzurePostgreSQLTableDataset

func (rtd RelationalTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsAzureSQLDWTableDataset

func (rtd RelationalTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsAzureSQLTableDataset

func (rtd RelationalTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsAzureSearchIndexDataset

func (rtd RelationalTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsAzureTableDataset

func (rtd RelationalTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsBasicDataset

func (rtd RelationalTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsCassandraTableDataset

func (rtd RelationalTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsConcurObjectDataset

func (rtd RelationalTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsCouchbaseTableDataset

func (rtd RelationalTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsCustomDataset

func (rtd RelationalTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsDataset

func (rtd RelationalTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsDocumentDbCollectionDataset

func (rtd RelationalTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsDrillTableDataset

func (rtd RelationalTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsDynamicsEntityDataset

func (rtd RelationalTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsEloquaObjectDataset

func (rtd RelationalTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsFileShareDataset

func (rtd RelationalTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsGoogleBigQueryObjectDataset

func (rtd RelationalTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsGreenplumTableDataset

func (rtd RelationalTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsHBaseObjectDataset

func (rtd RelationalTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsHTTPDataset

func (rtd RelationalTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsHiveObjectDataset

func (rtd RelationalTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsHubspotObjectDataset

func (rtd RelationalTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsImpalaObjectDataset

func (rtd RelationalTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsJiraObjectDataset

func (rtd RelationalTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsMagentoObjectDataset

func (rtd RelationalTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsMariaDBTableDataset

func (rtd RelationalTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsMarketoObjectDataset

func (rtd RelationalTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsMongoDbCollectionDataset

func (rtd RelationalTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsNetezzaTableDataset

func (rtd RelationalTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsODataResourceDataset

func (rtd RelationalTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsOracleTableDataset

func (rtd RelationalTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsPaypalObjectDataset

func (rtd RelationalTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsPhoenixObjectDataset

func (rtd RelationalTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsPrestoObjectDataset

func (rtd RelationalTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsQuickBooksObjectDataset

func (rtd RelationalTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsRelationalTableDataset

func (rtd RelationalTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsResponsysObjectDataset

func (rtd RelationalTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsSQLServerTableDataset

func (rtd RelationalTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsSalesforceMarketingCloudObjectDataset

func (rtd RelationalTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsSalesforceObjectDataset

func (rtd RelationalTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsSapCloudForCustomerResourceDataset

func (rtd RelationalTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsSapEccResourceDataset

func (rtd RelationalTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsServiceNowObjectDataset

func (rtd RelationalTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsShopifyObjectDataset

func (rtd RelationalTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsSparkObjectDataset

func (rtd RelationalTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsSquareObjectDataset

func (rtd RelationalTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsVerticaTableDataset

func (rtd RelationalTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsWebTableDataset

func (rtd RelationalTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsXeroObjectDataset

func (rtd RelationalTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) AsZohoObjectDataset

func (rtd RelationalTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for RelationalTableDataset.

func (RelationalTableDataset) MarshalJSON

func (rtd RelationalTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for RelationalTableDataset.

func (*RelationalTableDataset) UnmarshalJSON

func (rtd *RelationalTableDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for RelationalTableDataset struct.

type RelationalTableDatasetTypeProperties

type RelationalTableDatasetTypeProperties struct {
	// TableName - The relational table name. Type: string (or Expression with resultType string).
	TableName interface{} `json:"tableName,omitempty"`
}

RelationalTableDatasetTypeProperties relational table dataset properties.

type Resource

type Resource struct {
	// ID - The resource identifier.
	ID *string `json:"id,omitempty"`
	// Name - The resource name.
	Name *string `json:"name,omitempty"`
	// Type - The resource type.
	Type *string `json:"type,omitempty"`
	// Location - The resource location.
	Location *string `json:"location,omitempty"`
	// Tags - The resource tags.
	Tags map[string]*string `json:"tags"`
}

Resource azure Data Factory top-level resource.

func (Resource) MarshalJSON

func (r Resource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for Resource.

type ResponsysLinkedService

type ResponsysLinkedService struct {
	// ResponsysLinkedServiceTypeProperties - Responsys linked service properties.
	*ResponsysLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

ResponsysLinkedService responsys linked service.

func (ResponsysLinkedService) AsAmazonMWSLinkedService

func (rls ResponsysLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAmazonRedshiftLinkedService

func (rls ResponsysLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAmazonS3LinkedService

func (rls ResponsysLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAzureBatchLinkedService

func (rls ResponsysLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (rls ResponsysLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAzureDataLakeStoreLinkedService

func (rls ResponsysLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAzureDatabricksLinkedService

func (rls ResponsysLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAzureKeyVaultLinkedService

func (rls ResponsysLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAzureMLLinkedService

func (rls ResponsysLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAzureMySQLLinkedService

func (rls ResponsysLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAzurePostgreSQLLinkedService

func (rls ResponsysLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAzureSQLDWLinkedService

func (rls ResponsysLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAzureSQLDatabaseLinkedService

func (rls ResponsysLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAzureSearchLinkedService

func (rls ResponsysLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsAzureStorageLinkedService

func (rls ResponsysLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsBasicLinkedService

func (rls ResponsysLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsCassandraLinkedService

func (rls ResponsysLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsConcurLinkedService

func (rls ResponsysLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsCosmosDbLinkedService

func (rls ResponsysLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsCouchbaseLinkedService

func (rls ResponsysLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsCustomDataSourceLinkedService

func (rls ResponsysLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsDb2LinkedService

func (rls ResponsysLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsDrillLinkedService

func (rls ResponsysLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsDynamicsLinkedService

func (rls ResponsysLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsEloquaLinkedService

func (rls ResponsysLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsFileServerLinkedService

func (rls ResponsysLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsFtpServerLinkedService

func (rls ResponsysLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsGoogleBigQueryLinkedService

func (rls ResponsysLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsGreenplumLinkedService

func (rls ResponsysLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsHBaseLinkedService

func (rls ResponsysLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsHDInsightLinkedService

func (rls ResponsysLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsHDInsightOnDemandLinkedService

func (rls ResponsysLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsHTTPLinkedService

func (rls ResponsysLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsHdfsLinkedService

func (rls ResponsysLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsHiveLinkedService

func (rls ResponsysLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsHubspotLinkedService

func (rls ResponsysLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsImpalaLinkedService

func (rls ResponsysLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsJiraLinkedService

func (rls ResponsysLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsLinkedService

func (rls ResponsysLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsMagentoLinkedService

func (rls ResponsysLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsMariaDBLinkedService

func (rls ResponsysLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsMarketoLinkedService

func (rls ResponsysLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsMongoDbLinkedService

func (rls ResponsysLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsMySQLLinkedService

func (rls ResponsysLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsNetezzaLinkedService

func (rls ResponsysLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsODataLinkedService

func (rls ResponsysLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsOdbcLinkedService

func (rls ResponsysLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsOracleLinkedService

func (rls ResponsysLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsPaypalLinkedService

func (rls ResponsysLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsPhoenixLinkedService

func (rls ResponsysLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsPostgreSQLLinkedService

func (rls ResponsysLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsPrestoLinkedService

func (rls ResponsysLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsQuickBooksLinkedService

func (rls ResponsysLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsResponsysLinkedService

func (rls ResponsysLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsSQLServerLinkedService

func (rls ResponsysLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsSalesforceLinkedService

func (rls ResponsysLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsSalesforceMarketingCloudLinkedService

func (rls ResponsysLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsSapBWLinkedService

func (rls ResponsysLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsSapCloudForCustomerLinkedService

func (rls ResponsysLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsSapEccLinkedService

func (rls ResponsysLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsSapHanaLinkedService

func (rls ResponsysLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsServiceNowLinkedService

func (rls ResponsysLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsSftpServerLinkedService

func (rls ResponsysLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsShopifyLinkedService

func (rls ResponsysLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsSparkLinkedService

func (rls ResponsysLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsSquareLinkedService

func (rls ResponsysLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsSybaseLinkedService

func (rls ResponsysLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsTeradataLinkedService

func (rls ResponsysLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsVerticaLinkedService

func (rls ResponsysLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsWebLinkedService

func (rls ResponsysLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsXeroLinkedService

func (rls ResponsysLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) AsZohoLinkedService

func (rls ResponsysLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for ResponsysLinkedService.

func (ResponsysLinkedService) MarshalJSON

func (rls ResponsysLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ResponsysLinkedService.

func (*ResponsysLinkedService) UnmarshalJSON

func (rls *ResponsysLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ResponsysLinkedService struct.

type ResponsysLinkedServiceTypeProperties

type ResponsysLinkedServiceTypeProperties struct {
	// Endpoint - The endpoint of the Responsys server.
	Endpoint interface{} `json:"endpoint,omitempty"`
	// ClientID - The client ID associated with the Responsys application. Type: string (or Expression with resultType string).
	ClientID interface{} `json:"clientId,omitempty"`
	// ClientSecret - The client secret associated with the Responsys application. Type: string (or Expression with resultType string).
	ClientSecret BasicSecretBase `json:"clientSecret,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

ResponsysLinkedServiceTypeProperties responsys linked service properties.

func (*ResponsysLinkedServiceTypeProperties) UnmarshalJSON

func (rlstp *ResponsysLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ResponsysLinkedServiceTypeProperties struct.

type ResponsysObjectDataset

type ResponsysObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

ResponsysObjectDataset responsys dataset.

func (ResponsysObjectDataset) AsAmazonMWSObjectDataset

func (rod ResponsysObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsAmazonS3Dataset

func (rod ResponsysObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsAzureBlobDataset

func (rod ResponsysObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsAzureDataLakeStoreDataset

func (rod ResponsysObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsAzureMySQLTableDataset

func (rod ResponsysObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsAzurePostgreSQLTableDataset

func (rod ResponsysObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsAzureSQLDWTableDataset

func (rod ResponsysObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsAzureSQLTableDataset

func (rod ResponsysObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsAzureSearchIndexDataset

func (rod ResponsysObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsAzureTableDataset

func (rod ResponsysObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsBasicDataset

func (rod ResponsysObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsCassandraTableDataset

func (rod ResponsysObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsConcurObjectDataset

func (rod ResponsysObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsCouchbaseTableDataset

func (rod ResponsysObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsCustomDataset

func (rod ResponsysObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsDataset

func (rod ResponsysObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsDocumentDbCollectionDataset

func (rod ResponsysObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsDrillTableDataset

func (rod ResponsysObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsDynamicsEntityDataset

func (rod ResponsysObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsEloquaObjectDataset

func (rod ResponsysObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsFileShareDataset

func (rod ResponsysObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsGoogleBigQueryObjectDataset

func (rod ResponsysObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsGreenplumTableDataset

func (rod ResponsysObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsHBaseObjectDataset

func (rod ResponsysObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsHTTPDataset

func (rod ResponsysObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsHiveObjectDataset

func (rod ResponsysObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsHubspotObjectDataset

func (rod ResponsysObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsImpalaObjectDataset

func (rod ResponsysObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsJiraObjectDataset

func (rod ResponsysObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsMagentoObjectDataset

func (rod ResponsysObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsMariaDBTableDataset

func (rod ResponsysObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsMarketoObjectDataset

func (rod ResponsysObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsMongoDbCollectionDataset

func (rod ResponsysObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsNetezzaTableDataset

func (rod ResponsysObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsODataResourceDataset

func (rod ResponsysObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsOracleTableDataset

func (rod ResponsysObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsPaypalObjectDataset

func (rod ResponsysObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsPhoenixObjectDataset

func (rod ResponsysObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsPrestoObjectDataset

func (rod ResponsysObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsQuickBooksObjectDataset

func (rod ResponsysObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsRelationalTableDataset

func (rod ResponsysObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsResponsysObjectDataset

func (rod ResponsysObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsSQLServerTableDataset

func (rod ResponsysObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (rod ResponsysObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsSalesforceObjectDataset

func (rod ResponsysObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsSapCloudForCustomerResourceDataset

func (rod ResponsysObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsSapEccResourceDataset

func (rod ResponsysObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsServiceNowObjectDataset

func (rod ResponsysObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsShopifyObjectDataset

func (rod ResponsysObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsSparkObjectDataset

func (rod ResponsysObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsSquareObjectDataset

func (rod ResponsysObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsVerticaTableDataset

func (rod ResponsysObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsWebTableDataset

func (rod ResponsysObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsXeroObjectDataset

func (rod ResponsysObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) AsZohoObjectDataset

func (rod ResponsysObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for ResponsysObjectDataset.

func (ResponsysObjectDataset) MarshalJSON

func (rod ResponsysObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ResponsysObjectDataset.

type ResponsysSource

type ResponsysSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

ResponsysSource a copy activity Responsys source.

func (ResponsysSource) AsAmazonMWSSource

func (rs ResponsysSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsAmazonRedshiftSource

func (rs ResponsysSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsAzureDataLakeStoreSource

func (rs ResponsysSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsAzureMySQLSource

func (rs ResponsysSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsAzurePostgreSQLSource

func (rs ResponsysSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsAzureTableSource

func (rs ResponsysSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsBasicCopySource

func (rs ResponsysSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsBlobSource

func (rs ResponsysSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsCassandraSource

func (rs ResponsysSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsConcurSource

func (rs ResponsysSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsCopySource

func (rs ResponsysSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsCouchbaseSource

func (rs ResponsysSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsDocumentDbCollectionSource

func (rs ResponsysSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsDrillSource

func (rs ResponsysSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsDynamicsSource

func (rs ResponsysSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsEloquaSource

func (rs ResponsysSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsFileSystemSource

func (rs ResponsysSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsGoogleBigQuerySource

func (rs ResponsysSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsGreenplumSource

func (rs ResponsysSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsHBaseSource

func (rs ResponsysSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsHTTPSource

func (rs ResponsysSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsHdfsSource

func (rs ResponsysSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsHiveSource

func (rs ResponsysSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsHubspotSource

func (rs ResponsysSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsImpalaSource

func (rs ResponsysSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsJiraSource

func (rs ResponsysSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsMagentoSource

func (rs ResponsysSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsMariaDBSource

func (rs ResponsysSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsMarketoSource

func (rs ResponsysSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsMongoDbSource

func (rs ResponsysSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsNetezzaSource

func (rs ResponsysSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsOracleSource

func (rs ResponsysSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsPaypalSource

func (rs ResponsysSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsPhoenixSource

func (rs ResponsysSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsPrestoSource

func (rs ResponsysSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsQuickBooksSource

func (rs ResponsysSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsRelationalSource

func (rs ResponsysSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsResponsysSource

func (rs ResponsysSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsSQLDWSource

func (rs ResponsysSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsSQLSource

func (rs ResponsysSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsSalesforceMarketingCloudSource

func (rs ResponsysSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsSalesforceSource

func (rs ResponsysSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsSapCloudForCustomerSource

func (rs ResponsysSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsSapEccSource

func (rs ResponsysSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsServiceNowSource

func (rs ResponsysSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsShopifySource

func (rs ResponsysSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsSparkSource

func (rs ResponsysSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsSquareSource

func (rs ResponsysSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsVerticaSource

func (rs ResponsysSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsWebSource

func (rs ResponsysSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsXeroSource

func (rs ResponsysSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) AsZohoSource

func (rs ResponsysSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for ResponsysSource.

func (ResponsysSource) MarshalJSON

func (rs ResponsysSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ResponsysSource.

type RetryPolicy

type RetryPolicy struct {
	// Count - Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
	Count interface{} `json:"count,omitempty"`
	// IntervalInSeconds - Interval between retries in seconds. Default is 30.
	IntervalInSeconds *int32 `json:"intervalInSeconds,omitempty"`
}

RetryPolicy execution policy for an activity.

type SQLDWSink

type SQLDWSink struct {
	// PreCopyScript - SQL pre-copy script. Type: string (or Expression with resultType string).
	PreCopyScript interface{} `json:"preCopyScript,omitempty"`
	// AllowPolyBase - Indicates to use PolyBase to copy data into SQL Data Warehouse when applicable. Type: boolean (or Expression with resultType boolean).
	AllowPolyBase interface{} `json:"allowPolyBase,omitempty"`
	// PolyBaseSettings - Specifies PolyBase-related settings when allowPolyBase is true.
	PolyBaseSettings *PolybaseSettings `json:"polyBaseSettings,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

SQLDWSink a copy activity SQL Data Warehouse sink.

func (SQLDWSink) AsAzureDataLakeStoreSink

func (sds SQLDWSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsAzureQueueSink

func (sds SQLDWSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsAzureSearchIndexSink

func (sds SQLDWSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsAzureTableSink

func (sds SQLDWSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsBasicCopySink

func (sds SQLDWSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsBlobSink

func (sds SQLDWSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsCopySink

func (sds SQLDWSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsDocumentDbCollectionSink

func (sds SQLDWSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsDynamicsSink

func (sds SQLDWSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsFileSystemSink

func (sds SQLDWSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsOdbcSink

func (sds SQLDWSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsOracleSink

func (sds SQLDWSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsSQLDWSink

func (sds SQLDWSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsSQLSink

func (sds SQLDWSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsSalesforceSink

func (sds SQLDWSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) AsSapCloudForCustomerSink

func (sds SQLDWSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for SQLDWSink.

func (SQLDWSink) MarshalJSON

func (sds SQLDWSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SQLDWSink.

type SQLDWSource

type SQLDWSource struct {
	// SQLReaderQuery - SQL Data Warehouse reader query. Type: string (or Expression with resultType string).
	SQLReaderQuery interface{} `json:"sqlReaderQuery,omitempty"`
	// SQLReaderStoredProcedureName - Name of the stored procedure for a SQL Data Warehouse source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
	SQLReaderStoredProcedureName interface{} `json:"sqlReaderStoredProcedureName,omitempty"`
	// StoredProcedureParameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". Type: object (or Expression with resultType object), itemType: StoredProcedureParameter.
	StoredProcedureParameters interface{} `json:"storedProcedureParameters,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

SQLDWSource a copy activity SQL Data Warehouse source.

func (SQLDWSource) AsAmazonMWSSource

func (sds SQLDWSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsAmazonRedshiftSource

func (sds SQLDWSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsAzureDataLakeStoreSource

func (sds SQLDWSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsAzureMySQLSource

func (sds SQLDWSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsAzurePostgreSQLSource

func (sds SQLDWSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsAzureTableSource

func (sds SQLDWSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsBasicCopySource

func (sds SQLDWSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsBlobSource

func (sds SQLDWSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsCassandraSource

func (sds SQLDWSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsConcurSource

func (sds SQLDWSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsCopySource

func (sds SQLDWSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsCouchbaseSource

func (sds SQLDWSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsDocumentDbCollectionSource

func (sds SQLDWSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsDrillSource

func (sds SQLDWSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsDynamicsSource

func (sds SQLDWSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsEloquaSource

func (sds SQLDWSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsFileSystemSource

func (sds SQLDWSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsGoogleBigQuerySource

func (sds SQLDWSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsGreenplumSource

func (sds SQLDWSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsHBaseSource

func (sds SQLDWSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsHTTPSource

func (sds SQLDWSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsHdfsSource

func (sds SQLDWSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsHiveSource

func (sds SQLDWSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsHubspotSource

func (sds SQLDWSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsImpalaSource

func (sds SQLDWSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsJiraSource

func (sds SQLDWSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsMagentoSource

func (sds SQLDWSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsMariaDBSource

func (sds SQLDWSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsMarketoSource

func (sds SQLDWSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsMongoDbSource

func (sds SQLDWSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsNetezzaSource

func (sds SQLDWSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsOracleSource

func (sds SQLDWSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsPaypalSource

func (sds SQLDWSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsPhoenixSource

func (sds SQLDWSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsPrestoSource

func (sds SQLDWSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsQuickBooksSource

func (sds SQLDWSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsRelationalSource

func (sds SQLDWSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsResponsysSource

func (sds SQLDWSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsSQLDWSource

func (sds SQLDWSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsSQLSource

func (sds SQLDWSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsSalesforceMarketingCloudSource

func (sds SQLDWSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsSalesforceSource

func (sds SQLDWSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsSapCloudForCustomerSource

func (sds SQLDWSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsSapEccSource

func (sds SQLDWSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsServiceNowSource

func (sds SQLDWSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsShopifySource

func (sds SQLDWSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsSparkSource

func (sds SQLDWSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsSquareSource

func (sds SQLDWSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsVerticaSource

func (sds SQLDWSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsWebSource

func (sds SQLDWSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsXeroSource

func (sds SQLDWSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) AsZohoSource

func (sds SQLDWSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for SQLDWSource.

func (SQLDWSource) MarshalJSON

func (sds SQLDWSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SQLDWSource.

type SQLServerLinkedService

type SQLServerLinkedService struct {
	// SQLServerLinkedServiceTypeProperties - SQL Server linked service properties.
	*SQLServerLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

SQLServerLinkedService SQL Server linked service.

func (SQLServerLinkedService) AsAmazonMWSLinkedService

func (ssls SQLServerLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAmazonRedshiftLinkedService

func (ssls SQLServerLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAmazonS3LinkedService

func (ssls SQLServerLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAzureBatchLinkedService

func (ssls SQLServerLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (ssls SQLServerLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAzureDataLakeStoreLinkedService

func (ssls SQLServerLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAzureDatabricksLinkedService

func (ssls SQLServerLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAzureKeyVaultLinkedService

func (ssls SQLServerLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAzureMLLinkedService

func (ssls SQLServerLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAzureMySQLLinkedService

func (ssls SQLServerLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAzurePostgreSQLLinkedService

func (ssls SQLServerLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAzureSQLDWLinkedService

func (ssls SQLServerLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAzureSQLDatabaseLinkedService

func (ssls SQLServerLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAzureSearchLinkedService

func (ssls SQLServerLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsAzureStorageLinkedService

func (ssls SQLServerLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsBasicLinkedService

func (ssls SQLServerLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsCassandraLinkedService

func (ssls SQLServerLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsConcurLinkedService

func (ssls SQLServerLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsCosmosDbLinkedService

func (ssls SQLServerLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsCouchbaseLinkedService

func (ssls SQLServerLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsCustomDataSourceLinkedService

func (ssls SQLServerLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsDb2LinkedService

func (ssls SQLServerLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsDrillLinkedService

func (ssls SQLServerLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsDynamicsLinkedService

func (ssls SQLServerLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsEloquaLinkedService

func (ssls SQLServerLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsFileServerLinkedService

func (ssls SQLServerLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsFtpServerLinkedService

func (ssls SQLServerLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsGoogleBigQueryLinkedService

func (ssls SQLServerLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsGreenplumLinkedService

func (ssls SQLServerLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsHBaseLinkedService

func (ssls SQLServerLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsHDInsightLinkedService

func (ssls SQLServerLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsHDInsightOnDemandLinkedService

func (ssls SQLServerLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsHTTPLinkedService

func (ssls SQLServerLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsHdfsLinkedService

func (ssls SQLServerLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsHiveLinkedService

func (ssls SQLServerLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsHubspotLinkedService

func (ssls SQLServerLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsImpalaLinkedService

func (ssls SQLServerLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsJiraLinkedService

func (ssls SQLServerLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsLinkedService

func (ssls SQLServerLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsMagentoLinkedService

func (ssls SQLServerLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsMariaDBLinkedService

func (ssls SQLServerLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsMarketoLinkedService

func (ssls SQLServerLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsMongoDbLinkedService

func (ssls SQLServerLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsMySQLLinkedService

func (ssls SQLServerLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsNetezzaLinkedService

func (ssls SQLServerLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsODataLinkedService

func (ssls SQLServerLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsOdbcLinkedService

func (ssls SQLServerLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsOracleLinkedService

func (ssls SQLServerLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsPaypalLinkedService

func (ssls SQLServerLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsPhoenixLinkedService

func (ssls SQLServerLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsPostgreSQLLinkedService

func (ssls SQLServerLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsPrestoLinkedService

func (ssls SQLServerLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsQuickBooksLinkedService

func (ssls SQLServerLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsResponsysLinkedService

func (ssls SQLServerLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsSQLServerLinkedService

func (ssls SQLServerLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsSalesforceLinkedService

func (ssls SQLServerLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsSalesforceMarketingCloudLinkedService

func (ssls SQLServerLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsSapBWLinkedService

func (ssls SQLServerLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsSapCloudForCustomerLinkedService

func (ssls SQLServerLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsSapEccLinkedService

func (ssls SQLServerLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsSapHanaLinkedService

func (ssls SQLServerLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsServiceNowLinkedService

func (ssls SQLServerLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsSftpServerLinkedService

func (ssls SQLServerLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsShopifyLinkedService

func (ssls SQLServerLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsSparkLinkedService

func (ssls SQLServerLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsSquareLinkedService

func (ssls SQLServerLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsSybaseLinkedService

func (ssls SQLServerLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsTeradataLinkedService

func (ssls SQLServerLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsVerticaLinkedService

func (ssls SQLServerLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsWebLinkedService

func (ssls SQLServerLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsXeroLinkedService

func (ssls SQLServerLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) AsZohoLinkedService

func (ssls SQLServerLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for SQLServerLinkedService.

func (SQLServerLinkedService) MarshalJSON

func (ssls SQLServerLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SQLServerLinkedService.

func (*SQLServerLinkedService) UnmarshalJSON

func (ssls *SQLServerLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SQLServerLinkedService struct.

type SQLServerLinkedServiceTypeProperties

type SQLServerLinkedServiceTypeProperties struct {
	// ConnectionString - The connection string.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// UserName - The on-premises Windows authentication user name. Type: string (or Expression with resultType string).
	UserName interface{} `json:"userName,omitempty"`
	// Password - The on-premises Windows authentication password.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

SQLServerLinkedServiceTypeProperties SQL Server linked service properties.

func (*SQLServerLinkedServiceTypeProperties) UnmarshalJSON

func (sslstp *SQLServerLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SQLServerLinkedServiceTypeProperties struct.

type SQLServerStoredProcedureActivity

type SQLServerStoredProcedureActivity struct {
	// SQLServerStoredProcedureActivityTypeProperties - SQL stored procedure activity properties.
	*SQLServerStoredProcedureActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

SQLServerStoredProcedureActivity SQL stored procedure activity type.

func (SQLServerStoredProcedureActivity) AsActivity

func (ssspa SQLServerStoredProcedureActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsAzureMLBatchExecutionActivity

func (ssspa SQLServerStoredProcedureActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsAzureMLUpdateResourceActivity

func (ssspa SQLServerStoredProcedureActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsBasicActivity

func (ssspa SQLServerStoredProcedureActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsBasicControlActivity

func (ssspa SQLServerStoredProcedureActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsBasicExecutionActivity

func (ssspa SQLServerStoredProcedureActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsControlActivity

func (ssspa SQLServerStoredProcedureActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsCopyActivity

func (ssspa SQLServerStoredProcedureActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsCustomActivity

func (ssspa SQLServerStoredProcedureActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsDataLakeAnalyticsUSQLActivity

func (ssspa SQLServerStoredProcedureActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsDatabricksNotebookActivity

func (ssspa SQLServerStoredProcedureActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsExecutePipelineActivity

func (ssspa SQLServerStoredProcedureActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsExecuteSSISPackageActivity

func (ssspa SQLServerStoredProcedureActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsExecutionActivity

func (ssspa SQLServerStoredProcedureActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsFilterActivity

func (ssspa SQLServerStoredProcedureActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsForEachActivity

func (ssspa SQLServerStoredProcedureActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsGetMetadataActivity

func (ssspa SQLServerStoredProcedureActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsHDInsightHiveActivity

func (ssspa SQLServerStoredProcedureActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsHDInsightMapReduceActivity

func (ssspa SQLServerStoredProcedureActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsHDInsightPigActivity

func (ssspa SQLServerStoredProcedureActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsHDInsightSparkActivity

func (ssspa SQLServerStoredProcedureActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsHDInsightStreamingActivity

func (ssspa SQLServerStoredProcedureActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsIfConditionActivity

func (ssspa SQLServerStoredProcedureActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsLookupActivity

func (ssspa SQLServerStoredProcedureActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsSQLServerStoredProcedureActivity

func (ssspa SQLServerStoredProcedureActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsUntilActivity

func (ssspa SQLServerStoredProcedureActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsWaitActivity

func (ssspa SQLServerStoredProcedureActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) AsWebActivity

func (ssspa SQLServerStoredProcedureActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for SQLServerStoredProcedureActivity.

func (SQLServerStoredProcedureActivity) MarshalJSON

func (ssspa SQLServerStoredProcedureActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SQLServerStoredProcedureActivity.

func (*SQLServerStoredProcedureActivity) UnmarshalJSON

func (ssspa *SQLServerStoredProcedureActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SQLServerStoredProcedureActivity struct.

type SQLServerStoredProcedureActivityTypeProperties

type SQLServerStoredProcedureActivityTypeProperties struct {
	// StoredProcedureName - Stored procedure name. Type: string (or Expression with resultType string).
	StoredProcedureName interface{} `json:"storedProcedureName,omitempty"`
	// StoredProcedureParameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
	StoredProcedureParameters map[string]*StoredProcedureParameter `json:"storedProcedureParameters"`
}

SQLServerStoredProcedureActivityTypeProperties SQL stored procedure activity properties.

func (SQLServerStoredProcedureActivityTypeProperties) MarshalJSON

func (ssspatp SQLServerStoredProcedureActivityTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SQLServerStoredProcedureActivityTypeProperties.

type SQLServerTableDataset

type SQLServerTableDataset struct {
	// SQLServerTableDatasetTypeProperties - On-premises SQL Server dataset properties.
	*SQLServerTableDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

SQLServerTableDataset the on-premises SQL Server dataset.

func (SQLServerTableDataset) AsAmazonMWSObjectDataset

func (sstd SQLServerTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsAmazonS3Dataset

func (sstd SQLServerTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsAzureBlobDataset

func (sstd SQLServerTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsAzureDataLakeStoreDataset

func (sstd SQLServerTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsAzureMySQLTableDataset

func (sstd SQLServerTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsAzurePostgreSQLTableDataset

func (sstd SQLServerTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsAzureSQLDWTableDataset

func (sstd SQLServerTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsAzureSQLTableDataset

func (sstd SQLServerTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsAzureSearchIndexDataset

func (sstd SQLServerTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsAzureTableDataset

func (sstd SQLServerTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsBasicDataset

func (sstd SQLServerTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsCassandraTableDataset

func (sstd SQLServerTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsConcurObjectDataset

func (sstd SQLServerTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsCouchbaseTableDataset

func (sstd SQLServerTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsCustomDataset

func (sstd SQLServerTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsDataset

func (sstd SQLServerTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsDocumentDbCollectionDataset

func (sstd SQLServerTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsDrillTableDataset

func (sstd SQLServerTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsDynamicsEntityDataset

func (sstd SQLServerTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsEloquaObjectDataset

func (sstd SQLServerTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsFileShareDataset

func (sstd SQLServerTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsGoogleBigQueryObjectDataset

func (sstd SQLServerTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsGreenplumTableDataset

func (sstd SQLServerTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsHBaseObjectDataset

func (sstd SQLServerTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsHTTPDataset

func (sstd SQLServerTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsHiveObjectDataset

func (sstd SQLServerTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsHubspotObjectDataset

func (sstd SQLServerTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsImpalaObjectDataset

func (sstd SQLServerTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsJiraObjectDataset

func (sstd SQLServerTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsMagentoObjectDataset

func (sstd SQLServerTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsMariaDBTableDataset

func (sstd SQLServerTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsMarketoObjectDataset

func (sstd SQLServerTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsMongoDbCollectionDataset

func (sstd SQLServerTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsNetezzaTableDataset

func (sstd SQLServerTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsODataResourceDataset

func (sstd SQLServerTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsOracleTableDataset

func (sstd SQLServerTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsPaypalObjectDataset

func (sstd SQLServerTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsPhoenixObjectDataset

func (sstd SQLServerTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsPrestoObjectDataset

func (sstd SQLServerTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsQuickBooksObjectDataset

func (sstd SQLServerTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsRelationalTableDataset

func (sstd SQLServerTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsResponsysObjectDataset

func (sstd SQLServerTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsSQLServerTableDataset

func (sstd SQLServerTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsSalesforceMarketingCloudObjectDataset

func (sstd SQLServerTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsSalesforceObjectDataset

func (sstd SQLServerTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsSapCloudForCustomerResourceDataset

func (sstd SQLServerTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsSapEccResourceDataset

func (sstd SQLServerTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsServiceNowObjectDataset

func (sstd SQLServerTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsShopifyObjectDataset

func (sstd SQLServerTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsSparkObjectDataset

func (sstd SQLServerTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsSquareObjectDataset

func (sstd SQLServerTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsVerticaTableDataset

func (sstd SQLServerTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsWebTableDataset

func (sstd SQLServerTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsXeroObjectDataset

func (sstd SQLServerTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) AsZohoObjectDataset

func (sstd SQLServerTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for SQLServerTableDataset.

func (SQLServerTableDataset) MarshalJSON

func (sstd SQLServerTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SQLServerTableDataset.

func (*SQLServerTableDataset) UnmarshalJSON

func (sstd *SQLServerTableDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SQLServerTableDataset struct.

type SQLServerTableDatasetTypeProperties

type SQLServerTableDatasetTypeProperties struct {
	// TableName - The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
	TableName interface{} `json:"tableName,omitempty"`
}

SQLServerTableDatasetTypeProperties on-premises SQL Server dataset properties.

type SQLSink

type SQLSink struct {
	// SQLWriterStoredProcedureName - SQL writer stored procedure name. Type: string (or Expression with resultType string).
	SQLWriterStoredProcedureName interface{} `json:"sqlWriterStoredProcedureName,omitempty"`
	// SQLWriterTableType - SQL writer table type. Type: string (or Expression with resultType string).
	SQLWriterTableType interface{} `json:"sqlWriterTableType,omitempty"`
	// PreCopyScript - SQL pre-copy script. Type: string (or Expression with resultType string).
	PreCopyScript interface{} `json:"preCopyScript,omitempty"`
	// StoredProcedureParameters - SQL stored procedure parameters.
	StoredProcedureParameters map[string]*StoredProcedureParameter `json:"storedProcedureParameters"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

SQLSink a copy activity SQL sink.

func (SQLSink) AsAzureDataLakeStoreSink

func (ss SQLSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsAzureQueueSink

func (ss SQLSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsAzureSearchIndexSink

func (ss SQLSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsAzureTableSink

func (ss SQLSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsBasicCopySink

func (ss SQLSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsBlobSink

func (ss SQLSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsCopySink

func (ss SQLSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsDocumentDbCollectionSink

func (ss SQLSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsDynamicsSink

func (ss SQLSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsFileSystemSink

func (ss SQLSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsOdbcSink

func (ss SQLSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsOracleSink

func (ss SQLSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsSQLDWSink

func (ss SQLSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsSQLSink

func (ss SQLSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsSalesforceSink

func (ss SQLSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) AsSapCloudForCustomerSink

func (ss SQLSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for SQLSink.

func (SQLSink) MarshalJSON

func (ss SQLSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SQLSink.

type SQLSource

type SQLSource struct {
	// SQLReaderQuery - SQL reader query. Type: string (or Expression with resultType string).
	SQLReaderQuery interface{} `json:"sqlReaderQuery,omitempty"`
	// SQLReaderStoredProcedureName - Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
	SQLReaderStoredProcedureName interface{} `json:"sqlReaderStoredProcedureName,omitempty"`
	// StoredProcedureParameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
	StoredProcedureParameters map[string]*StoredProcedureParameter `json:"storedProcedureParameters"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

SQLSource a copy activity SQL source.

func (SQLSource) AsAmazonMWSSource

func (ss SQLSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsAmazonRedshiftSource

func (ss SQLSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsAzureDataLakeStoreSource

func (ss SQLSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsAzureMySQLSource

func (ss SQLSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsAzurePostgreSQLSource

func (ss SQLSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsAzureTableSource

func (ss SQLSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsBasicCopySource

func (ss SQLSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsBlobSource

func (ss SQLSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsCassandraSource

func (ss SQLSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsConcurSource

func (ss SQLSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsCopySource

func (ss SQLSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsCouchbaseSource

func (ss SQLSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsDocumentDbCollectionSource

func (ss SQLSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsDrillSource

func (ss SQLSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsDynamicsSource

func (ss SQLSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsEloquaSource

func (ss SQLSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsFileSystemSource

func (ss SQLSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsGoogleBigQuerySource

func (ss SQLSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsGreenplumSource

func (ss SQLSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsHBaseSource

func (ss SQLSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsHTTPSource

func (ss SQLSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsHdfsSource

func (ss SQLSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsHiveSource

func (ss SQLSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsHubspotSource

func (ss SQLSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsImpalaSource

func (ss SQLSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsJiraSource

func (ss SQLSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsMagentoSource

func (ss SQLSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsMariaDBSource

func (ss SQLSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsMarketoSource

func (ss SQLSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsMongoDbSource

func (ss SQLSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsNetezzaSource

func (ss SQLSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsOracleSource

func (ss SQLSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsPaypalSource

func (ss SQLSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsPhoenixSource

func (ss SQLSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsPrestoSource

func (ss SQLSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsQuickBooksSource

func (ss SQLSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsRelationalSource

func (ss SQLSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsResponsysSource

func (ss SQLSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsSQLDWSource

func (ss SQLSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsSQLSource

func (ss SQLSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsSalesforceMarketingCloudSource

func (ss SQLSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsSalesforceSource

func (ss SQLSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsSapCloudForCustomerSource

func (ss SQLSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsSapEccSource

func (ss SQLSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsServiceNowSource

func (ss SQLSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsShopifySource

func (ss SQLSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsSparkSource

func (ss SQLSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsSquareSource

func (ss SQLSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsVerticaSource

func (ss SQLSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsWebSource

func (ss SQLSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsXeroSource

func (ss SQLSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) AsZohoSource

func (ss SQLSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for SQLSource.

func (SQLSource) MarshalJSON

func (ss SQLSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SQLSource.

type SSISExecutionParameter

type SSISExecutionParameter struct {
	// Value - SSIS package execution parameter value. Type: string (or Expression with resultType string).
	Value interface{} `json:"value,omitempty"`
}

SSISExecutionParameter SSIS execution parameter.

type SSISExecutionRuntime

type SSISExecutionRuntime string

SSISExecutionRuntime enumerates the values for ssis execution runtime.

const (
	// X64 ...
	X64 SSISExecutionRuntime = "x64"
	// X86 ...
	X86 SSISExecutionRuntime = "x86"
)

func PossibleSSISExecutionRuntimeValues

func PossibleSSISExecutionRuntimeValues() []SSISExecutionRuntime

PossibleSSISExecutionRuntimeValues returns an array of possible values for the SSISExecutionRuntime const type.

type SSISPackageLocation

type SSISPackageLocation struct {
	// PackagePath - The SSIS package path.
	PackagePath *string `json:"packagePath,omitempty"`
}

SSISPackageLocation SSIS package location.

type SSISPropertyOverride

type SSISPropertyOverride struct {
	// Value - SSIS package property override value. Type: string (or Expression with resultType string).
	Value interface{} `json:"value,omitempty"`
	// IsSensitive - Whether SSIS package property override value is sensitive data. Value will be encrypted in SSISDB if it is true
	IsSensitive *bool `json:"isSensitive,omitempty"`
}

SSISPropertyOverride SSIS property override.

type SalesforceLinkedService

type SalesforceLinkedService struct {
	// SalesforceLinkedServiceTypeProperties - Salesforce linked service properties.
	*SalesforceLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

SalesforceLinkedService linked service for Salesforce.

func (SalesforceLinkedService) AsAmazonMWSLinkedService

func (sls SalesforceLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAmazonRedshiftLinkedService

func (sls SalesforceLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAmazonS3LinkedService

func (sls SalesforceLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAzureBatchLinkedService

func (sls SalesforceLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (sls SalesforceLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAzureDataLakeStoreLinkedService

func (sls SalesforceLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAzureDatabricksLinkedService

func (sls SalesforceLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAzureKeyVaultLinkedService

func (sls SalesforceLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAzureMLLinkedService

func (sls SalesforceLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAzureMySQLLinkedService

func (sls SalesforceLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAzurePostgreSQLLinkedService

func (sls SalesforceLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAzureSQLDWLinkedService

func (sls SalesforceLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAzureSQLDatabaseLinkedService

func (sls SalesforceLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAzureSearchLinkedService

func (sls SalesforceLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsAzureStorageLinkedService

func (sls SalesforceLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsBasicLinkedService

func (sls SalesforceLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsCassandraLinkedService

func (sls SalesforceLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsConcurLinkedService

func (sls SalesforceLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsCosmosDbLinkedService

func (sls SalesforceLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsCouchbaseLinkedService

func (sls SalesforceLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsCustomDataSourceLinkedService

func (sls SalesforceLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsDb2LinkedService

func (sls SalesforceLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsDrillLinkedService

func (sls SalesforceLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsDynamicsLinkedService

func (sls SalesforceLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsEloquaLinkedService

func (sls SalesforceLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsFileServerLinkedService

func (sls SalesforceLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsFtpServerLinkedService

func (sls SalesforceLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsGoogleBigQueryLinkedService

func (sls SalesforceLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsGreenplumLinkedService

func (sls SalesforceLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsHBaseLinkedService

func (sls SalesforceLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsHDInsightLinkedService

func (sls SalesforceLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsHDInsightOnDemandLinkedService

func (sls SalesforceLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsHTTPLinkedService

func (sls SalesforceLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsHdfsLinkedService

func (sls SalesforceLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsHiveLinkedService

func (sls SalesforceLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsHubspotLinkedService

func (sls SalesforceLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsImpalaLinkedService

func (sls SalesforceLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsJiraLinkedService

func (sls SalesforceLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsLinkedService

func (sls SalesforceLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsMagentoLinkedService

func (sls SalesforceLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsMariaDBLinkedService

func (sls SalesforceLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsMarketoLinkedService

func (sls SalesforceLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsMongoDbLinkedService

func (sls SalesforceLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsMySQLLinkedService

func (sls SalesforceLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsNetezzaLinkedService

func (sls SalesforceLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsODataLinkedService

func (sls SalesforceLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsOdbcLinkedService

func (sls SalesforceLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsOracleLinkedService

func (sls SalesforceLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsPaypalLinkedService

func (sls SalesforceLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsPhoenixLinkedService

func (sls SalesforceLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsPostgreSQLLinkedService

func (sls SalesforceLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsPrestoLinkedService

func (sls SalesforceLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsQuickBooksLinkedService

func (sls SalesforceLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsResponsysLinkedService

func (sls SalesforceLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsSQLServerLinkedService

func (sls SalesforceLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsSalesforceLinkedService

func (sls SalesforceLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsSalesforceMarketingCloudLinkedService

func (sls SalesforceLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsSapBWLinkedService

func (sls SalesforceLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsSapCloudForCustomerLinkedService

func (sls SalesforceLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsSapEccLinkedService

func (sls SalesforceLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsSapHanaLinkedService

func (sls SalesforceLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsServiceNowLinkedService

func (sls SalesforceLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsSftpServerLinkedService

func (sls SalesforceLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsShopifyLinkedService

func (sls SalesforceLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsSparkLinkedService

func (sls SalesforceLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsSquareLinkedService

func (sls SalesforceLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsSybaseLinkedService

func (sls SalesforceLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsTeradataLinkedService

func (sls SalesforceLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsVerticaLinkedService

func (sls SalesforceLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsWebLinkedService

func (sls SalesforceLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsXeroLinkedService

func (sls SalesforceLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) AsZohoLinkedService

func (sls SalesforceLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for SalesforceLinkedService.

func (SalesforceLinkedService) MarshalJSON

func (sls SalesforceLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SalesforceLinkedService.

func (*SalesforceLinkedService) UnmarshalJSON

func (sls *SalesforceLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SalesforceLinkedService struct.

type SalesforceLinkedServiceTypeProperties

type SalesforceLinkedServiceTypeProperties struct {
	// EnvironmentURL - The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
	EnvironmentURL interface{} `json:"environmentUrl,omitempty"`
	// Username - The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
	Username interface{} `json:"username,omitempty"`
	// Password - The password for Basic authentication of the Salesforce instance.
	Password BasicSecretBase `json:"password,omitempty"`
	// SecurityToken - The security token is required to remotely access Salesforce instance.
	SecurityToken BasicSecretBase `json:"securityToken,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

SalesforceLinkedServiceTypeProperties salesforce linked service properties.

func (*SalesforceLinkedServiceTypeProperties) UnmarshalJSON

func (slstp *SalesforceLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SalesforceLinkedServiceTypeProperties struct.

type SalesforceMarketingCloudLinkedService

type SalesforceMarketingCloudLinkedService struct {
	// SalesforceMarketingCloudLinkedServiceTypeProperties - Salesforce Marketing Cloud linked service properties.
	*SalesforceMarketingCloudLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

SalesforceMarketingCloudLinkedService salesforce Marketing Cloud linked service.

func (SalesforceMarketingCloudLinkedService) AsAmazonMWSLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAmazonRedshiftLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAmazonS3LinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAzureBatchLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAzureDataLakeStoreLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAzureDatabricksLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAzureKeyVaultLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAzureMLLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAzureMySQLLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAzurePostgreSQLLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAzureSQLDWLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAzureSQLDatabaseLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAzureSearchLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsAzureStorageLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsBasicLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsCassandraLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsConcurLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsCosmosDbLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsCouchbaseLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsCustomDataSourceLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsDb2LinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsDrillLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsDynamicsLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsEloquaLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsFileServerLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsFtpServerLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsGoogleBigQueryLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsGreenplumLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsHBaseLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsHDInsightLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsHDInsightOnDemandLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsHTTPLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsHdfsLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsHiveLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsHubspotLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsImpalaLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsJiraLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsMagentoLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsMariaDBLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsMarketoLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsMongoDbLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsMySQLLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsNetezzaLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsODataLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsOdbcLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsOracleLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsPaypalLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsPhoenixLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsPostgreSQLLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsPrestoLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsQuickBooksLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsResponsysLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsSQLServerLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsSalesforceLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsSalesforceMarketingCloudLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsSapBWLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsSapCloudForCustomerLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsSapEccLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsSapHanaLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsServiceNowLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsSftpServerLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsShopifyLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsSparkLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsSquareLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsSybaseLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsTeradataLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsVerticaLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsWebLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsXeroLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) AsZohoLinkedService

func (smcls SalesforceMarketingCloudLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for SalesforceMarketingCloudLinkedService.

func (SalesforceMarketingCloudLinkedService) MarshalJSON

func (smcls SalesforceMarketingCloudLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SalesforceMarketingCloudLinkedService.

func (*SalesforceMarketingCloudLinkedService) UnmarshalJSON

func (smcls *SalesforceMarketingCloudLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SalesforceMarketingCloudLinkedService struct.

type SalesforceMarketingCloudLinkedServiceTypeProperties

type SalesforceMarketingCloudLinkedServiceTypeProperties struct {
	// ClientID - The client ID associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
	ClientID interface{} `json:"clientId,omitempty"`
	// ClientSecret - The client secret associated with the Salesforce Marketing Cloud application. Type: string (or Expression with resultType string).
	ClientSecret BasicSecretBase `json:"clientSecret,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. Type: boolean (or Expression with resultType boolean).
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean).
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

SalesforceMarketingCloudLinkedServiceTypeProperties salesforce Marketing Cloud linked service properties.

func (*SalesforceMarketingCloudLinkedServiceTypeProperties) UnmarshalJSON

func (smclstp *SalesforceMarketingCloudLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SalesforceMarketingCloudLinkedServiceTypeProperties struct.

type SalesforceMarketingCloudObjectDataset

type SalesforceMarketingCloudObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

SalesforceMarketingCloudObjectDataset salesforce Marketing Cloud dataset.

func (SalesforceMarketingCloudObjectDataset) AsAmazonMWSObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsAmazonS3Dataset

func (smcod SalesforceMarketingCloudObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsAzureBlobDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsAzureDataLakeStoreDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsAzureMySQLTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsAzurePostgreSQLTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsAzureSQLDWTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsAzureSQLTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsAzureSearchIndexDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsAzureTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsBasicDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsCassandraTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsConcurObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsCouchbaseTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsCustomDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsDocumentDbCollectionDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsDrillTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsDynamicsEntityDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsEloquaObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsFileShareDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsGoogleBigQueryObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsGreenplumTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsHBaseObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsHTTPDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsHiveObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsHubspotObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsImpalaObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsJiraObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsMagentoObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsMariaDBTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsMarketoObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsMongoDbCollectionDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsNetezzaTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsODataResourceDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsOracleTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsPaypalObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsPhoenixObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsPrestoObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsQuickBooksObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsRelationalTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsResponsysObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsSQLServerTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsSalesforceObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsSapCloudForCustomerResourceDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsSapEccResourceDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsServiceNowObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsShopifyObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsSparkObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsSquareObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsVerticaTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsWebTableDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsXeroObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) AsZohoObjectDataset

func (smcod SalesforceMarketingCloudObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for SalesforceMarketingCloudObjectDataset.

func (SalesforceMarketingCloudObjectDataset) MarshalJSON

func (smcod SalesforceMarketingCloudObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SalesforceMarketingCloudObjectDataset.

type SalesforceMarketingCloudSource

type SalesforceMarketingCloudSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

SalesforceMarketingCloudSource a copy activity Salesforce Marketing Cloud source.

func (SalesforceMarketingCloudSource) AsAmazonMWSSource

func (smcs SalesforceMarketingCloudSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsAmazonRedshiftSource

func (smcs SalesforceMarketingCloudSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsAzureDataLakeStoreSource

func (smcs SalesforceMarketingCloudSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsAzureMySQLSource

func (smcs SalesforceMarketingCloudSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsAzurePostgreSQLSource

func (smcs SalesforceMarketingCloudSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsAzureTableSource

func (smcs SalesforceMarketingCloudSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsBasicCopySource

func (smcs SalesforceMarketingCloudSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsBlobSource

func (smcs SalesforceMarketingCloudSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsCassandraSource

func (smcs SalesforceMarketingCloudSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsConcurSource

func (smcs SalesforceMarketingCloudSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsCopySource

func (smcs SalesforceMarketingCloudSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsCouchbaseSource

func (smcs SalesforceMarketingCloudSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsDocumentDbCollectionSource

func (smcs SalesforceMarketingCloudSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsDrillSource

func (smcs SalesforceMarketingCloudSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsDynamicsSource

func (smcs SalesforceMarketingCloudSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsEloquaSource

func (smcs SalesforceMarketingCloudSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsFileSystemSource

func (smcs SalesforceMarketingCloudSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsGoogleBigQuerySource

func (smcs SalesforceMarketingCloudSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsGreenplumSource

func (smcs SalesforceMarketingCloudSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsHBaseSource

func (smcs SalesforceMarketingCloudSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsHTTPSource

func (smcs SalesforceMarketingCloudSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsHdfsSource

func (smcs SalesforceMarketingCloudSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsHiveSource

func (smcs SalesforceMarketingCloudSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsHubspotSource

func (smcs SalesforceMarketingCloudSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsImpalaSource

func (smcs SalesforceMarketingCloudSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsJiraSource

func (smcs SalesforceMarketingCloudSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsMagentoSource

func (smcs SalesforceMarketingCloudSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsMariaDBSource

func (smcs SalesforceMarketingCloudSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsMarketoSource

func (smcs SalesforceMarketingCloudSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsMongoDbSource

func (smcs SalesforceMarketingCloudSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsNetezzaSource

func (smcs SalesforceMarketingCloudSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsOracleSource

func (smcs SalesforceMarketingCloudSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsPaypalSource

func (smcs SalesforceMarketingCloudSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsPhoenixSource

func (smcs SalesforceMarketingCloudSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsPrestoSource

func (smcs SalesforceMarketingCloudSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsQuickBooksSource

func (smcs SalesforceMarketingCloudSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsRelationalSource

func (smcs SalesforceMarketingCloudSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsResponsysSource

func (smcs SalesforceMarketingCloudSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsSQLDWSource

func (smcs SalesforceMarketingCloudSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsSQLSource

func (smcs SalesforceMarketingCloudSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsSalesforceMarketingCloudSource

func (smcs SalesforceMarketingCloudSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsSalesforceSource

func (smcs SalesforceMarketingCloudSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsSapCloudForCustomerSource

func (smcs SalesforceMarketingCloudSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsSapEccSource

func (smcs SalesforceMarketingCloudSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsServiceNowSource

func (smcs SalesforceMarketingCloudSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsShopifySource

func (smcs SalesforceMarketingCloudSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsSparkSource

func (smcs SalesforceMarketingCloudSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsSquareSource

func (smcs SalesforceMarketingCloudSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsVerticaSource

func (smcs SalesforceMarketingCloudSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsWebSource

func (smcs SalesforceMarketingCloudSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsXeroSource

func (smcs SalesforceMarketingCloudSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) AsZohoSource

func (smcs SalesforceMarketingCloudSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for SalesforceMarketingCloudSource.

func (SalesforceMarketingCloudSource) MarshalJSON

func (smcs SalesforceMarketingCloudSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SalesforceMarketingCloudSource.

type SalesforceObjectDataset

type SalesforceObjectDataset struct {
	// SalesforceObjectDatasetTypeProperties - Salesforce object dataset properties.
	*SalesforceObjectDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

SalesforceObjectDataset the Salesforce object dataset.

func (SalesforceObjectDataset) AsAmazonMWSObjectDataset

func (sod SalesforceObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsAmazonS3Dataset

func (sod SalesforceObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsAzureBlobDataset

func (sod SalesforceObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsAzureDataLakeStoreDataset

func (sod SalesforceObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsAzureMySQLTableDataset

func (sod SalesforceObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsAzurePostgreSQLTableDataset

func (sod SalesforceObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsAzureSQLDWTableDataset

func (sod SalesforceObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsAzureSQLTableDataset

func (sod SalesforceObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsAzureSearchIndexDataset

func (sod SalesforceObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsAzureTableDataset

func (sod SalesforceObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsBasicDataset

func (sod SalesforceObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsCassandraTableDataset

func (sod SalesforceObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsConcurObjectDataset

func (sod SalesforceObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsCouchbaseTableDataset

func (sod SalesforceObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsCustomDataset

func (sod SalesforceObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsDataset

func (sod SalesforceObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsDocumentDbCollectionDataset

func (sod SalesforceObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsDrillTableDataset

func (sod SalesforceObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsDynamicsEntityDataset

func (sod SalesforceObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsEloquaObjectDataset

func (sod SalesforceObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsFileShareDataset

func (sod SalesforceObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsGoogleBigQueryObjectDataset

func (sod SalesforceObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsGreenplumTableDataset

func (sod SalesforceObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsHBaseObjectDataset

func (sod SalesforceObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsHTTPDataset

func (sod SalesforceObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsHiveObjectDataset

func (sod SalesforceObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsHubspotObjectDataset

func (sod SalesforceObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsImpalaObjectDataset

func (sod SalesforceObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsJiraObjectDataset

func (sod SalesforceObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsMagentoObjectDataset

func (sod SalesforceObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsMariaDBTableDataset

func (sod SalesforceObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsMarketoObjectDataset

func (sod SalesforceObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsMongoDbCollectionDataset

func (sod SalesforceObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsNetezzaTableDataset

func (sod SalesforceObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsODataResourceDataset

func (sod SalesforceObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsOracleTableDataset

func (sod SalesforceObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsPaypalObjectDataset

func (sod SalesforceObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsPhoenixObjectDataset

func (sod SalesforceObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsPrestoObjectDataset

func (sod SalesforceObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsQuickBooksObjectDataset

func (sod SalesforceObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsRelationalTableDataset

func (sod SalesforceObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsResponsysObjectDataset

func (sod SalesforceObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsSQLServerTableDataset

func (sod SalesforceObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (sod SalesforceObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsSalesforceObjectDataset

func (sod SalesforceObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsSapCloudForCustomerResourceDataset

func (sod SalesforceObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsSapEccResourceDataset

func (sod SalesforceObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsServiceNowObjectDataset

func (sod SalesforceObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsShopifyObjectDataset

func (sod SalesforceObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsSparkObjectDataset

func (sod SalesforceObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsSquareObjectDataset

func (sod SalesforceObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsVerticaTableDataset

func (sod SalesforceObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsWebTableDataset

func (sod SalesforceObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsXeroObjectDataset

func (sod SalesforceObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) AsZohoObjectDataset

func (sod SalesforceObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for SalesforceObjectDataset.

func (SalesforceObjectDataset) MarshalJSON

func (sod SalesforceObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SalesforceObjectDataset.

func (*SalesforceObjectDataset) UnmarshalJSON

func (sod *SalesforceObjectDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SalesforceObjectDataset struct.

type SalesforceObjectDatasetTypeProperties

type SalesforceObjectDatasetTypeProperties struct {
	// ObjectAPIName - The Salesforce object API name. Type: string (or Expression with resultType string).
	ObjectAPIName interface{} `json:"objectApiName,omitempty"`
}

SalesforceObjectDatasetTypeProperties salesforce object dataset properties.

type SalesforceSink

type SalesforceSink struct {
	// WriteBehavior - The write behavior for the operation. Default is Insert. Possible values include: 'Insert', 'Upsert'
	WriteBehavior SalesforceSinkWriteBehavior `json:"writeBehavior,omitempty"`
	// ExternalIDFieldName - The name of the external ID field for upsert operation. Default value is 'Id' column. Type: string (or Expression with resultType string).
	ExternalIDFieldName interface{} `json:"externalIdFieldName,omitempty"`
	// IgnoreNullValues - The flag indicating whether or not to ignore null values from input dataset (except key fields) during write operation. Default value is false. If set it to true, it means ADF will leave the data in the destination object unchanged when doing upsert/update operation and insert defined default value when doing insert operation, versus ADF will update the data in the destination object to NULL when doing upsert/update operation and insert NULL value when doing insert operation. Type: boolean (or Expression with resultType boolean).
	IgnoreNullValues interface{} `json:"ignoreNullValues,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

SalesforceSink a copy activity Salesforce sink.

func (SalesforceSink) AsAzureDataLakeStoreSink

func (ss SalesforceSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsAzureQueueSink

func (ss SalesforceSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsAzureSearchIndexSink

func (ss SalesforceSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsAzureTableSink

func (ss SalesforceSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsBasicCopySink

func (ss SalesforceSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsBlobSink

func (ss SalesforceSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsCopySink

func (ss SalesforceSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsDocumentDbCollectionSink

func (ss SalesforceSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsDynamicsSink

func (ss SalesforceSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsFileSystemSink

func (ss SalesforceSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsOdbcSink

func (ss SalesforceSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsOracleSink

func (ss SalesforceSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsSQLDWSink

func (ss SalesforceSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsSQLSink

func (ss SalesforceSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsSalesforceSink

func (ss SalesforceSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) AsSapCloudForCustomerSink

func (ss SalesforceSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for SalesforceSink.

func (SalesforceSink) MarshalJSON

func (ss SalesforceSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SalesforceSink.

type SalesforceSinkWriteBehavior

type SalesforceSinkWriteBehavior string

SalesforceSinkWriteBehavior enumerates the values for salesforce sink write behavior.

const (
	// Insert ...
	Insert SalesforceSinkWriteBehavior = "Insert"
	// Upsert ...
	Upsert SalesforceSinkWriteBehavior = "Upsert"
)

func PossibleSalesforceSinkWriteBehaviorValues

func PossibleSalesforceSinkWriteBehaviorValues() []SalesforceSinkWriteBehavior

PossibleSalesforceSinkWriteBehaviorValues returns an array of possible values for the SalesforceSinkWriteBehavior const type.

type SalesforceSource

type SalesforceSource struct {
	// Query - Database query. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// ReadBehavior - The read behavior for the operation. Default is Query. Possible values include: 'Query', 'QueryAll'
	ReadBehavior SalesforceSourceReadBehavior `json:"readBehavior,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

SalesforceSource a copy activity Salesforce source.

func (SalesforceSource) AsAmazonMWSSource

func (ss SalesforceSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsAmazonRedshiftSource

func (ss SalesforceSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsAzureDataLakeStoreSource

func (ss SalesforceSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsAzureMySQLSource

func (ss SalesforceSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsAzurePostgreSQLSource

func (ss SalesforceSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsAzureTableSource

func (ss SalesforceSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsBasicCopySource

func (ss SalesforceSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsBlobSource

func (ss SalesforceSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsCassandraSource

func (ss SalesforceSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsConcurSource

func (ss SalesforceSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsCopySource

func (ss SalesforceSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsCouchbaseSource

func (ss SalesforceSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsDocumentDbCollectionSource

func (ss SalesforceSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsDrillSource

func (ss SalesforceSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsDynamicsSource

func (ss SalesforceSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsEloquaSource

func (ss SalesforceSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsFileSystemSource

func (ss SalesforceSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsGoogleBigQuerySource

func (ss SalesforceSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsGreenplumSource

func (ss SalesforceSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsHBaseSource

func (ss SalesforceSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsHTTPSource

func (ss SalesforceSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsHdfsSource

func (ss SalesforceSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsHiveSource

func (ss SalesforceSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsHubspotSource

func (ss SalesforceSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsImpalaSource

func (ss SalesforceSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsJiraSource

func (ss SalesforceSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsMagentoSource

func (ss SalesforceSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsMariaDBSource

func (ss SalesforceSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsMarketoSource

func (ss SalesforceSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsMongoDbSource

func (ss SalesforceSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsNetezzaSource

func (ss SalesforceSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsOracleSource

func (ss SalesforceSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsPaypalSource

func (ss SalesforceSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsPhoenixSource

func (ss SalesforceSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsPrestoSource

func (ss SalesforceSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsQuickBooksSource

func (ss SalesforceSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsRelationalSource

func (ss SalesforceSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsResponsysSource

func (ss SalesforceSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsSQLDWSource

func (ss SalesforceSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsSQLSource

func (ss SalesforceSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsSalesforceMarketingCloudSource

func (ss SalesforceSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsSalesforceSource

func (ss SalesforceSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsSapCloudForCustomerSource

func (ss SalesforceSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsSapEccSource

func (ss SalesforceSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsServiceNowSource

func (ss SalesforceSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsShopifySource

func (ss SalesforceSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsSparkSource

func (ss SalesforceSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsSquareSource

func (ss SalesforceSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsVerticaSource

func (ss SalesforceSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsWebSource

func (ss SalesforceSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsXeroSource

func (ss SalesforceSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) AsZohoSource

func (ss SalesforceSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for SalesforceSource.

func (SalesforceSource) MarshalJSON

func (ss SalesforceSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SalesforceSource.

type SalesforceSourceReadBehavior

type SalesforceSourceReadBehavior string

SalesforceSourceReadBehavior enumerates the values for salesforce source read behavior.

const (
	// Query ...
	Query SalesforceSourceReadBehavior = "Query"
	// QueryAll ...
	QueryAll SalesforceSourceReadBehavior = "QueryAll"
)

func PossibleSalesforceSourceReadBehaviorValues

func PossibleSalesforceSourceReadBehaviorValues() []SalesforceSourceReadBehavior

PossibleSalesforceSourceReadBehaviorValues returns an array of possible values for the SalesforceSourceReadBehavior const type.

type SapBWLinkedService

type SapBWLinkedService struct {
	// SapBWLinkedServiceTypeProperties - Properties specific to this linked service type.
	*SapBWLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

SapBWLinkedService SAP Business Warehouse Linked Service.

func (SapBWLinkedService) AsAmazonMWSLinkedService

func (sbls SapBWLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAmazonRedshiftLinkedService

func (sbls SapBWLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAmazonS3LinkedService

func (sbls SapBWLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAzureBatchLinkedService

func (sbls SapBWLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (sbls SapBWLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAzureDataLakeStoreLinkedService

func (sbls SapBWLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAzureDatabricksLinkedService

func (sbls SapBWLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAzureKeyVaultLinkedService

func (sbls SapBWLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAzureMLLinkedService

func (sbls SapBWLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAzureMySQLLinkedService

func (sbls SapBWLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAzurePostgreSQLLinkedService

func (sbls SapBWLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAzureSQLDWLinkedService

func (sbls SapBWLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAzureSQLDatabaseLinkedService

func (sbls SapBWLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAzureSearchLinkedService

func (sbls SapBWLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsAzureStorageLinkedService

func (sbls SapBWLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsBasicLinkedService

func (sbls SapBWLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsCassandraLinkedService

func (sbls SapBWLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsConcurLinkedService

func (sbls SapBWLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsCosmosDbLinkedService

func (sbls SapBWLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsCouchbaseLinkedService

func (sbls SapBWLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsCustomDataSourceLinkedService

func (sbls SapBWLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsDb2LinkedService

func (sbls SapBWLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsDrillLinkedService

func (sbls SapBWLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsDynamicsLinkedService

func (sbls SapBWLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsEloquaLinkedService

func (sbls SapBWLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsFileServerLinkedService

func (sbls SapBWLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsFtpServerLinkedService

func (sbls SapBWLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsGoogleBigQueryLinkedService

func (sbls SapBWLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsGreenplumLinkedService

func (sbls SapBWLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsHBaseLinkedService

func (sbls SapBWLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsHDInsightLinkedService

func (sbls SapBWLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsHDInsightOnDemandLinkedService

func (sbls SapBWLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsHTTPLinkedService

func (sbls SapBWLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsHdfsLinkedService

func (sbls SapBWLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsHiveLinkedService

func (sbls SapBWLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsHubspotLinkedService

func (sbls SapBWLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsImpalaLinkedService

func (sbls SapBWLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsJiraLinkedService

func (sbls SapBWLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsLinkedService

func (sbls SapBWLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsMagentoLinkedService

func (sbls SapBWLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsMariaDBLinkedService

func (sbls SapBWLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsMarketoLinkedService

func (sbls SapBWLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsMongoDbLinkedService

func (sbls SapBWLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsMySQLLinkedService

func (sbls SapBWLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsNetezzaLinkedService

func (sbls SapBWLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsODataLinkedService

func (sbls SapBWLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsOdbcLinkedService

func (sbls SapBWLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsOracleLinkedService

func (sbls SapBWLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsPaypalLinkedService

func (sbls SapBWLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsPhoenixLinkedService

func (sbls SapBWLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsPostgreSQLLinkedService

func (sbls SapBWLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsPrestoLinkedService

func (sbls SapBWLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsQuickBooksLinkedService

func (sbls SapBWLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsResponsysLinkedService

func (sbls SapBWLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsSQLServerLinkedService

func (sbls SapBWLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsSalesforceLinkedService

func (sbls SapBWLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsSalesforceMarketingCloudLinkedService

func (sbls SapBWLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsSapBWLinkedService

func (sbls SapBWLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsSapCloudForCustomerLinkedService

func (sbls SapBWLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsSapEccLinkedService

func (sbls SapBWLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsSapHanaLinkedService

func (sbls SapBWLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsServiceNowLinkedService

func (sbls SapBWLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsSftpServerLinkedService

func (sbls SapBWLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsShopifyLinkedService

func (sbls SapBWLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsSparkLinkedService

func (sbls SapBWLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsSquareLinkedService

func (sbls SapBWLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsSybaseLinkedService

func (sbls SapBWLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsTeradataLinkedService

func (sbls SapBWLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsVerticaLinkedService

func (sbls SapBWLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsWebLinkedService

func (sbls SapBWLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsXeroLinkedService

func (sbls SapBWLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) AsZohoLinkedService

func (sbls SapBWLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for SapBWLinkedService.

func (SapBWLinkedService) MarshalJSON

func (sbls SapBWLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SapBWLinkedService.

func (*SapBWLinkedService) UnmarshalJSON

func (sbls *SapBWLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SapBWLinkedService struct.

type SapBWLinkedServiceTypeProperties

type SapBWLinkedServiceTypeProperties struct {
	// Server - Host name of the SAP BW instance. Type: string (or Expression with resultType string).
	Server interface{} `json:"server,omitempty"`
	// SystemNumber - System number of the BW system. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string).
	SystemNumber interface{} `json:"systemNumber,omitempty"`
	// ClientID - Client ID of the client on the BW system. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string).
	ClientID interface{} `json:"clientId,omitempty"`
	// UserName - Username to access the SAP BW server. Type: string (or Expression with resultType string).
	UserName interface{} `json:"userName,omitempty"`
	// Password - Password to access the SAP BW server.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

SapBWLinkedServiceTypeProperties properties specific to this linked service type.

func (*SapBWLinkedServiceTypeProperties) UnmarshalJSON

func (sblstp *SapBWLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SapBWLinkedServiceTypeProperties struct.

type SapCloudForCustomerLinkedService

type SapCloudForCustomerLinkedService struct {
	// SapCloudForCustomerLinkedServiceTypeProperties - SAP Cloud for Customer linked service properties.
	*SapCloudForCustomerLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

SapCloudForCustomerLinkedService linked service for SAP Cloud for Customer.

func (SapCloudForCustomerLinkedService) AsAmazonMWSLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAmazonRedshiftLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAmazonS3LinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAzureBatchLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAzureDataLakeStoreLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAzureDatabricksLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAzureKeyVaultLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAzureMLLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAzureMySQLLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAzurePostgreSQLLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAzureSQLDWLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAzureSQLDatabaseLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAzureSearchLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsAzureStorageLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsBasicLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsCassandraLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsConcurLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsCosmosDbLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsCouchbaseLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsCustomDataSourceLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsDb2LinkedService

func (scfcls SapCloudForCustomerLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsDrillLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsDynamicsLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsEloquaLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsFileServerLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsFtpServerLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsGoogleBigQueryLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsGreenplumLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsHBaseLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsHDInsightLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsHDInsightOnDemandLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsHTTPLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsHdfsLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsHiveLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsHubspotLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsImpalaLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsJiraLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsMagentoLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsMariaDBLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsMarketoLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsMongoDbLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsMySQLLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsNetezzaLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsODataLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsOdbcLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsOracleLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsPaypalLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsPhoenixLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsPostgreSQLLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsPrestoLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsQuickBooksLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsResponsysLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsSQLServerLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsSalesforceLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsSalesforceMarketingCloudLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsSapBWLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsSapCloudForCustomerLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsSapEccLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsSapHanaLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsServiceNowLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsSftpServerLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsShopifyLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsSparkLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsSquareLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsSybaseLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsTeradataLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsVerticaLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsWebLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsXeroLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) AsZohoLinkedService

func (scfcls SapCloudForCustomerLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for SapCloudForCustomerLinkedService.

func (SapCloudForCustomerLinkedService) MarshalJSON

func (scfcls SapCloudForCustomerLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SapCloudForCustomerLinkedService.

func (*SapCloudForCustomerLinkedService) UnmarshalJSON

func (scfcls *SapCloudForCustomerLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SapCloudForCustomerLinkedService struct.

type SapCloudForCustomerLinkedServiceTypeProperties

type SapCloudForCustomerLinkedServiceTypeProperties struct {
	// URL - The URL of SAP Cloud for Customer OData API. For example, '[https://[tenantname].crm.ondemand.com/sap/c4c/odata/v1]'. Type: string (or Expression with resultType string).
	URL interface{} `json:"url,omitempty"`
	// Username - The username for Basic authentication. Type: string (or Expression with resultType string).
	Username interface{} `json:"username,omitempty"`
	// Password - The password for Basic authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

SapCloudForCustomerLinkedServiceTypeProperties SAP Cloud for Customer linked service properties.

func (*SapCloudForCustomerLinkedServiceTypeProperties) UnmarshalJSON

func (scfclstp *SapCloudForCustomerLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SapCloudForCustomerLinkedServiceTypeProperties struct.

type SapCloudForCustomerResourceDataset

type SapCloudForCustomerResourceDataset struct {
	// SapCloudForCustomerResourceDatasetTypeProperties - SAP Cloud For Customer OData resource dataset properties.
	*SapCloudForCustomerResourceDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

SapCloudForCustomerResourceDataset the path of the SAP Cloud for Customer OData entity.

func (SapCloudForCustomerResourceDataset) AsAmazonMWSObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsAmazonS3Dataset

func (scfcrd SapCloudForCustomerResourceDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsAzureBlobDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsAzureDataLakeStoreDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsAzureMySQLTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsAzurePostgreSQLTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsAzureSQLDWTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsAzureSQLTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsAzureSearchIndexDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsAzureTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsBasicDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsCassandraTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsConcurObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsCouchbaseTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsCustomDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsDocumentDbCollectionDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsDrillTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsDynamicsEntityDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsEloquaObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsFileShareDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsGoogleBigQueryObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsGreenplumTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsHBaseObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsHTTPDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsHiveObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsHubspotObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsImpalaObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsJiraObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsMagentoObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsMariaDBTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsMarketoObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsMongoDbCollectionDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsNetezzaTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsODataResourceDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsOracleTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsPaypalObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsPhoenixObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsPrestoObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsQuickBooksObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsRelationalTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsResponsysObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsSQLServerTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsSalesforceMarketingCloudObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsSalesforceObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsSapCloudForCustomerResourceDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsSapEccResourceDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsServiceNowObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsShopifyObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsSparkObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsSquareObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsVerticaTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsWebTableDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsXeroObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) AsZohoObjectDataset

func (scfcrd SapCloudForCustomerResourceDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for SapCloudForCustomerResourceDataset.

func (SapCloudForCustomerResourceDataset) MarshalJSON

func (scfcrd SapCloudForCustomerResourceDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SapCloudForCustomerResourceDataset.

func (*SapCloudForCustomerResourceDataset) UnmarshalJSON

func (scfcrd *SapCloudForCustomerResourceDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SapCloudForCustomerResourceDataset struct.

type SapCloudForCustomerResourceDatasetTypeProperties

type SapCloudForCustomerResourceDatasetTypeProperties struct {
	// Path - The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
	Path interface{} `json:"path,omitempty"`
}

SapCloudForCustomerResourceDatasetTypeProperties sap Cloud For Customer OData resource dataset properties.

type SapCloudForCustomerSink

type SapCloudForCustomerSink struct {
	// WriteBehavior - The write behavior for the operation. Default is 'Insert'. Possible values include: 'SapCloudForCustomerSinkWriteBehaviorInsert', 'SapCloudForCustomerSinkWriteBehaviorUpdate'
	WriteBehavior SapCloudForCustomerSinkWriteBehavior `json:"writeBehavior,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
	WriteBatchSize interface{} `json:"writeBatchSize,omitempty"`
	// WriteBatchTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	WriteBatchTimeout interface{} `json:"writeBatchTimeout,omitempty"`
	// SinkRetryCount - Sink retry count. Type: integer (or Expression with resultType integer).
	SinkRetryCount interface{} `json:"sinkRetryCount,omitempty"`
	// SinkRetryWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SinkRetryWait interface{} `json:"sinkRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySink', 'TypeSalesforceSink', 'TypeDynamicsSink', 'TypeOdbcSink', 'TypeAzureSearchIndexSink', 'TypeAzureDataLakeStoreSink', 'TypeOracleSink', 'TypeSQLDWSink', 'TypeSQLSink', 'TypeDocumentDbCollectionSink', 'TypeFileSystemSink', 'TypeBlobSink', 'TypeAzureTableSink', 'TypeAzureQueueSink', 'TypeSapCloudForCustomerSink'
	Type TypeBasicCopySink `json:"type,omitempty"`
}

SapCloudForCustomerSink a copy activity SAP Cloud for Customer sink.

func (SapCloudForCustomerSink) AsAzureDataLakeStoreSink

func (scfcs SapCloudForCustomerSink) AsAzureDataLakeStoreSink() (*AzureDataLakeStoreSink, bool)

AsAzureDataLakeStoreSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsAzureQueueSink

func (scfcs SapCloudForCustomerSink) AsAzureQueueSink() (*AzureQueueSink, bool)

AsAzureQueueSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsAzureSearchIndexSink

func (scfcs SapCloudForCustomerSink) AsAzureSearchIndexSink() (*AzureSearchIndexSink, bool)

AsAzureSearchIndexSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsAzureTableSink

func (scfcs SapCloudForCustomerSink) AsAzureTableSink() (*AzureTableSink, bool)

AsAzureTableSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsBasicCopySink

func (scfcs SapCloudForCustomerSink) AsBasicCopySink() (BasicCopySink, bool)

AsBasicCopySink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsBlobSink

func (scfcs SapCloudForCustomerSink) AsBlobSink() (*BlobSink, bool)

AsBlobSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsCopySink

func (scfcs SapCloudForCustomerSink) AsCopySink() (*CopySink, bool)

AsCopySink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsDocumentDbCollectionSink

func (scfcs SapCloudForCustomerSink) AsDocumentDbCollectionSink() (*DocumentDbCollectionSink, bool)

AsDocumentDbCollectionSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsDynamicsSink

func (scfcs SapCloudForCustomerSink) AsDynamicsSink() (*DynamicsSink, bool)

AsDynamicsSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsFileSystemSink

func (scfcs SapCloudForCustomerSink) AsFileSystemSink() (*FileSystemSink, bool)

AsFileSystemSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsOdbcSink

func (scfcs SapCloudForCustomerSink) AsOdbcSink() (*OdbcSink, bool)

AsOdbcSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsOracleSink

func (scfcs SapCloudForCustomerSink) AsOracleSink() (*OracleSink, bool)

AsOracleSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsSQLDWSink

func (scfcs SapCloudForCustomerSink) AsSQLDWSink() (*SQLDWSink, bool)

AsSQLDWSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsSQLSink

func (scfcs SapCloudForCustomerSink) AsSQLSink() (*SQLSink, bool)

AsSQLSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsSalesforceSink

func (scfcs SapCloudForCustomerSink) AsSalesforceSink() (*SalesforceSink, bool)

AsSalesforceSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) AsSapCloudForCustomerSink

func (scfcs SapCloudForCustomerSink) AsSapCloudForCustomerSink() (*SapCloudForCustomerSink, bool)

AsSapCloudForCustomerSink is the BasicCopySink implementation for SapCloudForCustomerSink.

func (SapCloudForCustomerSink) MarshalJSON

func (scfcs SapCloudForCustomerSink) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SapCloudForCustomerSink.

type SapCloudForCustomerSinkWriteBehavior

type SapCloudForCustomerSinkWriteBehavior string

SapCloudForCustomerSinkWriteBehavior enumerates the values for sap cloud for customer sink write behavior.

const (
	// SapCloudForCustomerSinkWriteBehaviorInsert ...
	SapCloudForCustomerSinkWriteBehaviorInsert SapCloudForCustomerSinkWriteBehavior = "Insert"
	// SapCloudForCustomerSinkWriteBehaviorUpdate ...
	SapCloudForCustomerSinkWriteBehaviorUpdate SapCloudForCustomerSinkWriteBehavior = "Update"
)

func PossibleSapCloudForCustomerSinkWriteBehaviorValues

func PossibleSapCloudForCustomerSinkWriteBehaviorValues() []SapCloudForCustomerSinkWriteBehavior

PossibleSapCloudForCustomerSinkWriteBehaviorValues returns an array of possible values for the SapCloudForCustomerSinkWriteBehavior const type.

type SapCloudForCustomerSource

type SapCloudForCustomerSource struct {
	// Query - SAP Cloud for Customer OData query. For example, "$top=1". Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

SapCloudForCustomerSource a copy activity source for SAP Cloud for Customer source.

func (SapCloudForCustomerSource) AsAmazonMWSSource

func (scfcs SapCloudForCustomerSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsAmazonRedshiftSource

func (scfcs SapCloudForCustomerSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsAzureDataLakeStoreSource

func (scfcs SapCloudForCustomerSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsAzureMySQLSource

func (scfcs SapCloudForCustomerSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsAzurePostgreSQLSource

func (scfcs SapCloudForCustomerSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsAzureTableSource

func (scfcs SapCloudForCustomerSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsBasicCopySource

func (scfcs SapCloudForCustomerSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsBlobSource

func (scfcs SapCloudForCustomerSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsCassandraSource

func (scfcs SapCloudForCustomerSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsConcurSource

func (scfcs SapCloudForCustomerSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsCopySource

func (scfcs SapCloudForCustomerSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsCouchbaseSource

func (scfcs SapCloudForCustomerSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsDocumentDbCollectionSource

func (scfcs SapCloudForCustomerSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsDrillSource

func (scfcs SapCloudForCustomerSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsDynamicsSource

func (scfcs SapCloudForCustomerSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsEloquaSource

func (scfcs SapCloudForCustomerSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsFileSystemSource

func (scfcs SapCloudForCustomerSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsGoogleBigQuerySource

func (scfcs SapCloudForCustomerSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsGreenplumSource

func (scfcs SapCloudForCustomerSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsHBaseSource

func (scfcs SapCloudForCustomerSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsHTTPSource

func (scfcs SapCloudForCustomerSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsHdfsSource

func (scfcs SapCloudForCustomerSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsHiveSource

func (scfcs SapCloudForCustomerSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsHubspotSource

func (scfcs SapCloudForCustomerSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsImpalaSource

func (scfcs SapCloudForCustomerSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsJiraSource

func (scfcs SapCloudForCustomerSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsMagentoSource

func (scfcs SapCloudForCustomerSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsMariaDBSource

func (scfcs SapCloudForCustomerSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsMarketoSource

func (scfcs SapCloudForCustomerSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsMongoDbSource

func (scfcs SapCloudForCustomerSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsNetezzaSource

func (scfcs SapCloudForCustomerSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsOracleSource

func (scfcs SapCloudForCustomerSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsPaypalSource

func (scfcs SapCloudForCustomerSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsPhoenixSource

func (scfcs SapCloudForCustomerSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsPrestoSource

func (scfcs SapCloudForCustomerSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsQuickBooksSource

func (scfcs SapCloudForCustomerSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsRelationalSource

func (scfcs SapCloudForCustomerSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsResponsysSource

func (scfcs SapCloudForCustomerSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsSQLDWSource

func (scfcs SapCloudForCustomerSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsSQLSource

func (scfcs SapCloudForCustomerSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsSalesforceMarketingCloudSource

func (scfcs SapCloudForCustomerSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsSalesforceSource

func (scfcs SapCloudForCustomerSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsSapCloudForCustomerSource

func (scfcs SapCloudForCustomerSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsSapEccSource

func (scfcs SapCloudForCustomerSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsServiceNowSource

func (scfcs SapCloudForCustomerSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsShopifySource

func (scfcs SapCloudForCustomerSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsSparkSource

func (scfcs SapCloudForCustomerSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsSquareSource

func (scfcs SapCloudForCustomerSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsVerticaSource

func (scfcs SapCloudForCustomerSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsWebSource

func (scfcs SapCloudForCustomerSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsXeroSource

func (scfcs SapCloudForCustomerSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) AsZohoSource

func (scfcs SapCloudForCustomerSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for SapCloudForCustomerSource.

func (SapCloudForCustomerSource) MarshalJSON

func (scfcs SapCloudForCustomerSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SapCloudForCustomerSource.

type SapEccLinkedService

type SapEccLinkedService struct {
	// SapEccLinkedServiceTypeProperties - SAP ECC linked service properties.
	*SapEccLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

SapEccLinkedService linked service for SAP ERP Central Component(SAP ECC).

func (SapEccLinkedService) AsAmazonMWSLinkedService

func (sels SapEccLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAmazonRedshiftLinkedService

func (sels SapEccLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAmazonS3LinkedService

func (sels SapEccLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAzureBatchLinkedService

func (sels SapEccLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (sels SapEccLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAzureDataLakeStoreLinkedService

func (sels SapEccLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAzureDatabricksLinkedService

func (sels SapEccLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAzureKeyVaultLinkedService

func (sels SapEccLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAzureMLLinkedService

func (sels SapEccLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAzureMySQLLinkedService

func (sels SapEccLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAzurePostgreSQLLinkedService

func (sels SapEccLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAzureSQLDWLinkedService

func (sels SapEccLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAzureSQLDatabaseLinkedService

func (sels SapEccLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAzureSearchLinkedService

func (sels SapEccLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsAzureStorageLinkedService

func (sels SapEccLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsBasicLinkedService

func (sels SapEccLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsCassandraLinkedService

func (sels SapEccLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsConcurLinkedService

func (sels SapEccLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsCosmosDbLinkedService

func (sels SapEccLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsCouchbaseLinkedService

func (sels SapEccLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsCustomDataSourceLinkedService

func (sels SapEccLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsDb2LinkedService

func (sels SapEccLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsDrillLinkedService

func (sels SapEccLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsDynamicsLinkedService

func (sels SapEccLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsEloquaLinkedService

func (sels SapEccLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsFileServerLinkedService

func (sels SapEccLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsFtpServerLinkedService

func (sels SapEccLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsGoogleBigQueryLinkedService

func (sels SapEccLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsGreenplumLinkedService

func (sels SapEccLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsHBaseLinkedService

func (sels SapEccLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsHDInsightLinkedService

func (sels SapEccLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsHDInsightOnDemandLinkedService

func (sels SapEccLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsHTTPLinkedService

func (sels SapEccLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsHdfsLinkedService

func (sels SapEccLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsHiveLinkedService

func (sels SapEccLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsHubspotLinkedService

func (sels SapEccLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsImpalaLinkedService

func (sels SapEccLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsJiraLinkedService

func (sels SapEccLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsLinkedService

func (sels SapEccLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsMagentoLinkedService

func (sels SapEccLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsMariaDBLinkedService

func (sels SapEccLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsMarketoLinkedService

func (sels SapEccLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsMongoDbLinkedService

func (sels SapEccLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsMySQLLinkedService

func (sels SapEccLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsNetezzaLinkedService

func (sels SapEccLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsODataLinkedService

func (sels SapEccLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsOdbcLinkedService

func (sels SapEccLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsOracleLinkedService

func (sels SapEccLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsPaypalLinkedService

func (sels SapEccLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsPhoenixLinkedService

func (sels SapEccLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsPostgreSQLLinkedService

func (sels SapEccLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsPrestoLinkedService

func (sels SapEccLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsQuickBooksLinkedService

func (sels SapEccLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsResponsysLinkedService

func (sels SapEccLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsSQLServerLinkedService

func (sels SapEccLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsSalesforceLinkedService

func (sels SapEccLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsSalesforceMarketingCloudLinkedService

func (sels SapEccLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsSapBWLinkedService

func (sels SapEccLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsSapCloudForCustomerLinkedService

func (sels SapEccLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsSapEccLinkedService

func (sels SapEccLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsSapHanaLinkedService

func (sels SapEccLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsServiceNowLinkedService

func (sels SapEccLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsSftpServerLinkedService

func (sels SapEccLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsShopifyLinkedService

func (sels SapEccLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsSparkLinkedService

func (sels SapEccLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsSquareLinkedService

func (sels SapEccLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsSybaseLinkedService

func (sels SapEccLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsTeradataLinkedService

func (sels SapEccLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsVerticaLinkedService

func (sels SapEccLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsWebLinkedService

func (sels SapEccLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsXeroLinkedService

func (sels SapEccLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) AsZohoLinkedService

func (sels SapEccLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for SapEccLinkedService.

func (SapEccLinkedService) MarshalJSON

func (sels SapEccLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SapEccLinkedService.

func (*SapEccLinkedService) UnmarshalJSON

func (sels *SapEccLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SapEccLinkedService struct.

type SapEccLinkedServiceTypeProperties

type SapEccLinkedServiceTypeProperties struct {
	// URL - The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string).
	URL *string `json:"url,omitempty"`
	// Username - The username for Basic authentication. Type: string (or Expression with resultType string).
	Username *string `json:"username,omitempty"`
	// Password - The password for Basic authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string (or Expression with resultType string).
	EncryptedCredential *string `json:"encryptedCredential,omitempty"`
}

SapEccLinkedServiceTypeProperties SAP ECC linked service properties.

func (*SapEccLinkedServiceTypeProperties) UnmarshalJSON

func (selstp *SapEccLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SapEccLinkedServiceTypeProperties struct.

type SapEccResourceDataset

type SapEccResourceDataset struct {
	// SapEccResourceDatasetTypeProperties - SAP ECC OData resource dataset properties.
	*SapEccResourceDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

SapEccResourceDataset the path of the SAP ECC OData entity.

func (SapEccResourceDataset) AsAmazonMWSObjectDataset

func (serd SapEccResourceDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsAmazonS3Dataset

func (serd SapEccResourceDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsAzureBlobDataset

func (serd SapEccResourceDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsAzureDataLakeStoreDataset

func (serd SapEccResourceDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsAzureMySQLTableDataset

func (serd SapEccResourceDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsAzurePostgreSQLTableDataset

func (serd SapEccResourceDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsAzureSQLDWTableDataset

func (serd SapEccResourceDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsAzureSQLTableDataset

func (serd SapEccResourceDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsAzureSearchIndexDataset

func (serd SapEccResourceDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsAzureTableDataset

func (serd SapEccResourceDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsBasicDataset

func (serd SapEccResourceDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsCassandraTableDataset

func (serd SapEccResourceDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsConcurObjectDataset

func (serd SapEccResourceDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsCouchbaseTableDataset

func (serd SapEccResourceDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsCustomDataset

func (serd SapEccResourceDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsDataset

func (serd SapEccResourceDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsDocumentDbCollectionDataset

func (serd SapEccResourceDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsDrillTableDataset

func (serd SapEccResourceDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsDynamicsEntityDataset

func (serd SapEccResourceDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsEloquaObjectDataset

func (serd SapEccResourceDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsFileShareDataset

func (serd SapEccResourceDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsGoogleBigQueryObjectDataset

func (serd SapEccResourceDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsGreenplumTableDataset

func (serd SapEccResourceDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsHBaseObjectDataset

func (serd SapEccResourceDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsHTTPDataset

func (serd SapEccResourceDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsHiveObjectDataset

func (serd SapEccResourceDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsHubspotObjectDataset

func (serd SapEccResourceDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsImpalaObjectDataset

func (serd SapEccResourceDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsJiraObjectDataset

func (serd SapEccResourceDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsMagentoObjectDataset

func (serd SapEccResourceDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsMariaDBTableDataset

func (serd SapEccResourceDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsMarketoObjectDataset

func (serd SapEccResourceDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsMongoDbCollectionDataset

func (serd SapEccResourceDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsNetezzaTableDataset

func (serd SapEccResourceDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsODataResourceDataset

func (serd SapEccResourceDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsOracleTableDataset

func (serd SapEccResourceDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsPaypalObjectDataset

func (serd SapEccResourceDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsPhoenixObjectDataset

func (serd SapEccResourceDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsPrestoObjectDataset

func (serd SapEccResourceDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsQuickBooksObjectDataset

func (serd SapEccResourceDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsRelationalTableDataset

func (serd SapEccResourceDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsResponsysObjectDataset

func (serd SapEccResourceDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsSQLServerTableDataset

func (serd SapEccResourceDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsSalesforceMarketingCloudObjectDataset

func (serd SapEccResourceDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsSalesforceObjectDataset

func (serd SapEccResourceDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsSapCloudForCustomerResourceDataset

func (serd SapEccResourceDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsSapEccResourceDataset

func (serd SapEccResourceDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsServiceNowObjectDataset

func (serd SapEccResourceDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsShopifyObjectDataset

func (serd SapEccResourceDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsSparkObjectDataset

func (serd SapEccResourceDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsSquareObjectDataset

func (serd SapEccResourceDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsVerticaTableDataset

func (serd SapEccResourceDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsWebTableDataset

func (serd SapEccResourceDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsXeroObjectDataset

func (serd SapEccResourceDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) AsZohoObjectDataset

func (serd SapEccResourceDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for SapEccResourceDataset.

func (SapEccResourceDataset) MarshalJSON

func (serd SapEccResourceDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SapEccResourceDataset.

func (*SapEccResourceDataset) UnmarshalJSON

func (serd *SapEccResourceDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SapEccResourceDataset struct.

type SapEccResourceDatasetTypeProperties

type SapEccResourceDatasetTypeProperties struct {
	// Path - The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
	Path *string `json:"path,omitempty"`
}

SapEccResourceDatasetTypeProperties sap ECC OData resource dataset properties.

type SapEccSource

type SapEccSource struct {
	// Query - SAP ECC OData query. For example, "$top=1". Type: string (or Expression with resultType string).
	Query *string `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

SapEccSource a copy activity source for SAP ECC source.

func (SapEccSource) AsAmazonMWSSource

func (ses SapEccSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsAmazonRedshiftSource

func (ses SapEccSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsAzureDataLakeStoreSource

func (ses SapEccSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsAzureMySQLSource

func (ses SapEccSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsAzurePostgreSQLSource

func (ses SapEccSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsAzureTableSource

func (ses SapEccSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsBasicCopySource

func (ses SapEccSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsBlobSource

func (ses SapEccSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsCassandraSource

func (ses SapEccSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsConcurSource

func (ses SapEccSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsCopySource

func (ses SapEccSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsCouchbaseSource

func (ses SapEccSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsDocumentDbCollectionSource

func (ses SapEccSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsDrillSource

func (ses SapEccSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsDynamicsSource

func (ses SapEccSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsEloquaSource

func (ses SapEccSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsFileSystemSource

func (ses SapEccSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsGoogleBigQuerySource

func (ses SapEccSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsGreenplumSource

func (ses SapEccSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsHBaseSource

func (ses SapEccSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsHTTPSource

func (ses SapEccSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsHdfsSource

func (ses SapEccSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsHiveSource

func (ses SapEccSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsHubspotSource

func (ses SapEccSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsImpalaSource

func (ses SapEccSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsJiraSource

func (ses SapEccSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsMagentoSource

func (ses SapEccSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsMariaDBSource

func (ses SapEccSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsMarketoSource

func (ses SapEccSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsMongoDbSource

func (ses SapEccSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsNetezzaSource

func (ses SapEccSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsOracleSource

func (ses SapEccSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsPaypalSource

func (ses SapEccSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsPhoenixSource

func (ses SapEccSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsPrestoSource

func (ses SapEccSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsQuickBooksSource

func (ses SapEccSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsRelationalSource

func (ses SapEccSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsResponsysSource

func (ses SapEccSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsSQLDWSource

func (ses SapEccSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsSQLSource

func (ses SapEccSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsSalesforceMarketingCloudSource

func (ses SapEccSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsSalesforceSource

func (ses SapEccSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsSapCloudForCustomerSource

func (ses SapEccSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsSapEccSource

func (ses SapEccSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsServiceNowSource

func (ses SapEccSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsShopifySource

func (ses SapEccSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsSparkSource

func (ses SapEccSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsSquareSource

func (ses SapEccSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsVerticaSource

func (ses SapEccSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsWebSource

func (ses SapEccSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsXeroSource

func (ses SapEccSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) AsZohoSource

func (ses SapEccSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for SapEccSource.

func (SapEccSource) MarshalJSON

func (ses SapEccSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SapEccSource.

type SapHanaAuthenticationType

type SapHanaAuthenticationType string

SapHanaAuthenticationType enumerates the values for sap hana authentication type.

const (
	// SapHanaAuthenticationTypeBasic ...
	SapHanaAuthenticationTypeBasic SapHanaAuthenticationType = "Basic"
	// SapHanaAuthenticationTypeWindows ...
	SapHanaAuthenticationTypeWindows SapHanaAuthenticationType = "Windows"
)

func PossibleSapHanaAuthenticationTypeValues

func PossibleSapHanaAuthenticationTypeValues() []SapHanaAuthenticationType

PossibleSapHanaAuthenticationTypeValues returns an array of possible values for the SapHanaAuthenticationType const type.

type SapHanaLinkedService

type SapHanaLinkedService struct {
	// SapHanaLinkedServiceProperties - Properties specific to this linked service type.
	*SapHanaLinkedServiceProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

SapHanaLinkedService SAP HANA Linked Service.

func (SapHanaLinkedService) AsAmazonMWSLinkedService

func (shls SapHanaLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAmazonRedshiftLinkedService

func (shls SapHanaLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAmazonS3LinkedService

func (shls SapHanaLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAzureBatchLinkedService

func (shls SapHanaLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (shls SapHanaLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAzureDataLakeStoreLinkedService

func (shls SapHanaLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAzureDatabricksLinkedService

func (shls SapHanaLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAzureKeyVaultLinkedService

func (shls SapHanaLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAzureMLLinkedService

func (shls SapHanaLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAzureMySQLLinkedService

func (shls SapHanaLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAzurePostgreSQLLinkedService

func (shls SapHanaLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAzureSQLDWLinkedService

func (shls SapHanaLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAzureSQLDatabaseLinkedService

func (shls SapHanaLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAzureSearchLinkedService

func (shls SapHanaLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsAzureStorageLinkedService

func (shls SapHanaLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsBasicLinkedService

func (shls SapHanaLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsCassandraLinkedService

func (shls SapHanaLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsConcurLinkedService

func (shls SapHanaLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsCosmosDbLinkedService

func (shls SapHanaLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsCouchbaseLinkedService

func (shls SapHanaLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsCustomDataSourceLinkedService

func (shls SapHanaLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsDb2LinkedService

func (shls SapHanaLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsDrillLinkedService

func (shls SapHanaLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsDynamicsLinkedService

func (shls SapHanaLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsEloquaLinkedService

func (shls SapHanaLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsFileServerLinkedService

func (shls SapHanaLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsFtpServerLinkedService

func (shls SapHanaLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsGoogleBigQueryLinkedService

func (shls SapHanaLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsGreenplumLinkedService

func (shls SapHanaLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsHBaseLinkedService

func (shls SapHanaLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsHDInsightLinkedService

func (shls SapHanaLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsHDInsightOnDemandLinkedService

func (shls SapHanaLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsHTTPLinkedService

func (shls SapHanaLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsHdfsLinkedService

func (shls SapHanaLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsHiveLinkedService

func (shls SapHanaLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsHubspotLinkedService

func (shls SapHanaLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsImpalaLinkedService

func (shls SapHanaLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsJiraLinkedService

func (shls SapHanaLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsLinkedService

func (shls SapHanaLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsMagentoLinkedService

func (shls SapHanaLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsMariaDBLinkedService

func (shls SapHanaLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsMarketoLinkedService

func (shls SapHanaLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsMongoDbLinkedService

func (shls SapHanaLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsMySQLLinkedService

func (shls SapHanaLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsNetezzaLinkedService

func (shls SapHanaLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsODataLinkedService

func (shls SapHanaLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsOdbcLinkedService

func (shls SapHanaLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsOracleLinkedService

func (shls SapHanaLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsPaypalLinkedService

func (shls SapHanaLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsPhoenixLinkedService

func (shls SapHanaLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsPostgreSQLLinkedService

func (shls SapHanaLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsPrestoLinkedService

func (shls SapHanaLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsQuickBooksLinkedService

func (shls SapHanaLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsResponsysLinkedService

func (shls SapHanaLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsSQLServerLinkedService

func (shls SapHanaLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsSalesforceLinkedService

func (shls SapHanaLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsSalesforceMarketingCloudLinkedService

func (shls SapHanaLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsSapBWLinkedService

func (shls SapHanaLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsSapCloudForCustomerLinkedService

func (shls SapHanaLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsSapEccLinkedService

func (shls SapHanaLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsSapHanaLinkedService

func (shls SapHanaLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsServiceNowLinkedService

func (shls SapHanaLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsSftpServerLinkedService

func (shls SapHanaLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsShopifyLinkedService

func (shls SapHanaLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsSparkLinkedService

func (shls SapHanaLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsSquareLinkedService

func (shls SapHanaLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsSybaseLinkedService

func (shls SapHanaLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsTeradataLinkedService

func (shls SapHanaLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsVerticaLinkedService

func (shls SapHanaLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsWebLinkedService

func (shls SapHanaLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsXeroLinkedService

func (shls SapHanaLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) AsZohoLinkedService

func (shls SapHanaLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for SapHanaLinkedService.

func (SapHanaLinkedService) MarshalJSON

func (shls SapHanaLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SapHanaLinkedService.

func (*SapHanaLinkedService) UnmarshalJSON

func (shls *SapHanaLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SapHanaLinkedService struct.

type SapHanaLinkedServiceProperties

type SapHanaLinkedServiceProperties struct {
	// Server - Host name of the SAP HANA server. Type: string (or Expression with resultType string).
	Server interface{} `json:"server,omitempty"`
	// AuthenticationType - The authentication type to be used to connect to the SAP HANA server. Possible values include: 'SapHanaAuthenticationTypeBasic', 'SapHanaAuthenticationTypeWindows'
	AuthenticationType SapHanaAuthenticationType `json:"authenticationType,omitempty"`
	// UserName - Username to access the SAP HANA server. Type: string (or Expression with resultType string).
	UserName interface{} `json:"userName,omitempty"`
	// Password - Password to access the SAP HANA server.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

SapHanaLinkedServiceProperties properties specific to this linked service type.

func (*SapHanaLinkedServiceProperties) UnmarshalJSON

func (shlsp *SapHanaLinkedServiceProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SapHanaLinkedServiceProperties struct.

type ScheduleTrigger

type ScheduleTrigger struct {
	// ScheduleTriggerTypeProperties - Schedule Trigger properties.
	*ScheduleTriggerTypeProperties `json:"typeProperties,omitempty"`
	// Pipelines - Pipelines that need to be started.
	Pipelines *[]TriggerPipelineReference `json:"pipelines,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Trigger description.
	Description *string `json:"description,omitempty"`
	// RuntimeState - Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. Possible values include: 'TriggerRuntimeStateStarted', 'TriggerRuntimeStateStopped', 'TriggerRuntimeStateDisabled'
	RuntimeState TriggerRuntimeState `json:"runtimeState,omitempty"`
	// Type - Possible values include: 'TypeTrigger', 'TypeTumblingWindowTrigger', 'TypeBlobTrigger', 'TypeScheduleTrigger', 'TypeMultiplePipelineTrigger'
	Type TypeBasicTrigger `json:"type,omitempty"`
}

ScheduleTrigger trigger that creates pipeline runs periodically, on schedule.

func (ScheduleTrigger) AsBasicMultiplePipelineTrigger

func (st ScheduleTrigger) AsBasicMultiplePipelineTrigger() (BasicMultiplePipelineTrigger, bool)

AsBasicMultiplePipelineTrigger is the BasicTrigger implementation for ScheduleTrigger.

func (ScheduleTrigger) AsBasicTrigger

func (st ScheduleTrigger) AsBasicTrigger() (BasicTrigger, bool)

AsBasicTrigger is the BasicTrigger implementation for ScheduleTrigger.

func (ScheduleTrigger) AsBlobTrigger

func (st ScheduleTrigger) AsBlobTrigger() (*BlobTrigger, bool)

AsBlobTrigger is the BasicTrigger implementation for ScheduleTrigger.

func (ScheduleTrigger) AsMultiplePipelineTrigger

func (st ScheduleTrigger) AsMultiplePipelineTrigger() (*MultiplePipelineTrigger, bool)

AsMultiplePipelineTrigger is the BasicTrigger implementation for ScheduleTrigger.

func (ScheduleTrigger) AsScheduleTrigger

func (st ScheduleTrigger) AsScheduleTrigger() (*ScheduleTrigger, bool)

AsScheduleTrigger is the BasicTrigger implementation for ScheduleTrigger.

func (ScheduleTrigger) AsTrigger

func (st ScheduleTrigger) AsTrigger() (*Trigger, bool)

AsTrigger is the BasicTrigger implementation for ScheduleTrigger.

func (ScheduleTrigger) AsTumblingWindowTrigger

func (st ScheduleTrigger) AsTumblingWindowTrigger() (*TumblingWindowTrigger, bool)

AsTumblingWindowTrigger is the BasicTrigger implementation for ScheduleTrigger.

func (ScheduleTrigger) MarshalJSON

func (st ScheduleTrigger) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ScheduleTrigger.

func (*ScheduleTrigger) UnmarshalJSON

func (st *ScheduleTrigger) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ScheduleTrigger struct.

type ScheduleTriggerRecurrence

type ScheduleTriggerRecurrence struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Frequency - The frequency. Possible values include: 'NotSpecified', 'Minute', 'Hour', 'Day', 'Week', 'Month', 'Year'
	Frequency RecurrenceFrequency `json:"frequency,omitempty"`
	// Interval - The interval.
	Interval *int32 `json:"interval,omitempty"`
	// StartTime - The start time.
	StartTime *date.Time `json:"startTime,omitempty"`
	// EndTime - The end time.
	EndTime *date.Time `json:"endTime,omitempty"`
	// TimeZone - The time zone.
	TimeZone *string `json:"timeZone,omitempty"`
	// Schedule - The recurrence schedule.
	Schedule *RecurrenceSchedule `json:"schedule,omitempty"`
}

ScheduleTriggerRecurrence the workflow trigger recurrence.

func (ScheduleTriggerRecurrence) MarshalJSON

func (str ScheduleTriggerRecurrence) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ScheduleTriggerRecurrence.

type ScheduleTriggerTypeProperties

type ScheduleTriggerTypeProperties struct {
	// Recurrence - Recurrence schedule configuration.
	Recurrence *ScheduleTriggerRecurrence `json:"recurrence,omitempty"`
}

ScheduleTriggerTypeProperties schedule Trigger properties.

type SecretBase

type SecretBase struct {
	// Type - Possible values include: 'TypeSecretBase', 'TypeSecureString', 'TypeAzureKeyVaultSecret'
	Type Type `json:"type,omitempty"`
}

SecretBase the base definition of a secret type.

func (SecretBase) AsAzureKeyVaultSecretReference

func (sb SecretBase) AsAzureKeyVaultSecretReference() (*AzureKeyVaultSecretReference, bool)

AsAzureKeyVaultSecretReference is the BasicSecretBase implementation for SecretBase.

func (SecretBase) AsBasicSecretBase

func (sb SecretBase) AsBasicSecretBase() (BasicSecretBase, bool)

AsBasicSecretBase is the BasicSecretBase implementation for SecretBase.

func (SecretBase) AsSecretBase

func (sb SecretBase) AsSecretBase() (*SecretBase, bool)

AsSecretBase is the BasicSecretBase implementation for SecretBase.

func (SecretBase) AsSecureString

func (sb SecretBase) AsSecureString() (*SecureString, bool)

AsSecureString is the BasicSecretBase implementation for SecretBase.

func (SecretBase) MarshalJSON

func (sb SecretBase) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SecretBase.

type SecureString

type SecureString struct {
	// Value - Value of secure string.
	Value *string `json:"value,omitempty"`
	// Type - Possible values include: 'TypeSecretBase', 'TypeSecureString', 'TypeAzureKeyVaultSecret'
	Type Type `json:"type,omitempty"`
}

SecureString azure Data Factory secure string definition. The string value will be masked with asterisks '*' during Get or List API calls.

func (SecureString) AsAzureKeyVaultSecretReference

func (ss SecureString) AsAzureKeyVaultSecretReference() (*AzureKeyVaultSecretReference, bool)

AsAzureKeyVaultSecretReference is the BasicSecretBase implementation for SecureString.

func (SecureString) AsBasicSecretBase

func (ss SecureString) AsBasicSecretBase() (BasicSecretBase, bool)

AsBasicSecretBase is the BasicSecretBase implementation for SecureString.

func (SecureString) AsSecretBase

func (ss SecureString) AsSecretBase() (*SecretBase, bool)

AsSecretBase is the BasicSecretBase implementation for SecureString.

func (SecureString) AsSecureString

func (ss SecureString) AsSecureString() (*SecureString, bool)

AsSecureString is the BasicSecretBase implementation for SecureString.

func (SecureString) MarshalJSON

func (ss SecureString) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SecureString.

type SelfHostedIntegrationRuntime

type SelfHostedIntegrationRuntime struct {
	// LinkedIntegrationRuntimeTypeProperties - When this property is not null, means this is a linked integration runtime. The property is used to access original integration runtime.
	*LinkedIntegrationRuntimeTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Integration runtime description.
	Description *string `json:"description,omitempty"`
	// Type - Possible values include: 'TypeIntegrationRuntime', 'TypeSelfHosted', 'TypeManaged'
	Type TypeBasicIntegrationRuntime `json:"type,omitempty"`
}

SelfHostedIntegrationRuntime self-hosted integration runtime.

func (SelfHostedIntegrationRuntime) AsBasicIntegrationRuntime

func (shir SelfHostedIntegrationRuntime) AsBasicIntegrationRuntime() (BasicIntegrationRuntime, bool)

AsBasicIntegrationRuntime is the BasicIntegrationRuntime implementation for SelfHostedIntegrationRuntime.

func (SelfHostedIntegrationRuntime) AsIntegrationRuntime

func (shir SelfHostedIntegrationRuntime) AsIntegrationRuntime() (*IntegrationRuntime, bool)

AsIntegrationRuntime is the BasicIntegrationRuntime implementation for SelfHostedIntegrationRuntime.

func (SelfHostedIntegrationRuntime) AsManagedIntegrationRuntime

func (shir SelfHostedIntegrationRuntime) AsManagedIntegrationRuntime() (*ManagedIntegrationRuntime, bool)

AsManagedIntegrationRuntime is the BasicIntegrationRuntime implementation for SelfHostedIntegrationRuntime.

func (SelfHostedIntegrationRuntime) AsSelfHostedIntegrationRuntime

func (shir SelfHostedIntegrationRuntime) AsSelfHostedIntegrationRuntime() (*SelfHostedIntegrationRuntime, bool)

AsSelfHostedIntegrationRuntime is the BasicIntegrationRuntime implementation for SelfHostedIntegrationRuntime.

func (SelfHostedIntegrationRuntime) MarshalJSON

func (shir SelfHostedIntegrationRuntime) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SelfHostedIntegrationRuntime.

func (*SelfHostedIntegrationRuntime) UnmarshalJSON

func (shir *SelfHostedIntegrationRuntime) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SelfHostedIntegrationRuntime struct.

type SelfHostedIntegrationRuntimeNode

type SelfHostedIntegrationRuntimeNode struct {
	autorest.Response `json:"-"`
	// NodeName - Name of the integration runtime node.
	NodeName *string `json:"nodeName,omitempty"`
	// MachineName - Machine name of the integration runtime node.
	MachineName *string `json:"machineName,omitempty"`
	// HostServiceURI - URI for the host machine of the integration runtime.
	HostServiceURI *string `json:"hostServiceUri,omitempty"`
	// Status - Status of the integration runtime node. Possible values include: 'SelfHostedIntegrationRuntimeNodeStatusNeedRegistration', 'SelfHostedIntegrationRuntimeNodeStatusOnline', 'SelfHostedIntegrationRuntimeNodeStatusLimited', 'SelfHostedIntegrationRuntimeNodeStatusOffline', 'SelfHostedIntegrationRuntimeNodeStatusUpgrading', 'SelfHostedIntegrationRuntimeNodeStatusInitializing', 'SelfHostedIntegrationRuntimeNodeStatusInitializeFailed'
	Status SelfHostedIntegrationRuntimeNodeStatus `json:"status,omitempty"`
	// Capabilities - The integration runtime capabilities dictionary
	Capabilities map[string]*string `json:"capabilities"`
	// VersionStatus - Status of the integration runtime node version.
	VersionStatus *string `json:"versionStatus,omitempty"`
	// Version - Version of the integration runtime node.
	Version *string `json:"version,omitempty"`
	// RegisterTime - The time at which the integration runtime node was registered in ISO8601 format.
	RegisterTime *date.Time `json:"registerTime,omitempty"`
	// LastConnectTime - The most recent time at which the integration runtime was connected in ISO8601 format.
	LastConnectTime *date.Time `json:"lastConnectTime,omitempty"`
	// ExpiryTime - The time at which the integration runtime will expire in ISO8601 format.
	ExpiryTime *date.Time `json:"expiryTime,omitempty"`
	// LastStartTime - The time the node last started up.
	LastStartTime *date.Time `json:"lastStartTime,omitempty"`
	// LastStopTime - The integration runtime node last stop time.
	LastStopTime *date.Time `json:"lastStopTime,omitempty"`
	// LastUpdateResult - The result of the last integration runtime node update. Possible values include: 'Succeed', 'Fail'
	LastUpdateResult IntegrationRuntimeUpdateResult `json:"lastUpdateResult,omitempty"`
	// LastStartUpdateTime - The last time for the integration runtime node update start.
	LastStartUpdateTime *date.Time `json:"lastStartUpdateTime,omitempty"`
	// LastEndUpdateTime - The last time for the integration runtime node update end.
	LastEndUpdateTime *date.Time `json:"lastEndUpdateTime,omitempty"`
	// IsActiveDispatcher - Indicates whether this node is the active dispatcher for integration runtime requests.
	IsActiveDispatcher *bool `json:"isActiveDispatcher,omitempty"`
	// ConcurrentJobsLimit - Maximum concurrent jobs on the integration runtime node.
	ConcurrentJobsLimit *int32 `json:"concurrentJobsLimit,omitempty"`
	// MaxConcurrentJobs - The maximum concurrent jobs in this integration runtime.
	MaxConcurrentJobs *int32 `json:"maxConcurrentJobs,omitempty"`
}

SelfHostedIntegrationRuntimeNode properties of Self-hosted integration runtime node.

func (SelfHostedIntegrationRuntimeNode) MarshalJSON

func (shirn SelfHostedIntegrationRuntimeNode) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SelfHostedIntegrationRuntimeNode.

type SelfHostedIntegrationRuntimeNodeStatus

type SelfHostedIntegrationRuntimeNodeStatus string

SelfHostedIntegrationRuntimeNodeStatus enumerates the values for self hosted integration runtime node status.

const (
	// SelfHostedIntegrationRuntimeNodeStatusInitializeFailed ...
	SelfHostedIntegrationRuntimeNodeStatusInitializeFailed SelfHostedIntegrationRuntimeNodeStatus = "InitializeFailed"
	// SelfHostedIntegrationRuntimeNodeStatusInitializing ...
	SelfHostedIntegrationRuntimeNodeStatusInitializing SelfHostedIntegrationRuntimeNodeStatus = "Initializing"
	// SelfHostedIntegrationRuntimeNodeStatusLimited ...
	SelfHostedIntegrationRuntimeNodeStatusLimited SelfHostedIntegrationRuntimeNodeStatus = "Limited"
	// SelfHostedIntegrationRuntimeNodeStatusNeedRegistration ...
	SelfHostedIntegrationRuntimeNodeStatusNeedRegistration SelfHostedIntegrationRuntimeNodeStatus = "NeedRegistration"
	// SelfHostedIntegrationRuntimeNodeStatusOffline ...
	SelfHostedIntegrationRuntimeNodeStatusOffline SelfHostedIntegrationRuntimeNodeStatus = "Offline"
	// SelfHostedIntegrationRuntimeNodeStatusOnline ...
	SelfHostedIntegrationRuntimeNodeStatusOnline SelfHostedIntegrationRuntimeNodeStatus = "Online"
	// SelfHostedIntegrationRuntimeNodeStatusUpgrading ...
	SelfHostedIntegrationRuntimeNodeStatusUpgrading SelfHostedIntegrationRuntimeNodeStatus = "Upgrading"
)

func PossibleSelfHostedIntegrationRuntimeNodeStatusValues

func PossibleSelfHostedIntegrationRuntimeNodeStatusValues() []SelfHostedIntegrationRuntimeNodeStatus

PossibleSelfHostedIntegrationRuntimeNodeStatusValues returns an array of possible values for the SelfHostedIntegrationRuntimeNodeStatus const type.

type SelfHostedIntegrationRuntimeStatus

type SelfHostedIntegrationRuntimeStatus struct {
	// SelfHostedIntegrationRuntimeStatusTypeProperties - Self-hosted integration runtime status type properties.
	*SelfHostedIntegrationRuntimeStatusTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// DataFactoryName - The data factory name which the integration runtime belong to.
	DataFactoryName *string `json:"dataFactoryName,omitempty"`
	// State - The state of integration runtime. Possible values include: 'Initial', 'Stopped', 'Started', 'Starting', 'Stopping', 'NeedRegistration', 'Online', 'Limited', 'Offline'
	State IntegrationRuntimeState `json:"state,omitempty"`
	// Type - Possible values include: 'TypeBasicIntegrationRuntimeStatusTypeIntegrationRuntimeStatus', 'TypeBasicIntegrationRuntimeStatusTypeSelfHosted', 'TypeBasicIntegrationRuntimeStatusTypeManaged'
	Type TypeBasicIntegrationRuntimeStatus `json:"type,omitempty"`
}

SelfHostedIntegrationRuntimeStatus self-hosted integration runtime status.

func (SelfHostedIntegrationRuntimeStatus) AsBasicIntegrationRuntimeStatus

func (shirs SelfHostedIntegrationRuntimeStatus) AsBasicIntegrationRuntimeStatus() (BasicIntegrationRuntimeStatus, bool)

AsBasicIntegrationRuntimeStatus is the BasicIntegrationRuntimeStatus implementation for SelfHostedIntegrationRuntimeStatus.

func (SelfHostedIntegrationRuntimeStatus) AsIntegrationRuntimeStatus

func (shirs SelfHostedIntegrationRuntimeStatus) AsIntegrationRuntimeStatus() (*IntegrationRuntimeStatus, bool)

AsIntegrationRuntimeStatus is the BasicIntegrationRuntimeStatus implementation for SelfHostedIntegrationRuntimeStatus.

func (SelfHostedIntegrationRuntimeStatus) AsManagedIntegrationRuntimeStatus

func (shirs SelfHostedIntegrationRuntimeStatus) AsManagedIntegrationRuntimeStatus() (*ManagedIntegrationRuntimeStatus, bool)

AsManagedIntegrationRuntimeStatus is the BasicIntegrationRuntimeStatus implementation for SelfHostedIntegrationRuntimeStatus.

func (SelfHostedIntegrationRuntimeStatus) AsSelfHostedIntegrationRuntimeStatus

func (shirs SelfHostedIntegrationRuntimeStatus) AsSelfHostedIntegrationRuntimeStatus() (*SelfHostedIntegrationRuntimeStatus, bool)

AsSelfHostedIntegrationRuntimeStatus is the BasicIntegrationRuntimeStatus implementation for SelfHostedIntegrationRuntimeStatus.

func (SelfHostedIntegrationRuntimeStatus) MarshalJSON

func (shirs SelfHostedIntegrationRuntimeStatus) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SelfHostedIntegrationRuntimeStatus.

func (*SelfHostedIntegrationRuntimeStatus) UnmarshalJSON

func (shirs *SelfHostedIntegrationRuntimeStatus) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SelfHostedIntegrationRuntimeStatus struct.

type SelfHostedIntegrationRuntimeStatusTypeProperties

type SelfHostedIntegrationRuntimeStatusTypeProperties struct {
	// CreateTime - The time at which the integration runtime was created, in ISO8601 format.
	CreateTime *date.Time `json:"createTime,omitempty"`
	// TaskQueueID - The task queue id of the integration runtime.
	TaskQueueID *string `json:"taskQueueId,omitempty"`
	// InternalChannelEncryption - It is used to set the encryption mode for node-node communication channel (when more than 2 self-hosted integration runtime nodes exist). Possible values include: 'NotSet', 'SslEncrypted', 'NotEncrypted'
	InternalChannelEncryption IntegrationRuntimeInternalChannelEncryptionMode `json:"internalChannelEncryption,omitempty"`
	// Version - Version of the integration runtime.
	Version *string `json:"version,omitempty"`
	// Nodes - The list of nodes for this integration runtime.
	Nodes *[]SelfHostedIntegrationRuntimeNode `json:"nodes,omitempty"`
	// ScheduledUpdateDate - The date at which the integration runtime will be scheduled to update, in ISO8601 format.
	ScheduledUpdateDate *date.Time `json:"scheduledUpdateDate,omitempty"`
	// UpdateDelayOffset - The time in the date scheduled by service to update the integration runtime, e.g., PT03H is 3 hours
	UpdateDelayOffset *string `json:"updateDelayOffset,omitempty"`
	// LocalTimeZoneOffset - The local time zone offset in hours.
	LocalTimeZoneOffset *string `json:"localTimeZoneOffset,omitempty"`
	// Capabilities - Object with additional information about integration runtime capabilities.
	Capabilities map[string]*string `json:"capabilities"`
	// ServiceUrls - The URLs for the services used in integration runtime backend service.
	ServiceUrls *[]string `json:"serviceUrls,omitempty"`
	// AutoUpdate - Whether Self-hosted integration runtime auto update has been turned on. Possible values include: 'On', 'Off'
	AutoUpdate IntegrationRuntimeAutoUpdate `json:"autoUpdate,omitempty"`
	// VersionStatus - Status of the integration runtime version.
	VersionStatus *string `json:"versionStatus,omitempty"`
	// Links - The list of linked integration runtimes that are created to share with this integration runtime.
	Links *[]LinkedIntegrationRuntime `json:"links,omitempty"`
}

SelfHostedIntegrationRuntimeStatusTypeProperties self-hosted integration runtime status type properties.

func (SelfHostedIntegrationRuntimeStatusTypeProperties) MarshalJSON

func (shirstp SelfHostedIntegrationRuntimeStatusTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SelfHostedIntegrationRuntimeStatusTypeProperties.

type ServiceNowAuthenticationType

type ServiceNowAuthenticationType string

ServiceNowAuthenticationType enumerates the values for service now authentication type.

const (
	// ServiceNowAuthenticationTypeBasic ...
	ServiceNowAuthenticationTypeBasic ServiceNowAuthenticationType = "Basic"
	// ServiceNowAuthenticationTypeOAuth2 ...
	ServiceNowAuthenticationTypeOAuth2 ServiceNowAuthenticationType = "OAuth2"
)

func PossibleServiceNowAuthenticationTypeValues

func PossibleServiceNowAuthenticationTypeValues() []ServiceNowAuthenticationType

PossibleServiceNowAuthenticationTypeValues returns an array of possible values for the ServiceNowAuthenticationType const type.

type ServiceNowLinkedService

type ServiceNowLinkedService struct {
	// ServiceNowLinkedServiceTypeProperties - ServiceNow server linked service properties.
	*ServiceNowLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

ServiceNowLinkedService serviceNow server linked service.

func (ServiceNowLinkedService) AsAmazonMWSLinkedService

func (snls ServiceNowLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAmazonRedshiftLinkedService

func (snls ServiceNowLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAmazonS3LinkedService

func (snls ServiceNowLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAzureBatchLinkedService

func (snls ServiceNowLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (snls ServiceNowLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAzureDataLakeStoreLinkedService

func (snls ServiceNowLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAzureDatabricksLinkedService

func (snls ServiceNowLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAzureKeyVaultLinkedService

func (snls ServiceNowLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAzureMLLinkedService

func (snls ServiceNowLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAzureMySQLLinkedService

func (snls ServiceNowLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAzurePostgreSQLLinkedService

func (snls ServiceNowLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAzureSQLDWLinkedService

func (snls ServiceNowLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAzureSQLDatabaseLinkedService

func (snls ServiceNowLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAzureSearchLinkedService

func (snls ServiceNowLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsAzureStorageLinkedService

func (snls ServiceNowLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsBasicLinkedService

func (snls ServiceNowLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsCassandraLinkedService

func (snls ServiceNowLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsConcurLinkedService

func (snls ServiceNowLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsCosmosDbLinkedService

func (snls ServiceNowLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsCouchbaseLinkedService

func (snls ServiceNowLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsCustomDataSourceLinkedService

func (snls ServiceNowLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsDb2LinkedService

func (snls ServiceNowLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsDrillLinkedService

func (snls ServiceNowLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsDynamicsLinkedService

func (snls ServiceNowLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsEloquaLinkedService

func (snls ServiceNowLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsFileServerLinkedService

func (snls ServiceNowLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsFtpServerLinkedService

func (snls ServiceNowLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsGoogleBigQueryLinkedService

func (snls ServiceNowLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsGreenplumLinkedService

func (snls ServiceNowLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsHBaseLinkedService

func (snls ServiceNowLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsHDInsightLinkedService

func (snls ServiceNowLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsHDInsightOnDemandLinkedService

func (snls ServiceNowLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsHTTPLinkedService

func (snls ServiceNowLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsHdfsLinkedService

func (snls ServiceNowLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsHiveLinkedService

func (snls ServiceNowLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsHubspotLinkedService

func (snls ServiceNowLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsImpalaLinkedService

func (snls ServiceNowLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsJiraLinkedService

func (snls ServiceNowLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsLinkedService

func (snls ServiceNowLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsMagentoLinkedService

func (snls ServiceNowLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsMariaDBLinkedService

func (snls ServiceNowLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsMarketoLinkedService

func (snls ServiceNowLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsMongoDbLinkedService

func (snls ServiceNowLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsMySQLLinkedService

func (snls ServiceNowLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsNetezzaLinkedService

func (snls ServiceNowLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsODataLinkedService

func (snls ServiceNowLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsOdbcLinkedService

func (snls ServiceNowLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsOracleLinkedService

func (snls ServiceNowLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsPaypalLinkedService

func (snls ServiceNowLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsPhoenixLinkedService

func (snls ServiceNowLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsPostgreSQLLinkedService

func (snls ServiceNowLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsPrestoLinkedService

func (snls ServiceNowLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsQuickBooksLinkedService

func (snls ServiceNowLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsResponsysLinkedService

func (snls ServiceNowLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsSQLServerLinkedService

func (snls ServiceNowLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsSalesforceLinkedService

func (snls ServiceNowLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsSalesforceMarketingCloudLinkedService

func (snls ServiceNowLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsSapBWLinkedService

func (snls ServiceNowLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsSapCloudForCustomerLinkedService

func (snls ServiceNowLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsSapEccLinkedService

func (snls ServiceNowLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsSapHanaLinkedService

func (snls ServiceNowLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsServiceNowLinkedService

func (snls ServiceNowLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsSftpServerLinkedService

func (snls ServiceNowLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsShopifyLinkedService

func (snls ServiceNowLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsSparkLinkedService

func (snls ServiceNowLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsSquareLinkedService

func (snls ServiceNowLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsSybaseLinkedService

func (snls ServiceNowLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsTeradataLinkedService

func (snls ServiceNowLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsVerticaLinkedService

func (snls ServiceNowLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsWebLinkedService

func (snls ServiceNowLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsXeroLinkedService

func (snls ServiceNowLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) AsZohoLinkedService

func (snls ServiceNowLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for ServiceNowLinkedService.

func (ServiceNowLinkedService) MarshalJSON

func (snls ServiceNowLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ServiceNowLinkedService.

func (*ServiceNowLinkedService) UnmarshalJSON

func (snls *ServiceNowLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ServiceNowLinkedService struct.

type ServiceNowLinkedServiceTypeProperties

type ServiceNowLinkedServiceTypeProperties struct {
	// Endpoint - The endpoint of the ServiceNow server. (i.e. ServiceNowData.com)
	Endpoint interface{} `json:"endpoint,omitempty"`
	// AuthenticationType - The authentication type to use. Possible values include: 'ServiceNowAuthenticationTypeBasic', 'ServiceNowAuthenticationTypeOAuth2'
	AuthenticationType ServiceNowAuthenticationType `json:"authenticationType,omitempty"`
	// Username - The user name used to connect to the ServiceNow server for Basic and OAuth2 authentication.
	Username interface{} `json:"username,omitempty"`
	// Password - The password corresponding to the user name for Basic and OAuth2 authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// ClientID - The client id for OAuth2 authentication.
	ClientID interface{} `json:"clientId,omitempty"`
	// ClientSecret - The client secret for OAuth2 authentication.
	ClientSecret BasicSecretBase `json:"clientSecret,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

ServiceNowLinkedServiceTypeProperties serviceNow server linked service properties.

func (*ServiceNowLinkedServiceTypeProperties) UnmarshalJSON

func (snlstp *ServiceNowLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ServiceNowLinkedServiceTypeProperties struct.

type ServiceNowObjectDataset

type ServiceNowObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

ServiceNowObjectDataset serviceNow server dataset.

func (ServiceNowObjectDataset) AsAmazonMWSObjectDataset

func (snod ServiceNowObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsAmazonS3Dataset

func (snod ServiceNowObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsAzureBlobDataset

func (snod ServiceNowObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsAzureDataLakeStoreDataset

func (snod ServiceNowObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsAzureMySQLTableDataset

func (snod ServiceNowObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsAzurePostgreSQLTableDataset

func (snod ServiceNowObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsAzureSQLDWTableDataset

func (snod ServiceNowObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsAzureSQLTableDataset

func (snod ServiceNowObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsAzureSearchIndexDataset

func (snod ServiceNowObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsAzureTableDataset

func (snod ServiceNowObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsBasicDataset

func (snod ServiceNowObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsCassandraTableDataset

func (snod ServiceNowObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsConcurObjectDataset

func (snod ServiceNowObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsCouchbaseTableDataset

func (snod ServiceNowObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsCustomDataset

func (snod ServiceNowObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsDataset

func (snod ServiceNowObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsDocumentDbCollectionDataset

func (snod ServiceNowObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsDrillTableDataset

func (snod ServiceNowObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsDynamicsEntityDataset

func (snod ServiceNowObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsEloquaObjectDataset

func (snod ServiceNowObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsFileShareDataset

func (snod ServiceNowObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsGoogleBigQueryObjectDataset

func (snod ServiceNowObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsGreenplumTableDataset

func (snod ServiceNowObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsHBaseObjectDataset

func (snod ServiceNowObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsHTTPDataset

func (snod ServiceNowObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsHiveObjectDataset

func (snod ServiceNowObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsHubspotObjectDataset

func (snod ServiceNowObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsImpalaObjectDataset

func (snod ServiceNowObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsJiraObjectDataset

func (snod ServiceNowObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsMagentoObjectDataset

func (snod ServiceNowObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsMariaDBTableDataset

func (snod ServiceNowObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsMarketoObjectDataset

func (snod ServiceNowObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsMongoDbCollectionDataset

func (snod ServiceNowObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsNetezzaTableDataset

func (snod ServiceNowObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsODataResourceDataset

func (snod ServiceNowObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsOracleTableDataset

func (snod ServiceNowObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsPaypalObjectDataset

func (snod ServiceNowObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsPhoenixObjectDataset

func (snod ServiceNowObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsPrestoObjectDataset

func (snod ServiceNowObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsQuickBooksObjectDataset

func (snod ServiceNowObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsRelationalTableDataset

func (snod ServiceNowObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsResponsysObjectDataset

func (snod ServiceNowObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsSQLServerTableDataset

func (snod ServiceNowObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (snod ServiceNowObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsSalesforceObjectDataset

func (snod ServiceNowObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsSapCloudForCustomerResourceDataset

func (snod ServiceNowObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsSapEccResourceDataset

func (snod ServiceNowObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsServiceNowObjectDataset

func (snod ServiceNowObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsShopifyObjectDataset

func (snod ServiceNowObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsSparkObjectDataset

func (snod ServiceNowObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsSquareObjectDataset

func (snod ServiceNowObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsVerticaTableDataset

func (snod ServiceNowObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsWebTableDataset

func (snod ServiceNowObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsXeroObjectDataset

func (snod ServiceNowObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) AsZohoObjectDataset

func (snod ServiceNowObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for ServiceNowObjectDataset.

func (ServiceNowObjectDataset) MarshalJSON

func (snod ServiceNowObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ServiceNowObjectDataset.

type ServiceNowSource

type ServiceNowSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

ServiceNowSource a copy activity ServiceNow server source.

func (ServiceNowSource) AsAmazonMWSSource

func (sns ServiceNowSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsAmazonRedshiftSource

func (sns ServiceNowSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsAzureDataLakeStoreSource

func (sns ServiceNowSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsAzureMySQLSource

func (sns ServiceNowSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsAzurePostgreSQLSource

func (sns ServiceNowSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsAzureTableSource

func (sns ServiceNowSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsBasicCopySource

func (sns ServiceNowSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsBlobSource

func (sns ServiceNowSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsCassandraSource

func (sns ServiceNowSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsConcurSource

func (sns ServiceNowSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsCopySource

func (sns ServiceNowSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsCouchbaseSource

func (sns ServiceNowSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsDocumentDbCollectionSource

func (sns ServiceNowSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsDrillSource

func (sns ServiceNowSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsDynamicsSource

func (sns ServiceNowSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsEloquaSource

func (sns ServiceNowSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsFileSystemSource

func (sns ServiceNowSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsGoogleBigQuerySource

func (sns ServiceNowSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsGreenplumSource

func (sns ServiceNowSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsHBaseSource

func (sns ServiceNowSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsHTTPSource

func (sns ServiceNowSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsHdfsSource

func (sns ServiceNowSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsHiveSource

func (sns ServiceNowSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsHubspotSource

func (sns ServiceNowSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsImpalaSource

func (sns ServiceNowSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsJiraSource

func (sns ServiceNowSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsMagentoSource

func (sns ServiceNowSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsMariaDBSource

func (sns ServiceNowSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsMarketoSource

func (sns ServiceNowSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsMongoDbSource

func (sns ServiceNowSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsNetezzaSource

func (sns ServiceNowSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsOracleSource

func (sns ServiceNowSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsPaypalSource

func (sns ServiceNowSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsPhoenixSource

func (sns ServiceNowSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsPrestoSource

func (sns ServiceNowSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsQuickBooksSource

func (sns ServiceNowSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsRelationalSource

func (sns ServiceNowSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsResponsysSource

func (sns ServiceNowSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsSQLDWSource

func (sns ServiceNowSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsSQLSource

func (sns ServiceNowSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsSalesforceMarketingCloudSource

func (sns ServiceNowSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsSalesforceSource

func (sns ServiceNowSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsSapCloudForCustomerSource

func (sns ServiceNowSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsSapEccSource

func (sns ServiceNowSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsServiceNowSource

func (sns ServiceNowSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsShopifySource

func (sns ServiceNowSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsSparkSource

func (sns ServiceNowSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsSquareSource

func (sns ServiceNowSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsVerticaSource

func (sns ServiceNowSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsWebSource

func (sns ServiceNowSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsXeroSource

func (sns ServiceNowSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) AsZohoSource

func (sns ServiceNowSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for ServiceNowSource.

func (ServiceNowSource) MarshalJSON

func (sns ServiceNowSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ServiceNowSource.

type SftpAuthenticationType

type SftpAuthenticationType string

SftpAuthenticationType enumerates the values for sftp authentication type.

const (
	// SftpAuthenticationTypeBasic ...
	SftpAuthenticationTypeBasic SftpAuthenticationType = "Basic"
	// SftpAuthenticationTypeSSHPublicKey ...
	SftpAuthenticationTypeSSHPublicKey SftpAuthenticationType = "SshPublicKey"
)

func PossibleSftpAuthenticationTypeValues

func PossibleSftpAuthenticationTypeValues() []SftpAuthenticationType

PossibleSftpAuthenticationTypeValues returns an array of possible values for the SftpAuthenticationType const type.

type SftpServerLinkedService

type SftpServerLinkedService struct {
	// SftpServerLinkedServiceTypeProperties - Properties specific to this linked service type.
	*SftpServerLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

SftpServerLinkedService a linked service for an SSH File Transfer Protocol (SFTP) server.

func (SftpServerLinkedService) AsAmazonMWSLinkedService

func (ssls SftpServerLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAmazonRedshiftLinkedService

func (ssls SftpServerLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAmazonS3LinkedService

func (ssls SftpServerLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAzureBatchLinkedService

func (ssls SftpServerLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (ssls SftpServerLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAzureDataLakeStoreLinkedService

func (ssls SftpServerLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAzureDatabricksLinkedService

func (ssls SftpServerLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAzureKeyVaultLinkedService

func (ssls SftpServerLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAzureMLLinkedService

func (ssls SftpServerLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAzureMySQLLinkedService

func (ssls SftpServerLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAzurePostgreSQLLinkedService

func (ssls SftpServerLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAzureSQLDWLinkedService

func (ssls SftpServerLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAzureSQLDatabaseLinkedService

func (ssls SftpServerLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAzureSearchLinkedService

func (ssls SftpServerLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsAzureStorageLinkedService

func (ssls SftpServerLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsBasicLinkedService

func (ssls SftpServerLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsCassandraLinkedService

func (ssls SftpServerLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsConcurLinkedService

func (ssls SftpServerLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsCosmosDbLinkedService

func (ssls SftpServerLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsCouchbaseLinkedService

func (ssls SftpServerLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsCustomDataSourceLinkedService

func (ssls SftpServerLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsDb2LinkedService

func (ssls SftpServerLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsDrillLinkedService

func (ssls SftpServerLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsDynamicsLinkedService

func (ssls SftpServerLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsEloquaLinkedService

func (ssls SftpServerLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsFileServerLinkedService

func (ssls SftpServerLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsFtpServerLinkedService

func (ssls SftpServerLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsGoogleBigQueryLinkedService

func (ssls SftpServerLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsGreenplumLinkedService

func (ssls SftpServerLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsHBaseLinkedService

func (ssls SftpServerLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsHDInsightLinkedService

func (ssls SftpServerLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsHDInsightOnDemandLinkedService

func (ssls SftpServerLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsHTTPLinkedService

func (ssls SftpServerLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsHdfsLinkedService

func (ssls SftpServerLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsHiveLinkedService

func (ssls SftpServerLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsHubspotLinkedService

func (ssls SftpServerLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsImpalaLinkedService

func (ssls SftpServerLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsJiraLinkedService

func (ssls SftpServerLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsLinkedService

func (ssls SftpServerLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsMagentoLinkedService

func (ssls SftpServerLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsMariaDBLinkedService

func (ssls SftpServerLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsMarketoLinkedService

func (ssls SftpServerLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsMongoDbLinkedService

func (ssls SftpServerLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsMySQLLinkedService

func (ssls SftpServerLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsNetezzaLinkedService

func (ssls SftpServerLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsODataLinkedService

func (ssls SftpServerLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsOdbcLinkedService

func (ssls SftpServerLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsOracleLinkedService

func (ssls SftpServerLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsPaypalLinkedService

func (ssls SftpServerLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsPhoenixLinkedService

func (ssls SftpServerLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsPostgreSQLLinkedService

func (ssls SftpServerLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsPrestoLinkedService

func (ssls SftpServerLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsQuickBooksLinkedService

func (ssls SftpServerLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsResponsysLinkedService

func (ssls SftpServerLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsSQLServerLinkedService

func (ssls SftpServerLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsSalesforceLinkedService

func (ssls SftpServerLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsSalesforceMarketingCloudLinkedService

func (ssls SftpServerLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsSapBWLinkedService

func (ssls SftpServerLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsSapCloudForCustomerLinkedService

func (ssls SftpServerLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsSapEccLinkedService

func (ssls SftpServerLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsSapHanaLinkedService

func (ssls SftpServerLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsServiceNowLinkedService

func (ssls SftpServerLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsSftpServerLinkedService

func (ssls SftpServerLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsShopifyLinkedService

func (ssls SftpServerLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsSparkLinkedService

func (ssls SftpServerLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsSquareLinkedService

func (ssls SftpServerLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsSybaseLinkedService

func (ssls SftpServerLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsTeradataLinkedService

func (ssls SftpServerLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsVerticaLinkedService

func (ssls SftpServerLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsWebLinkedService

func (ssls SftpServerLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsXeroLinkedService

func (ssls SftpServerLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) AsZohoLinkedService

func (ssls SftpServerLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for SftpServerLinkedService.

func (SftpServerLinkedService) MarshalJSON

func (ssls SftpServerLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SftpServerLinkedService.

func (*SftpServerLinkedService) UnmarshalJSON

func (ssls *SftpServerLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SftpServerLinkedService struct.

type SftpServerLinkedServiceTypeProperties

type SftpServerLinkedServiceTypeProperties struct {
	// Host - The SFTP server host name. Type: string (or Expression with resultType string).
	Host interface{} `json:"host,omitempty"`
	// Port - The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
	Port interface{} `json:"port,omitempty"`
	// AuthenticationType - The authentication type to be used to connect to the FTP server. Possible values include: 'SftpAuthenticationTypeBasic', 'SftpAuthenticationTypeSSHPublicKey'
	AuthenticationType SftpAuthenticationType `json:"authenticationType,omitempty"`
	// UserName - The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
	UserName interface{} `json:"userName,omitempty"`
	// Password - Password to logon the SFTP server for Basic authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
	// PrivateKeyPath - The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
	PrivateKeyPath interface{} `json:"privateKeyPath,omitempty"`
	// PrivateKeyContent - Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
	PrivateKeyContent BasicSecretBase `json:"privateKeyContent,omitempty"`
	// PassPhrase - The password to decrypt the SSH private key if the SSH private key is encrypted.
	PassPhrase BasicSecretBase `json:"passPhrase,omitempty"`
	// SkipHostKeyValidation - If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
	SkipHostKeyValidation interface{} `json:"skipHostKeyValidation,omitempty"`
	// HostKeyFingerprint - The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
	HostKeyFingerprint interface{} `json:"hostKeyFingerprint,omitempty"`
}

SftpServerLinkedServiceTypeProperties properties specific to this linked service type.

func (*SftpServerLinkedServiceTypeProperties) UnmarshalJSON

func (sslstp *SftpServerLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SftpServerLinkedServiceTypeProperties struct.

type ShopifyLinkedService

type ShopifyLinkedService struct {
	// ShopifyLinkedServiceTypeProperties - Shopify Serivce linked service properties.
	*ShopifyLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

ShopifyLinkedService shopify Serivce linked service.

func (ShopifyLinkedService) AsAmazonMWSLinkedService

func (sls ShopifyLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAmazonRedshiftLinkedService

func (sls ShopifyLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAmazonS3LinkedService

func (sls ShopifyLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAzureBatchLinkedService

func (sls ShopifyLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (sls ShopifyLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAzureDataLakeStoreLinkedService

func (sls ShopifyLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAzureDatabricksLinkedService

func (sls ShopifyLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAzureKeyVaultLinkedService

func (sls ShopifyLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAzureMLLinkedService

func (sls ShopifyLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAzureMySQLLinkedService

func (sls ShopifyLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAzurePostgreSQLLinkedService

func (sls ShopifyLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAzureSQLDWLinkedService

func (sls ShopifyLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAzureSQLDatabaseLinkedService

func (sls ShopifyLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAzureSearchLinkedService

func (sls ShopifyLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsAzureStorageLinkedService

func (sls ShopifyLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsBasicLinkedService

func (sls ShopifyLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsCassandraLinkedService

func (sls ShopifyLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsConcurLinkedService

func (sls ShopifyLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsCosmosDbLinkedService

func (sls ShopifyLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsCouchbaseLinkedService

func (sls ShopifyLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsCustomDataSourceLinkedService

func (sls ShopifyLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsDb2LinkedService

func (sls ShopifyLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsDrillLinkedService

func (sls ShopifyLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsDynamicsLinkedService

func (sls ShopifyLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsEloquaLinkedService

func (sls ShopifyLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsFileServerLinkedService

func (sls ShopifyLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsFtpServerLinkedService

func (sls ShopifyLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsGoogleBigQueryLinkedService

func (sls ShopifyLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsGreenplumLinkedService

func (sls ShopifyLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsHBaseLinkedService

func (sls ShopifyLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsHDInsightLinkedService

func (sls ShopifyLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsHDInsightOnDemandLinkedService

func (sls ShopifyLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsHTTPLinkedService

func (sls ShopifyLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsHdfsLinkedService

func (sls ShopifyLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsHiveLinkedService

func (sls ShopifyLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsHubspotLinkedService

func (sls ShopifyLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsImpalaLinkedService

func (sls ShopifyLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsJiraLinkedService

func (sls ShopifyLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsLinkedService

func (sls ShopifyLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsMagentoLinkedService

func (sls ShopifyLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsMariaDBLinkedService

func (sls ShopifyLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsMarketoLinkedService

func (sls ShopifyLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsMongoDbLinkedService

func (sls ShopifyLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsMySQLLinkedService

func (sls ShopifyLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsNetezzaLinkedService

func (sls ShopifyLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsODataLinkedService

func (sls ShopifyLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsOdbcLinkedService

func (sls ShopifyLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsOracleLinkedService

func (sls ShopifyLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsPaypalLinkedService

func (sls ShopifyLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsPhoenixLinkedService

func (sls ShopifyLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsPostgreSQLLinkedService

func (sls ShopifyLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsPrestoLinkedService

func (sls ShopifyLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsQuickBooksLinkedService

func (sls ShopifyLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsResponsysLinkedService

func (sls ShopifyLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsSQLServerLinkedService

func (sls ShopifyLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsSalesforceLinkedService

func (sls ShopifyLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsSalesforceMarketingCloudLinkedService

func (sls ShopifyLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsSapBWLinkedService

func (sls ShopifyLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsSapCloudForCustomerLinkedService

func (sls ShopifyLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsSapEccLinkedService

func (sls ShopifyLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsSapHanaLinkedService

func (sls ShopifyLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsServiceNowLinkedService

func (sls ShopifyLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsSftpServerLinkedService

func (sls ShopifyLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsShopifyLinkedService

func (sls ShopifyLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsSparkLinkedService

func (sls ShopifyLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsSquareLinkedService

func (sls ShopifyLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsSybaseLinkedService

func (sls ShopifyLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsTeradataLinkedService

func (sls ShopifyLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsVerticaLinkedService

func (sls ShopifyLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsWebLinkedService

func (sls ShopifyLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsXeroLinkedService

func (sls ShopifyLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) AsZohoLinkedService

func (sls ShopifyLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for ShopifyLinkedService.

func (ShopifyLinkedService) MarshalJSON

func (sls ShopifyLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ShopifyLinkedService.

func (*ShopifyLinkedService) UnmarshalJSON

func (sls *ShopifyLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ShopifyLinkedService struct.

type ShopifyLinkedServiceTypeProperties

type ShopifyLinkedServiceTypeProperties struct {
	// Host - The endpoint of the Shopify server. (i.e. mystore.myshopify.com)
	Host interface{} `json:"host,omitempty"`
	// AccessToken - The API access token that can be used to access Shopify’s data. The token won't expire if it is offline mode.
	AccessToken BasicSecretBase `json:"accessToken,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

ShopifyLinkedServiceTypeProperties shopify Serivce linked service properties.

func (*ShopifyLinkedServiceTypeProperties) UnmarshalJSON

func (slstp *ShopifyLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ShopifyLinkedServiceTypeProperties struct.

type ShopifyObjectDataset

type ShopifyObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

ShopifyObjectDataset shopify Serivce dataset.

func (ShopifyObjectDataset) AsAmazonMWSObjectDataset

func (sod ShopifyObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsAmazonS3Dataset

func (sod ShopifyObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsAzureBlobDataset

func (sod ShopifyObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsAzureDataLakeStoreDataset

func (sod ShopifyObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsAzureMySQLTableDataset

func (sod ShopifyObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsAzurePostgreSQLTableDataset

func (sod ShopifyObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsAzureSQLDWTableDataset

func (sod ShopifyObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsAzureSQLTableDataset

func (sod ShopifyObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsAzureSearchIndexDataset

func (sod ShopifyObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsAzureTableDataset

func (sod ShopifyObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsBasicDataset

func (sod ShopifyObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsCassandraTableDataset

func (sod ShopifyObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsConcurObjectDataset

func (sod ShopifyObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsCouchbaseTableDataset

func (sod ShopifyObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsCustomDataset

func (sod ShopifyObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsDataset

func (sod ShopifyObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsDocumentDbCollectionDataset

func (sod ShopifyObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsDrillTableDataset

func (sod ShopifyObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsDynamicsEntityDataset

func (sod ShopifyObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsEloquaObjectDataset

func (sod ShopifyObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsFileShareDataset

func (sod ShopifyObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsGoogleBigQueryObjectDataset

func (sod ShopifyObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsGreenplumTableDataset

func (sod ShopifyObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsHBaseObjectDataset

func (sod ShopifyObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsHTTPDataset

func (sod ShopifyObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsHiveObjectDataset

func (sod ShopifyObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsHubspotObjectDataset

func (sod ShopifyObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsImpalaObjectDataset

func (sod ShopifyObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsJiraObjectDataset

func (sod ShopifyObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsMagentoObjectDataset

func (sod ShopifyObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsMariaDBTableDataset

func (sod ShopifyObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsMarketoObjectDataset

func (sod ShopifyObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsMongoDbCollectionDataset

func (sod ShopifyObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsNetezzaTableDataset

func (sod ShopifyObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsODataResourceDataset

func (sod ShopifyObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsOracleTableDataset

func (sod ShopifyObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsPaypalObjectDataset

func (sod ShopifyObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsPhoenixObjectDataset

func (sod ShopifyObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsPrestoObjectDataset

func (sod ShopifyObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsQuickBooksObjectDataset

func (sod ShopifyObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsRelationalTableDataset

func (sod ShopifyObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsResponsysObjectDataset

func (sod ShopifyObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsSQLServerTableDataset

func (sod ShopifyObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (sod ShopifyObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsSalesforceObjectDataset

func (sod ShopifyObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsSapCloudForCustomerResourceDataset

func (sod ShopifyObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsSapEccResourceDataset

func (sod ShopifyObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsServiceNowObjectDataset

func (sod ShopifyObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsShopifyObjectDataset

func (sod ShopifyObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsSparkObjectDataset

func (sod ShopifyObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsSquareObjectDataset

func (sod ShopifyObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsVerticaTableDataset

func (sod ShopifyObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsWebTableDataset

func (sod ShopifyObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsXeroObjectDataset

func (sod ShopifyObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) AsZohoObjectDataset

func (sod ShopifyObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for ShopifyObjectDataset.

func (ShopifyObjectDataset) MarshalJSON

func (sod ShopifyObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ShopifyObjectDataset.

type ShopifySource

type ShopifySource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

ShopifySource a copy activity Shopify Serivce source.

func (ShopifySource) AsAmazonMWSSource

func (ss ShopifySource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsAmazonRedshiftSource

func (ss ShopifySource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsAzureDataLakeStoreSource

func (ss ShopifySource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsAzureMySQLSource

func (ss ShopifySource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsAzurePostgreSQLSource

func (ss ShopifySource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsAzureTableSource

func (ss ShopifySource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsBasicCopySource

func (ss ShopifySource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsBlobSource

func (ss ShopifySource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsCassandraSource

func (ss ShopifySource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsConcurSource

func (ss ShopifySource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsCopySource

func (ss ShopifySource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsCouchbaseSource

func (ss ShopifySource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsDocumentDbCollectionSource

func (ss ShopifySource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsDrillSource

func (ss ShopifySource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsDynamicsSource

func (ss ShopifySource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsEloquaSource

func (ss ShopifySource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsFileSystemSource

func (ss ShopifySource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsGoogleBigQuerySource

func (ss ShopifySource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsGreenplumSource

func (ss ShopifySource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsHBaseSource

func (ss ShopifySource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsHTTPSource

func (ss ShopifySource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsHdfsSource

func (ss ShopifySource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsHiveSource

func (ss ShopifySource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsHubspotSource

func (ss ShopifySource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsImpalaSource

func (ss ShopifySource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsJiraSource

func (ss ShopifySource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsMagentoSource

func (ss ShopifySource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsMariaDBSource

func (ss ShopifySource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsMarketoSource

func (ss ShopifySource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsMongoDbSource

func (ss ShopifySource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsNetezzaSource

func (ss ShopifySource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsOracleSource

func (ss ShopifySource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsPaypalSource

func (ss ShopifySource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsPhoenixSource

func (ss ShopifySource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsPrestoSource

func (ss ShopifySource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsQuickBooksSource

func (ss ShopifySource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsRelationalSource

func (ss ShopifySource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsResponsysSource

func (ss ShopifySource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsSQLDWSource

func (ss ShopifySource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsSQLSource

func (ss ShopifySource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsSalesforceMarketingCloudSource

func (ss ShopifySource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsSalesforceSource

func (ss ShopifySource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsSapCloudForCustomerSource

func (ss ShopifySource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsSapEccSource

func (ss ShopifySource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsServiceNowSource

func (ss ShopifySource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsShopifySource

func (ss ShopifySource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsSparkSource

func (ss ShopifySource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsSquareSource

func (ss ShopifySource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsVerticaSource

func (ss ShopifySource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsWebSource

func (ss ShopifySource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsXeroSource

func (ss ShopifySource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) AsZohoSource

func (ss ShopifySource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for ShopifySource.

func (ShopifySource) MarshalJSON

func (ss ShopifySource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ShopifySource.

type SparkAuthenticationType

type SparkAuthenticationType string

SparkAuthenticationType enumerates the values for spark authentication type.

const (
	// SparkAuthenticationTypeAnonymous ...
	SparkAuthenticationTypeAnonymous SparkAuthenticationType = "Anonymous"
	// SparkAuthenticationTypeUsername ...
	SparkAuthenticationTypeUsername SparkAuthenticationType = "Username"
	// SparkAuthenticationTypeUsernameAndPassword ...
	SparkAuthenticationTypeUsernameAndPassword SparkAuthenticationType = "UsernameAndPassword"
	// SparkAuthenticationTypeWindowsAzureHDInsightService ...
	SparkAuthenticationTypeWindowsAzureHDInsightService SparkAuthenticationType = "WindowsAzureHDInsightService"
)

func PossibleSparkAuthenticationTypeValues

func PossibleSparkAuthenticationTypeValues() []SparkAuthenticationType

PossibleSparkAuthenticationTypeValues returns an array of possible values for the SparkAuthenticationType const type.

type SparkLinkedService

type SparkLinkedService struct {
	// SparkLinkedServiceTypeProperties - Spark Server linked service properties.
	*SparkLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

SparkLinkedService spark Server linked service.

func (SparkLinkedService) AsAmazonMWSLinkedService

func (sls SparkLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAmazonRedshiftLinkedService

func (sls SparkLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAmazonS3LinkedService

func (sls SparkLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAzureBatchLinkedService

func (sls SparkLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (sls SparkLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAzureDataLakeStoreLinkedService

func (sls SparkLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAzureDatabricksLinkedService

func (sls SparkLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAzureKeyVaultLinkedService

func (sls SparkLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAzureMLLinkedService

func (sls SparkLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAzureMySQLLinkedService

func (sls SparkLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAzurePostgreSQLLinkedService

func (sls SparkLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAzureSQLDWLinkedService

func (sls SparkLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAzureSQLDatabaseLinkedService

func (sls SparkLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAzureSearchLinkedService

func (sls SparkLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsAzureStorageLinkedService

func (sls SparkLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsBasicLinkedService

func (sls SparkLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsCassandraLinkedService

func (sls SparkLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsConcurLinkedService

func (sls SparkLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsCosmosDbLinkedService

func (sls SparkLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsCouchbaseLinkedService

func (sls SparkLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsCustomDataSourceLinkedService

func (sls SparkLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsDb2LinkedService

func (sls SparkLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsDrillLinkedService

func (sls SparkLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsDynamicsLinkedService

func (sls SparkLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsEloquaLinkedService

func (sls SparkLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsFileServerLinkedService

func (sls SparkLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsFtpServerLinkedService

func (sls SparkLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsGoogleBigQueryLinkedService

func (sls SparkLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsGreenplumLinkedService

func (sls SparkLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsHBaseLinkedService

func (sls SparkLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsHDInsightLinkedService

func (sls SparkLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsHDInsightOnDemandLinkedService

func (sls SparkLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsHTTPLinkedService

func (sls SparkLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsHdfsLinkedService

func (sls SparkLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsHiveLinkedService

func (sls SparkLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsHubspotLinkedService

func (sls SparkLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsImpalaLinkedService

func (sls SparkLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsJiraLinkedService

func (sls SparkLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsLinkedService

func (sls SparkLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsMagentoLinkedService

func (sls SparkLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsMariaDBLinkedService

func (sls SparkLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsMarketoLinkedService

func (sls SparkLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsMongoDbLinkedService

func (sls SparkLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsMySQLLinkedService

func (sls SparkLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsNetezzaLinkedService

func (sls SparkLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsODataLinkedService

func (sls SparkLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsOdbcLinkedService

func (sls SparkLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsOracleLinkedService

func (sls SparkLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsPaypalLinkedService

func (sls SparkLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsPhoenixLinkedService

func (sls SparkLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsPostgreSQLLinkedService

func (sls SparkLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsPrestoLinkedService

func (sls SparkLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsQuickBooksLinkedService

func (sls SparkLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsResponsysLinkedService

func (sls SparkLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsSQLServerLinkedService

func (sls SparkLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsSalesforceLinkedService

func (sls SparkLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsSalesforceMarketingCloudLinkedService

func (sls SparkLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsSapBWLinkedService

func (sls SparkLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsSapCloudForCustomerLinkedService

func (sls SparkLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsSapEccLinkedService

func (sls SparkLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsSapHanaLinkedService

func (sls SparkLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsServiceNowLinkedService

func (sls SparkLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsSftpServerLinkedService

func (sls SparkLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsShopifyLinkedService

func (sls SparkLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsSparkLinkedService

func (sls SparkLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsSquareLinkedService

func (sls SparkLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsSybaseLinkedService

func (sls SparkLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsTeradataLinkedService

func (sls SparkLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsVerticaLinkedService

func (sls SparkLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsWebLinkedService

func (sls SparkLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsXeroLinkedService

func (sls SparkLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) AsZohoLinkedService

func (sls SparkLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for SparkLinkedService.

func (SparkLinkedService) MarshalJSON

func (sls SparkLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SparkLinkedService.

func (*SparkLinkedService) UnmarshalJSON

func (sls *SparkLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SparkLinkedService struct.

type SparkLinkedServiceTypeProperties

type SparkLinkedServiceTypeProperties struct {
	// Host - IP address or host name of the Spark server
	Host interface{} `json:"host,omitempty"`
	// Port - The TCP port that the Spark server uses to listen for client connections.
	Port interface{} `json:"port,omitempty"`
	// ServerType - The type of Spark server. Possible values include: 'SharkServer', 'SharkServer2', 'SparkThriftServer'
	ServerType SparkServerType `json:"serverType,omitempty"`
	// ThriftTransportProtocol - The transport protocol to use in the Thrift layer. Possible values include: 'SparkThriftTransportProtocolBinary', 'SparkThriftTransportProtocolSASL', 'SparkThriftTransportProtocolHTTP'
	ThriftTransportProtocol SparkThriftTransportProtocol `json:"thriftTransportProtocol,omitempty"`
	// AuthenticationType - The authentication method used to access the Spark server. Possible values include: 'SparkAuthenticationTypeAnonymous', 'SparkAuthenticationTypeUsername', 'SparkAuthenticationTypeUsernameAndPassword', 'SparkAuthenticationTypeWindowsAzureHDInsightService'
	AuthenticationType SparkAuthenticationType `json:"authenticationType,omitempty"`
	// Username - The user name that you use to access Spark Server.
	Username interface{} `json:"username,omitempty"`
	// Password - The password corresponding to the user name that you provided in the Username field
	Password BasicSecretBase `json:"password,omitempty"`
	// HTTPPath - The partial URL corresponding to the Spark server.
	HTTPPath interface{} `json:"httpPath,omitempty"`
	// EnableSsl - Specifies whether the connections to the server are encrypted using SSL. The default value is false.
	EnableSsl interface{} `json:"enableSsl,omitempty"`
	// TrustedCertPath - The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
	TrustedCertPath interface{} `json:"trustedCertPath,omitempty"`
	// UseSystemTrustStore - Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
	UseSystemTrustStore interface{} `json:"useSystemTrustStore,omitempty"`
	// AllowHostNameCNMismatch - Specifies whether to require a CA-issued SSL certificate name to match the host name of the server when connecting over SSL. The default value is false.
	AllowHostNameCNMismatch interface{} `json:"allowHostNameCNMismatch,omitempty"`
	// AllowSelfSignedServerCert - Specifies whether to allow self-signed certificates from the server. The default value is false.
	AllowSelfSignedServerCert interface{} `json:"allowSelfSignedServerCert,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

SparkLinkedServiceTypeProperties spark Server linked service properties.

func (*SparkLinkedServiceTypeProperties) UnmarshalJSON

func (slstp *SparkLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SparkLinkedServiceTypeProperties struct.

type SparkObjectDataset

type SparkObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

SparkObjectDataset spark Server dataset.

func (SparkObjectDataset) AsAmazonMWSObjectDataset

func (sod SparkObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsAmazonS3Dataset

func (sod SparkObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsAzureBlobDataset

func (sod SparkObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsAzureDataLakeStoreDataset

func (sod SparkObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsAzureMySQLTableDataset

func (sod SparkObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsAzurePostgreSQLTableDataset

func (sod SparkObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsAzureSQLDWTableDataset

func (sod SparkObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsAzureSQLTableDataset

func (sod SparkObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsAzureSearchIndexDataset

func (sod SparkObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsAzureTableDataset

func (sod SparkObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsBasicDataset

func (sod SparkObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsCassandraTableDataset

func (sod SparkObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsConcurObjectDataset

func (sod SparkObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsCouchbaseTableDataset

func (sod SparkObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsCustomDataset

func (sod SparkObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsDataset

func (sod SparkObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsDocumentDbCollectionDataset

func (sod SparkObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsDrillTableDataset

func (sod SparkObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsDynamicsEntityDataset

func (sod SparkObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsEloquaObjectDataset

func (sod SparkObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsFileShareDataset

func (sod SparkObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsGoogleBigQueryObjectDataset

func (sod SparkObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsGreenplumTableDataset

func (sod SparkObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsHBaseObjectDataset

func (sod SparkObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsHTTPDataset

func (sod SparkObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsHiveObjectDataset

func (sod SparkObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsHubspotObjectDataset

func (sod SparkObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsImpalaObjectDataset

func (sod SparkObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsJiraObjectDataset

func (sod SparkObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsMagentoObjectDataset

func (sod SparkObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsMariaDBTableDataset

func (sod SparkObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsMarketoObjectDataset

func (sod SparkObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsMongoDbCollectionDataset

func (sod SparkObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsNetezzaTableDataset

func (sod SparkObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsODataResourceDataset

func (sod SparkObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsOracleTableDataset

func (sod SparkObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsPaypalObjectDataset

func (sod SparkObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsPhoenixObjectDataset

func (sod SparkObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsPrestoObjectDataset

func (sod SparkObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsQuickBooksObjectDataset

func (sod SparkObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsRelationalTableDataset

func (sod SparkObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsResponsysObjectDataset

func (sod SparkObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsSQLServerTableDataset

func (sod SparkObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (sod SparkObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsSalesforceObjectDataset

func (sod SparkObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsSapCloudForCustomerResourceDataset

func (sod SparkObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsSapEccResourceDataset

func (sod SparkObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsServiceNowObjectDataset

func (sod SparkObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsShopifyObjectDataset

func (sod SparkObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsSparkObjectDataset

func (sod SparkObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsSquareObjectDataset

func (sod SparkObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsVerticaTableDataset

func (sod SparkObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsWebTableDataset

func (sod SparkObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsXeroObjectDataset

func (sod SparkObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) AsZohoObjectDataset

func (sod SparkObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for SparkObjectDataset.

func (SparkObjectDataset) MarshalJSON

func (sod SparkObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SparkObjectDataset.

type SparkServerType

type SparkServerType string

SparkServerType enumerates the values for spark server type.

const (
	// SharkServer ...
	SharkServer SparkServerType = "SharkServer"
	// SharkServer2 ...
	SharkServer2 SparkServerType = "SharkServer2"
	// SparkThriftServer ...
	SparkThriftServer SparkServerType = "SparkThriftServer"
)

func PossibleSparkServerTypeValues

func PossibleSparkServerTypeValues() []SparkServerType

PossibleSparkServerTypeValues returns an array of possible values for the SparkServerType const type.

type SparkSource

type SparkSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

SparkSource a copy activity Spark Server source.

func (SparkSource) AsAmazonMWSSource

func (ss SparkSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsAmazonRedshiftSource

func (ss SparkSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsAzureDataLakeStoreSource

func (ss SparkSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsAzureMySQLSource

func (ss SparkSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsAzurePostgreSQLSource

func (ss SparkSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsAzureTableSource

func (ss SparkSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsBasicCopySource

func (ss SparkSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsBlobSource

func (ss SparkSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsCassandraSource

func (ss SparkSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsConcurSource

func (ss SparkSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsCopySource

func (ss SparkSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsCouchbaseSource

func (ss SparkSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsDocumentDbCollectionSource

func (ss SparkSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsDrillSource

func (ss SparkSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsDynamicsSource

func (ss SparkSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsEloquaSource

func (ss SparkSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsFileSystemSource

func (ss SparkSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsGoogleBigQuerySource

func (ss SparkSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsGreenplumSource

func (ss SparkSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsHBaseSource

func (ss SparkSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsHTTPSource

func (ss SparkSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsHdfsSource

func (ss SparkSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsHiveSource

func (ss SparkSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsHubspotSource

func (ss SparkSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsImpalaSource

func (ss SparkSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsJiraSource

func (ss SparkSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsMagentoSource

func (ss SparkSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsMariaDBSource

func (ss SparkSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsMarketoSource

func (ss SparkSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsMongoDbSource

func (ss SparkSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsNetezzaSource

func (ss SparkSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsOracleSource

func (ss SparkSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsPaypalSource

func (ss SparkSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsPhoenixSource

func (ss SparkSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsPrestoSource

func (ss SparkSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsQuickBooksSource

func (ss SparkSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsRelationalSource

func (ss SparkSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsResponsysSource

func (ss SparkSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsSQLDWSource

func (ss SparkSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsSQLSource

func (ss SparkSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsSalesforceMarketingCloudSource

func (ss SparkSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsSalesforceSource

func (ss SparkSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsSapCloudForCustomerSource

func (ss SparkSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsSapEccSource

func (ss SparkSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsServiceNowSource

func (ss SparkSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsShopifySource

func (ss SparkSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsSparkSource

func (ss SparkSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsSquareSource

func (ss SparkSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsVerticaSource

func (ss SparkSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsWebSource

func (ss SparkSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsXeroSource

func (ss SparkSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) AsZohoSource

func (ss SparkSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for SparkSource.

func (SparkSource) MarshalJSON

func (ss SparkSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SparkSource.

type SparkThriftTransportProtocol

type SparkThriftTransportProtocol string

SparkThriftTransportProtocol enumerates the values for spark thrift transport protocol.

const (
	// SparkThriftTransportProtocolBinary ...
	SparkThriftTransportProtocolBinary SparkThriftTransportProtocol = "Binary"
	// SparkThriftTransportProtocolHTTP ...
	SparkThriftTransportProtocolHTTP SparkThriftTransportProtocol = "HTTP "
	// SparkThriftTransportProtocolSASL ...
	SparkThriftTransportProtocolSASL SparkThriftTransportProtocol = "SASL"
)

func PossibleSparkThriftTransportProtocolValues

func PossibleSparkThriftTransportProtocolValues() []SparkThriftTransportProtocol

PossibleSparkThriftTransportProtocolValues returns an array of possible values for the SparkThriftTransportProtocol const type.

type SquareLinkedService

type SquareLinkedService struct {
	// SquareLinkedServiceTypeProperties - Square Serivce linked service properties.
	*SquareLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

SquareLinkedService square Serivce linked service.

func (SquareLinkedService) AsAmazonMWSLinkedService

func (sls SquareLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAmazonRedshiftLinkedService

func (sls SquareLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAmazonS3LinkedService

func (sls SquareLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAzureBatchLinkedService

func (sls SquareLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (sls SquareLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAzureDataLakeStoreLinkedService

func (sls SquareLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAzureDatabricksLinkedService

func (sls SquareLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAzureKeyVaultLinkedService

func (sls SquareLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAzureMLLinkedService

func (sls SquareLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAzureMySQLLinkedService

func (sls SquareLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAzurePostgreSQLLinkedService

func (sls SquareLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAzureSQLDWLinkedService

func (sls SquareLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAzureSQLDatabaseLinkedService

func (sls SquareLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAzureSearchLinkedService

func (sls SquareLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsAzureStorageLinkedService

func (sls SquareLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsBasicLinkedService

func (sls SquareLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsCassandraLinkedService

func (sls SquareLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsConcurLinkedService

func (sls SquareLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsCosmosDbLinkedService

func (sls SquareLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsCouchbaseLinkedService

func (sls SquareLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsCustomDataSourceLinkedService

func (sls SquareLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsDb2LinkedService

func (sls SquareLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsDrillLinkedService

func (sls SquareLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsDynamicsLinkedService

func (sls SquareLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsEloquaLinkedService

func (sls SquareLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsFileServerLinkedService

func (sls SquareLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsFtpServerLinkedService

func (sls SquareLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsGoogleBigQueryLinkedService

func (sls SquareLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsGreenplumLinkedService

func (sls SquareLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsHBaseLinkedService

func (sls SquareLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsHDInsightLinkedService

func (sls SquareLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsHDInsightOnDemandLinkedService

func (sls SquareLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsHTTPLinkedService

func (sls SquareLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsHdfsLinkedService

func (sls SquareLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsHiveLinkedService

func (sls SquareLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsHubspotLinkedService

func (sls SquareLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsImpalaLinkedService

func (sls SquareLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsJiraLinkedService

func (sls SquareLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsLinkedService

func (sls SquareLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsMagentoLinkedService

func (sls SquareLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsMariaDBLinkedService

func (sls SquareLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsMarketoLinkedService

func (sls SquareLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsMongoDbLinkedService

func (sls SquareLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsMySQLLinkedService

func (sls SquareLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsNetezzaLinkedService

func (sls SquareLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsODataLinkedService

func (sls SquareLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsOdbcLinkedService

func (sls SquareLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsOracleLinkedService

func (sls SquareLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsPaypalLinkedService

func (sls SquareLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsPhoenixLinkedService

func (sls SquareLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsPostgreSQLLinkedService

func (sls SquareLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsPrestoLinkedService

func (sls SquareLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsQuickBooksLinkedService

func (sls SquareLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsResponsysLinkedService

func (sls SquareLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsSQLServerLinkedService

func (sls SquareLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsSalesforceLinkedService

func (sls SquareLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsSalesforceMarketingCloudLinkedService

func (sls SquareLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsSapBWLinkedService

func (sls SquareLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsSapCloudForCustomerLinkedService

func (sls SquareLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsSapEccLinkedService

func (sls SquareLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsSapHanaLinkedService

func (sls SquareLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsServiceNowLinkedService

func (sls SquareLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsSftpServerLinkedService

func (sls SquareLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsShopifyLinkedService

func (sls SquareLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsSparkLinkedService

func (sls SquareLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsSquareLinkedService

func (sls SquareLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsSybaseLinkedService

func (sls SquareLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsTeradataLinkedService

func (sls SquareLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsVerticaLinkedService

func (sls SquareLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsWebLinkedService

func (sls SquareLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsXeroLinkedService

func (sls SquareLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) AsZohoLinkedService

func (sls SquareLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for SquareLinkedService.

func (SquareLinkedService) MarshalJSON

func (sls SquareLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SquareLinkedService.

func (*SquareLinkedService) UnmarshalJSON

func (sls *SquareLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SquareLinkedService struct.

type SquareLinkedServiceTypeProperties

type SquareLinkedServiceTypeProperties struct {
	// Host - The URL of the Square instance. (i.e. mystore.mysquare.com)
	Host interface{} `json:"host,omitempty"`
	// ClientID - The client ID associated with your Square application.
	ClientID interface{} `json:"clientId,omitempty"`
	// ClientSecret - The client secret associated with your Square application.
	ClientSecret BasicSecretBase `json:"clientSecret,omitempty"`
	// RedirectURI - The redirect URL assigned in the Square application dashboard. (i.e. http://localhost:2500)
	RedirectURI interface{} `json:"redirectUri,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

SquareLinkedServiceTypeProperties square Serivce linked service properties.

func (*SquareLinkedServiceTypeProperties) UnmarshalJSON

func (slstp *SquareLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SquareLinkedServiceTypeProperties struct.

type SquareObjectDataset

type SquareObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

SquareObjectDataset square Serivce dataset.

func (SquareObjectDataset) AsAmazonMWSObjectDataset

func (sod SquareObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsAmazonS3Dataset

func (sod SquareObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsAzureBlobDataset

func (sod SquareObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsAzureDataLakeStoreDataset

func (sod SquareObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsAzureMySQLTableDataset

func (sod SquareObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsAzurePostgreSQLTableDataset

func (sod SquareObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsAzureSQLDWTableDataset

func (sod SquareObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsAzureSQLTableDataset

func (sod SquareObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsAzureSearchIndexDataset

func (sod SquareObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsAzureTableDataset

func (sod SquareObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsBasicDataset

func (sod SquareObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsCassandraTableDataset

func (sod SquareObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsConcurObjectDataset

func (sod SquareObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsCouchbaseTableDataset

func (sod SquareObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsCustomDataset

func (sod SquareObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsDataset

func (sod SquareObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsDocumentDbCollectionDataset

func (sod SquareObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsDrillTableDataset

func (sod SquareObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsDynamicsEntityDataset

func (sod SquareObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsEloquaObjectDataset

func (sod SquareObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsFileShareDataset

func (sod SquareObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsGoogleBigQueryObjectDataset

func (sod SquareObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsGreenplumTableDataset

func (sod SquareObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsHBaseObjectDataset

func (sod SquareObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsHTTPDataset

func (sod SquareObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsHiveObjectDataset

func (sod SquareObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsHubspotObjectDataset

func (sod SquareObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsImpalaObjectDataset

func (sod SquareObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsJiraObjectDataset

func (sod SquareObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsMagentoObjectDataset

func (sod SquareObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsMariaDBTableDataset

func (sod SquareObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsMarketoObjectDataset

func (sod SquareObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsMongoDbCollectionDataset

func (sod SquareObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsNetezzaTableDataset

func (sod SquareObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsODataResourceDataset

func (sod SquareObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsOracleTableDataset

func (sod SquareObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsPaypalObjectDataset

func (sod SquareObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsPhoenixObjectDataset

func (sod SquareObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsPrestoObjectDataset

func (sod SquareObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsQuickBooksObjectDataset

func (sod SquareObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsRelationalTableDataset

func (sod SquareObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsResponsysObjectDataset

func (sod SquareObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsSQLServerTableDataset

func (sod SquareObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (sod SquareObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsSalesforceObjectDataset

func (sod SquareObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsSapCloudForCustomerResourceDataset

func (sod SquareObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsSapEccResourceDataset

func (sod SquareObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsServiceNowObjectDataset

func (sod SquareObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsShopifyObjectDataset

func (sod SquareObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsSparkObjectDataset

func (sod SquareObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsSquareObjectDataset

func (sod SquareObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsVerticaTableDataset

func (sod SquareObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsWebTableDataset

func (sod SquareObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsXeroObjectDataset

func (sod SquareObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) AsZohoObjectDataset

func (sod SquareObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for SquareObjectDataset.

func (SquareObjectDataset) MarshalJSON

func (sod SquareObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SquareObjectDataset.

type SquareSource

type SquareSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

SquareSource a copy activity Square Serivce source.

func (SquareSource) AsAmazonMWSSource

func (ss SquareSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsAmazonRedshiftSource

func (ss SquareSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsAzureDataLakeStoreSource

func (ss SquareSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsAzureMySQLSource

func (ss SquareSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsAzurePostgreSQLSource

func (ss SquareSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsAzureTableSource

func (ss SquareSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsBasicCopySource

func (ss SquareSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsBlobSource

func (ss SquareSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsCassandraSource

func (ss SquareSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsConcurSource

func (ss SquareSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsCopySource

func (ss SquareSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsCouchbaseSource

func (ss SquareSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsDocumentDbCollectionSource

func (ss SquareSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsDrillSource

func (ss SquareSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsDynamicsSource

func (ss SquareSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsEloquaSource

func (ss SquareSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsFileSystemSource

func (ss SquareSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsGoogleBigQuerySource

func (ss SquareSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsGreenplumSource

func (ss SquareSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsHBaseSource

func (ss SquareSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsHTTPSource

func (ss SquareSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsHdfsSource

func (ss SquareSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsHiveSource

func (ss SquareSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsHubspotSource

func (ss SquareSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsImpalaSource

func (ss SquareSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsJiraSource

func (ss SquareSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsMagentoSource

func (ss SquareSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsMariaDBSource

func (ss SquareSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsMarketoSource

func (ss SquareSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsMongoDbSource

func (ss SquareSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsNetezzaSource

func (ss SquareSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsOracleSource

func (ss SquareSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsPaypalSource

func (ss SquareSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsPhoenixSource

func (ss SquareSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsPrestoSource

func (ss SquareSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsQuickBooksSource

func (ss SquareSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsRelationalSource

func (ss SquareSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsResponsysSource

func (ss SquareSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsSQLDWSource

func (ss SquareSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsSQLSource

func (ss SquareSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsSalesforceMarketingCloudSource

func (ss SquareSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsSalesforceSource

func (ss SquareSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsSapCloudForCustomerSource

func (ss SquareSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsSapEccSource

func (ss SquareSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsServiceNowSource

func (ss SquareSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsShopifySource

func (ss SquareSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsSparkSource

func (ss SquareSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsSquareSource

func (ss SquareSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsVerticaSource

func (ss SquareSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsWebSource

func (ss SquareSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsXeroSource

func (ss SquareSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) AsZohoSource

func (ss SquareSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for SquareSource.

func (SquareSource) MarshalJSON

func (ss SquareSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SquareSource.

type StagingSettings

type StagingSettings struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// LinkedServiceName - Staging linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Path - The path to storage for storing the interim data. Type: string (or Expression with resultType string).
	Path interface{} `json:"path,omitempty"`
	// EnableCompression - Specifies whether to use compression when copying data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
	EnableCompression interface{} `json:"enableCompression,omitempty"`
}

StagingSettings staging settings.

func (StagingSettings) MarshalJSON

func (ss StagingSettings) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for StagingSettings.

type StoredProcedureParameter

type StoredProcedureParameter struct {
	// Value - Stored procedure parameter value. Type: string (or Expression with resultType string).
	Value interface{} `json:"value,omitempty"`
	// Type - Stored procedure parameter type. Possible values include: 'String', 'Int', 'Decimal', 'GUID', 'Boolean', 'Date'
	Type StoredProcedureParameterType `json:"type,omitempty"`
}

StoredProcedureParameter SQL stored procedure parameter.

type StoredProcedureParameterType

type StoredProcedureParameterType string

StoredProcedureParameterType enumerates the values for stored procedure parameter type.

const (
	// Boolean ...
	Boolean StoredProcedureParameterType = "Boolean"
	// Date ...
	Date StoredProcedureParameterType = "Date"
	// Decimal ...
	Decimal StoredProcedureParameterType = "Decimal"
	// GUID ...
	GUID StoredProcedureParameterType = "Guid"
	// Int ...
	Int StoredProcedureParameterType = "Int"
	// String ...
	String StoredProcedureParameterType = "String"
)

func PossibleStoredProcedureParameterTypeValues

func PossibleStoredProcedureParameterTypeValues() []StoredProcedureParameterType

PossibleStoredProcedureParameterTypeValues returns an array of possible values for the StoredProcedureParameterType const type.

type SubResource

type SubResource struct {
	// ID - The resource identifier.
	ID *string `json:"id,omitempty"`
	// Name - The resource name.
	Name *string `json:"name,omitempty"`
	// Type - The resource type.
	Type *string `json:"type,omitempty"`
	// Etag - Etag identifies change in the resource.
	Etag *string `json:"etag,omitempty"`
}

SubResource azure Data Factory nested resource, which belongs to a factory.

type SybaseAuthenticationType

type SybaseAuthenticationType string

SybaseAuthenticationType enumerates the values for sybase authentication type.

const (
	// SybaseAuthenticationTypeBasic ...
	SybaseAuthenticationTypeBasic SybaseAuthenticationType = "Basic"
	// SybaseAuthenticationTypeWindows ...
	SybaseAuthenticationTypeWindows SybaseAuthenticationType = "Windows"
)

func PossibleSybaseAuthenticationTypeValues

func PossibleSybaseAuthenticationTypeValues() []SybaseAuthenticationType

PossibleSybaseAuthenticationTypeValues returns an array of possible values for the SybaseAuthenticationType const type.

type SybaseLinkedService

type SybaseLinkedService struct {
	// SybaseLinkedServiceTypeProperties - Sybase linked service properties.
	*SybaseLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

SybaseLinkedService linked service for Sybase data source.

func (SybaseLinkedService) AsAmazonMWSLinkedService

func (sls SybaseLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAmazonRedshiftLinkedService

func (sls SybaseLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAmazonS3LinkedService

func (sls SybaseLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAzureBatchLinkedService

func (sls SybaseLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (sls SybaseLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAzureDataLakeStoreLinkedService

func (sls SybaseLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAzureDatabricksLinkedService

func (sls SybaseLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAzureKeyVaultLinkedService

func (sls SybaseLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAzureMLLinkedService

func (sls SybaseLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAzureMySQLLinkedService

func (sls SybaseLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAzurePostgreSQLLinkedService

func (sls SybaseLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAzureSQLDWLinkedService

func (sls SybaseLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAzureSQLDatabaseLinkedService

func (sls SybaseLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAzureSearchLinkedService

func (sls SybaseLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsAzureStorageLinkedService

func (sls SybaseLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsBasicLinkedService

func (sls SybaseLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsCassandraLinkedService

func (sls SybaseLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsConcurLinkedService

func (sls SybaseLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsCosmosDbLinkedService

func (sls SybaseLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsCouchbaseLinkedService

func (sls SybaseLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsCustomDataSourceLinkedService

func (sls SybaseLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsDb2LinkedService

func (sls SybaseLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsDrillLinkedService

func (sls SybaseLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsDynamicsLinkedService

func (sls SybaseLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsEloquaLinkedService

func (sls SybaseLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsFileServerLinkedService

func (sls SybaseLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsFtpServerLinkedService

func (sls SybaseLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsGoogleBigQueryLinkedService

func (sls SybaseLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsGreenplumLinkedService

func (sls SybaseLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsHBaseLinkedService

func (sls SybaseLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsHDInsightLinkedService

func (sls SybaseLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsHDInsightOnDemandLinkedService

func (sls SybaseLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsHTTPLinkedService

func (sls SybaseLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsHdfsLinkedService

func (sls SybaseLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsHiveLinkedService

func (sls SybaseLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsHubspotLinkedService

func (sls SybaseLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsImpalaLinkedService

func (sls SybaseLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsJiraLinkedService

func (sls SybaseLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsLinkedService

func (sls SybaseLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsMagentoLinkedService

func (sls SybaseLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsMariaDBLinkedService

func (sls SybaseLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsMarketoLinkedService

func (sls SybaseLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsMongoDbLinkedService

func (sls SybaseLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsMySQLLinkedService

func (sls SybaseLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsNetezzaLinkedService

func (sls SybaseLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsODataLinkedService

func (sls SybaseLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsOdbcLinkedService

func (sls SybaseLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsOracleLinkedService

func (sls SybaseLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsPaypalLinkedService

func (sls SybaseLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsPhoenixLinkedService

func (sls SybaseLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsPostgreSQLLinkedService

func (sls SybaseLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsPrestoLinkedService

func (sls SybaseLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsQuickBooksLinkedService

func (sls SybaseLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsResponsysLinkedService

func (sls SybaseLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsSQLServerLinkedService

func (sls SybaseLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsSalesforceLinkedService

func (sls SybaseLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsSalesforceMarketingCloudLinkedService

func (sls SybaseLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsSapBWLinkedService

func (sls SybaseLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsSapCloudForCustomerLinkedService

func (sls SybaseLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsSapEccLinkedService

func (sls SybaseLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsSapHanaLinkedService

func (sls SybaseLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsServiceNowLinkedService

func (sls SybaseLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsSftpServerLinkedService

func (sls SybaseLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsShopifyLinkedService

func (sls SybaseLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsSparkLinkedService

func (sls SybaseLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsSquareLinkedService

func (sls SybaseLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsSybaseLinkedService

func (sls SybaseLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsTeradataLinkedService

func (sls SybaseLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsVerticaLinkedService

func (sls SybaseLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsWebLinkedService

func (sls SybaseLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsXeroLinkedService

func (sls SybaseLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) AsZohoLinkedService

func (sls SybaseLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for SybaseLinkedService.

func (SybaseLinkedService) MarshalJSON

func (sls SybaseLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for SybaseLinkedService.

func (*SybaseLinkedService) UnmarshalJSON

func (sls *SybaseLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SybaseLinkedService struct.

type SybaseLinkedServiceTypeProperties

type SybaseLinkedServiceTypeProperties struct {
	// Server - Server name for connection. Type: string (or Expression with resultType string).
	Server interface{} `json:"server,omitempty"`
	// Database - Database name for connection. Type: string (or Expression with resultType string).
	Database interface{} `json:"database,omitempty"`
	// Schema - Schema name for connection. Type: string (or Expression with resultType string).
	Schema interface{} `json:"schema,omitempty"`
	// AuthenticationType - AuthenticationType to be used for connection. Possible values include: 'SybaseAuthenticationTypeBasic', 'SybaseAuthenticationTypeWindows'
	AuthenticationType SybaseAuthenticationType `json:"authenticationType,omitempty"`
	// Username - Username for authentication. Type: string (or Expression with resultType string).
	Username interface{} `json:"username,omitempty"`
	// Password - Password for authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

SybaseLinkedServiceTypeProperties sybase linked service properties.

func (*SybaseLinkedServiceTypeProperties) UnmarshalJSON

func (slstp *SybaseLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for SybaseLinkedServiceTypeProperties struct.

type TabularTranslator

type TabularTranslator struct {
	// ColumnMappings - Column mappings. Type: string (or Expression with resultType string).
	ColumnMappings interface{} `json:"columnMappings,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Type - Possible values include: 'TypeCopyTranslator', 'TypeTabularTranslator'
	Type TypeBasicCopyTranslator `json:"type,omitempty"`
}

TabularTranslator a copy activity tabular translator.

func (TabularTranslator) AsBasicCopyTranslator

func (tt TabularTranslator) AsBasicCopyTranslator() (BasicCopyTranslator, bool)

AsBasicCopyTranslator is the BasicCopyTranslator implementation for TabularTranslator.

func (TabularTranslator) AsCopyTranslator

func (tt TabularTranslator) AsCopyTranslator() (*CopyTranslator, bool)

AsCopyTranslator is the BasicCopyTranslator implementation for TabularTranslator.

func (TabularTranslator) AsTabularTranslator

func (tt TabularTranslator) AsTabularTranslator() (*TabularTranslator, bool)

AsTabularTranslator is the BasicCopyTranslator implementation for TabularTranslator.

func (TabularTranslator) MarshalJSON

func (tt TabularTranslator) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for TabularTranslator.

type TeradataAuthenticationType

type TeradataAuthenticationType string

TeradataAuthenticationType enumerates the values for teradata authentication type.

const (
	// TeradataAuthenticationTypeBasic ...
	TeradataAuthenticationTypeBasic TeradataAuthenticationType = "Basic"
	// TeradataAuthenticationTypeWindows ...
	TeradataAuthenticationTypeWindows TeradataAuthenticationType = "Windows"
)

func PossibleTeradataAuthenticationTypeValues

func PossibleTeradataAuthenticationTypeValues() []TeradataAuthenticationType

PossibleTeradataAuthenticationTypeValues returns an array of possible values for the TeradataAuthenticationType const type.

type TeradataLinkedService

type TeradataLinkedService struct {
	// TeradataLinkedServiceTypeProperties - Teradata linked service properties.
	*TeradataLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

TeradataLinkedService linked service for Teradata data source.

func (TeradataLinkedService) AsAmazonMWSLinkedService

func (TLSVar TeradataLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAmazonRedshiftLinkedService

func (TLSVar TeradataLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAmazonS3LinkedService

func (TLSVar TeradataLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAzureBatchLinkedService

func (TLSVar TeradataLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (TLSVar TeradataLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAzureDataLakeStoreLinkedService

func (TLSVar TeradataLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAzureDatabricksLinkedService

func (TLSVar TeradataLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAzureKeyVaultLinkedService

func (TLSVar TeradataLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAzureMLLinkedService

func (TLSVar TeradataLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAzureMySQLLinkedService

func (TLSVar TeradataLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAzurePostgreSQLLinkedService

func (TLSVar TeradataLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAzureSQLDWLinkedService

func (TLSVar TeradataLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAzureSQLDatabaseLinkedService

func (TLSVar TeradataLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAzureSearchLinkedService

func (TLSVar TeradataLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsAzureStorageLinkedService

func (TLSVar TeradataLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsBasicLinkedService

func (TLSVar TeradataLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsCassandraLinkedService

func (TLSVar TeradataLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsConcurLinkedService

func (TLSVar TeradataLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsCosmosDbLinkedService

func (TLSVar TeradataLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsCouchbaseLinkedService

func (TLSVar TeradataLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsCustomDataSourceLinkedService

func (TLSVar TeradataLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsDb2LinkedService

func (TLSVar TeradataLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsDrillLinkedService

func (TLSVar TeradataLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsDynamicsLinkedService

func (TLSVar TeradataLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsEloquaLinkedService

func (TLSVar TeradataLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsFileServerLinkedService

func (TLSVar TeradataLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsFtpServerLinkedService

func (TLSVar TeradataLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsGoogleBigQueryLinkedService

func (TLSVar TeradataLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsGreenplumLinkedService

func (TLSVar TeradataLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsHBaseLinkedService

func (TLSVar TeradataLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsHDInsightLinkedService

func (TLSVar TeradataLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsHDInsightOnDemandLinkedService

func (TLSVar TeradataLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsHTTPLinkedService

func (TLSVar TeradataLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsHdfsLinkedService

func (TLSVar TeradataLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsHiveLinkedService

func (TLSVar TeradataLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsHubspotLinkedService

func (TLSVar TeradataLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsImpalaLinkedService

func (TLSVar TeradataLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsJiraLinkedService

func (TLSVar TeradataLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsLinkedService

func (TLSVar TeradataLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsMagentoLinkedService

func (TLSVar TeradataLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsMariaDBLinkedService

func (TLSVar TeradataLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsMarketoLinkedService

func (TLSVar TeradataLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsMongoDbLinkedService

func (TLSVar TeradataLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsMySQLLinkedService

func (TLSVar TeradataLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsNetezzaLinkedService

func (TLSVar TeradataLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsODataLinkedService

func (TLSVar TeradataLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsOdbcLinkedService

func (TLSVar TeradataLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsOracleLinkedService

func (TLSVar TeradataLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsPaypalLinkedService

func (TLSVar TeradataLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsPhoenixLinkedService

func (TLSVar TeradataLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsPostgreSQLLinkedService

func (TLSVar TeradataLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsPrestoLinkedService

func (TLSVar TeradataLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsQuickBooksLinkedService

func (TLSVar TeradataLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsResponsysLinkedService

func (TLSVar TeradataLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsSQLServerLinkedService

func (TLSVar TeradataLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsSalesforceLinkedService

func (TLSVar TeradataLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsSalesforceMarketingCloudLinkedService

func (TLSVar TeradataLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsSapBWLinkedService

func (TLSVar TeradataLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsSapCloudForCustomerLinkedService

func (TLSVar TeradataLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsSapEccLinkedService

func (TLSVar TeradataLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsSapHanaLinkedService

func (TLSVar TeradataLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsServiceNowLinkedService

func (TLSVar TeradataLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsSftpServerLinkedService

func (TLSVar TeradataLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsShopifyLinkedService

func (TLSVar TeradataLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsSparkLinkedService

func (TLSVar TeradataLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsSquareLinkedService

func (TLSVar TeradataLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsSybaseLinkedService

func (TLSVar TeradataLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsTeradataLinkedService

func (TLSVar TeradataLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsVerticaLinkedService

func (TLSVar TeradataLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsWebLinkedService

func (TLSVar TeradataLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsXeroLinkedService

func (TLSVar TeradataLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) AsZohoLinkedService

func (TLSVar TeradataLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for TeradataLinkedService.

func (TeradataLinkedService) MarshalJSON

func (TLSVar TeradataLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for TeradataLinkedService.

func (*TeradataLinkedService) UnmarshalJSON

func (TLSVar *TeradataLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for TeradataLinkedService struct.

type TeradataLinkedServiceTypeProperties

type TeradataLinkedServiceTypeProperties struct {
	// Server - Server name for connection. Type: string (or Expression with resultType string).
	Server interface{} `json:"server,omitempty"`
	// Schema - Schema name for connection. Type: string (or Expression with resultType string).
	Schema interface{} `json:"schema,omitempty"`
	// AuthenticationType - AuthenticationType to be used for connection. Possible values include: 'TeradataAuthenticationTypeBasic', 'TeradataAuthenticationTypeWindows'
	AuthenticationType TeradataAuthenticationType `json:"authenticationType,omitempty"`
	// Username - Username for authentication. Type: string (or Expression with resultType string).
	Username interface{} `json:"username,omitempty"`
	// Password - Password for authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

TeradataLinkedServiceTypeProperties teradata linked service properties.

func (*TeradataLinkedServiceTypeProperties) UnmarshalJSON

func (tlstp *TeradataLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for TeradataLinkedServiceTypeProperties struct.

type TextFormat

type TextFormat struct {
	// ColumnDelimiter - The column delimiter. Type: string (or Expression with resultType string).
	ColumnDelimiter interface{} `json:"columnDelimiter,omitempty"`
	// RowDelimiter - The row delimiter. Type: string (or Expression with resultType string).
	RowDelimiter interface{} `json:"rowDelimiter,omitempty"`
	// EscapeChar - The escape character. Type: string (or Expression with resultType string).
	EscapeChar interface{} `json:"escapeChar,omitempty"`
	// QuoteChar - The quote character. Type: string (or Expression with resultType string).
	QuoteChar interface{} `json:"quoteChar,omitempty"`
	// NullValue - The null value string. Type: string (or Expression with resultType string).
	NullValue interface{} `json:"nullValue,omitempty"`
	// EncodingName - The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
	EncodingName interface{} `json:"encodingName,omitempty"`
	// TreatEmptyAsNull - Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
	TreatEmptyAsNull interface{} `json:"treatEmptyAsNull,omitempty"`
	// SkipLineCount - The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
	SkipLineCount interface{} `json:"skipLineCount,omitempty"`
	// FirstRowAsHeader - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
	FirstRowAsHeader interface{} `json:"firstRowAsHeader,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Serializer - Serializer. Type: string (or Expression with resultType string).
	Serializer interface{} `json:"serializer,omitempty"`
	// Deserializer - Deserializer. Type: string (or Expression with resultType string).
	Deserializer interface{} `json:"deserializer,omitempty"`
	// Type - Possible values include: 'TypeDatasetStorageFormat', 'TypeParquetFormat', 'TypeOrcFormat', 'TypeAvroFormat', 'TypeJSONFormat', 'TypeTextFormat'
	Type TypeBasicDatasetStorageFormat `json:"type,omitempty"`
}

TextFormat the data stored in text format.

func (TextFormat) AsAvroFormat

func (tf TextFormat) AsAvroFormat() (*AvroFormat, bool)

AsAvroFormat is the BasicDatasetStorageFormat implementation for TextFormat.

func (TextFormat) AsBasicDatasetStorageFormat

func (tf TextFormat) AsBasicDatasetStorageFormat() (BasicDatasetStorageFormat, bool)

AsBasicDatasetStorageFormat is the BasicDatasetStorageFormat implementation for TextFormat.

func (TextFormat) AsDatasetStorageFormat

func (tf TextFormat) AsDatasetStorageFormat() (*DatasetStorageFormat, bool)

AsDatasetStorageFormat is the BasicDatasetStorageFormat implementation for TextFormat.

func (TextFormat) AsJSONFormat

func (tf TextFormat) AsJSONFormat() (*JSONFormat, bool)

AsJSONFormat is the BasicDatasetStorageFormat implementation for TextFormat.

func (TextFormat) AsOrcFormat

func (tf TextFormat) AsOrcFormat() (*OrcFormat, bool)

AsOrcFormat is the BasicDatasetStorageFormat implementation for TextFormat.

func (TextFormat) AsParquetFormat

func (tf TextFormat) AsParquetFormat() (*ParquetFormat, bool)

AsParquetFormat is the BasicDatasetStorageFormat implementation for TextFormat.

func (TextFormat) AsTextFormat

func (tf TextFormat) AsTextFormat() (*TextFormat, bool)

AsTextFormat is the BasicDatasetStorageFormat implementation for TextFormat.

func (TextFormat) MarshalJSON

func (tf TextFormat) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for TextFormat.

type Trigger

type Trigger struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Trigger description.
	Description *string `json:"description,omitempty"`
	// RuntimeState - Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. Possible values include: 'TriggerRuntimeStateStarted', 'TriggerRuntimeStateStopped', 'TriggerRuntimeStateDisabled'
	RuntimeState TriggerRuntimeState `json:"runtimeState,omitempty"`
	// Type - Possible values include: 'TypeTrigger', 'TypeTumblingWindowTrigger', 'TypeBlobTrigger', 'TypeScheduleTrigger', 'TypeMultiplePipelineTrigger'
	Type TypeBasicTrigger `json:"type,omitempty"`
}

Trigger azure data factory nested object which contains information about creating pipeline run

func (Trigger) AsBasicMultiplePipelineTrigger

func (t Trigger) AsBasicMultiplePipelineTrigger() (BasicMultiplePipelineTrigger, bool)

AsBasicMultiplePipelineTrigger is the BasicTrigger implementation for Trigger.

func (Trigger) AsBasicTrigger

func (t Trigger) AsBasicTrigger() (BasicTrigger, bool)

AsBasicTrigger is the BasicTrigger implementation for Trigger.

func (Trigger) AsBlobTrigger

func (t Trigger) AsBlobTrigger() (*BlobTrigger, bool)

AsBlobTrigger is the BasicTrigger implementation for Trigger.

func (Trigger) AsMultiplePipelineTrigger

func (t Trigger) AsMultiplePipelineTrigger() (*MultiplePipelineTrigger, bool)

AsMultiplePipelineTrigger is the BasicTrigger implementation for Trigger.

func (Trigger) AsScheduleTrigger

func (t Trigger) AsScheduleTrigger() (*ScheduleTrigger, bool)

AsScheduleTrigger is the BasicTrigger implementation for Trigger.

func (Trigger) AsTrigger

func (t Trigger) AsTrigger() (*Trigger, bool)

AsTrigger is the BasicTrigger implementation for Trigger.

func (Trigger) AsTumblingWindowTrigger

func (t Trigger) AsTumblingWindowTrigger() (*TumblingWindowTrigger, bool)

AsTumblingWindowTrigger is the BasicTrigger implementation for Trigger.

func (Trigger) MarshalJSON

func (t Trigger) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for Trigger.

type TriggerListResponse

type TriggerListResponse struct {
	autorest.Response `json:"-"`
	// Value - List of triggers.
	Value *[]TriggerResource `json:"value,omitempty"`
	// NextLink - The link to the next page of results, if any remaining results exist.
	NextLink *string `json:"nextLink,omitempty"`
}

TriggerListResponse a list of trigger resources.

func (TriggerListResponse) IsEmpty

func (tlr TriggerListResponse) IsEmpty() bool

IsEmpty returns true if the ListResult contains no values.

type TriggerListResponseIterator

type TriggerListResponseIterator struct {
	// contains filtered or unexported fields
}

TriggerListResponseIterator provides access to a complete listing of TriggerResource values.

func (*TriggerListResponseIterator) Next

func (iter *TriggerListResponseIterator) Next() error

Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.

func (TriggerListResponseIterator) NotDone

func (iter TriggerListResponseIterator) NotDone() bool

NotDone returns true if the enumeration should be started or is not yet complete.

func (TriggerListResponseIterator) Response

Response returns the raw server response from the last page request.

func (TriggerListResponseIterator) Value

Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.

type TriggerListResponsePage

type TriggerListResponsePage struct {
	// contains filtered or unexported fields
}

TriggerListResponsePage contains a page of TriggerResource values.

func (*TriggerListResponsePage) Next

func (page *TriggerListResponsePage) Next() error

Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.

func (TriggerListResponsePage) NotDone

func (page TriggerListResponsePage) NotDone() bool

NotDone returns true if the page enumeration should be started or is not yet complete.

func (TriggerListResponsePage) Response

Response returns the raw server response from the last page request.

func (TriggerListResponsePage) Values

func (page TriggerListResponsePage) Values() []TriggerResource

Values returns the slice of values for the current page or nil if there are no values.

type TriggerPipelineReference

type TriggerPipelineReference struct {
	// PipelineReference - Pipeline reference.
	PipelineReference *PipelineReference `json:"pipelineReference,omitempty"`
	// Parameters - Pipeline parameters.
	Parameters map[string]interface{} `json:"parameters"`
}

TriggerPipelineReference pipeline that needs to be triggered with the given parameters.

func (TriggerPipelineReference) MarshalJSON

func (tpr TriggerPipelineReference) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for TriggerPipelineReference.

type TriggerResource

type TriggerResource struct {
	autorest.Response `json:"-"`
	// Properties - Properties of the trigger.
	Properties BasicTrigger `json:"properties,omitempty"`
	// ID - The resource identifier.
	ID *string `json:"id,omitempty"`
	// Name - The resource name.
	Name *string `json:"name,omitempty"`
	// Type - The resource type.
	Type *string `json:"type,omitempty"`
	// Etag - Etag identifies change in the resource.
	Etag *string `json:"etag,omitempty"`
}

TriggerResource trigger resource type.

func (*TriggerResource) UnmarshalJSON

func (tr *TriggerResource) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for TriggerResource struct.

type TriggerRun

type TriggerRun struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// TriggerRunID - Trigger run id.
	TriggerRunID *string `json:"triggerRunId,omitempty"`
	// TriggerName - Trigger name.
	TriggerName *string `json:"triggerName,omitempty"`
	// TriggerType - Trigger type.
	TriggerType *string `json:"triggerType,omitempty"`
	// TriggerRunTimestamp - Trigger run start time.
	TriggerRunTimestamp *date.Time `json:"triggerRunTimestamp,omitempty"`
	// Status - Trigger run status. Possible values include: 'TriggerRunStatusSucceeded', 'TriggerRunStatusFailed', 'TriggerRunStatusInprogress'
	Status TriggerRunStatus `json:"status,omitempty"`
	// Message - Trigger error message.
	Message *string `json:"message,omitempty"`
	// Properties - List of property name and value related to trigger run. Name, value pair depends on type of trigger.
	Properties map[string]*string `json:"properties"`
	// TriggeredPipelines - List of pipeline name and run Id triggered by the trigger run.
	TriggeredPipelines map[string]*string `json:"triggeredPipelines"`
}

TriggerRun trigger runs.

func (TriggerRun) MarshalJSON

func (tr TriggerRun) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for TriggerRun.

type TriggerRunListResponse

type TriggerRunListResponse struct {
	autorest.Response `json:"-"`
	// Value - List of trigger runs.
	Value *[]TriggerRun `json:"value,omitempty"`
	// NextLink - The link to the next page of results, if any remaining results exist.
	NextLink *string `json:"nextLink,omitempty"`
}

TriggerRunListResponse a list of trigger runs.

func (TriggerRunListResponse) IsEmpty

func (trlr TriggerRunListResponse) IsEmpty() bool

IsEmpty returns true if the ListResult contains no values.

type TriggerRunListResponseIterator

type TriggerRunListResponseIterator struct {
	// contains filtered or unexported fields
}

TriggerRunListResponseIterator provides access to a complete listing of TriggerRun values.

func (*TriggerRunListResponseIterator) Next

Next advances to the next value. If there was an error making the request the iterator does not advance and the error is returned.

func (TriggerRunListResponseIterator) NotDone

func (iter TriggerRunListResponseIterator) NotDone() bool

NotDone returns true if the enumeration should be started or is not yet complete.

func (TriggerRunListResponseIterator) Response

Response returns the raw server response from the last page request.

func (TriggerRunListResponseIterator) Value

Value returns the current value or a zero-initialized value if the iterator has advanced beyond the end of the collection.

type TriggerRunListResponsePage

type TriggerRunListResponsePage struct {
	// contains filtered or unexported fields
}

TriggerRunListResponsePage contains a page of TriggerRun values.

func (*TriggerRunListResponsePage) Next

func (page *TriggerRunListResponsePage) Next() error

Next advances to the next page of values. If there was an error making the request the page does not advance and the error is returned.

func (TriggerRunListResponsePage) NotDone

func (page TriggerRunListResponsePage) NotDone() bool

NotDone returns true if the page enumeration should be started or is not yet complete.

func (TriggerRunListResponsePage) Response

Response returns the raw server response from the last page request.

func (TriggerRunListResponsePage) Values

func (page TriggerRunListResponsePage) Values() []TriggerRun

Values returns the slice of values for the current page or nil if there are no values.

type TriggerRunStatus

type TriggerRunStatus string

TriggerRunStatus enumerates the values for trigger run status.

const (
	// TriggerRunStatusFailed ...
	TriggerRunStatusFailed TriggerRunStatus = "Failed"
	// TriggerRunStatusInprogress ...
	TriggerRunStatusInprogress TriggerRunStatus = "Inprogress"
	// TriggerRunStatusSucceeded ...
	TriggerRunStatusSucceeded TriggerRunStatus = "Succeeded"
)

func PossibleTriggerRunStatusValues

func PossibleTriggerRunStatusValues() []TriggerRunStatus

PossibleTriggerRunStatusValues returns an array of possible values for the TriggerRunStatus const type.

type TriggerRuntimeState

type TriggerRuntimeState string

TriggerRuntimeState enumerates the values for trigger runtime state.

const (
	// TriggerRuntimeStateDisabled ...
	TriggerRuntimeStateDisabled TriggerRuntimeState = "Disabled"
	// TriggerRuntimeStateStarted ...
	TriggerRuntimeStateStarted TriggerRuntimeState = "Started"
	// TriggerRuntimeStateStopped ...
	TriggerRuntimeStateStopped TriggerRuntimeState = "Stopped"
)

func PossibleTriggerRuntimeStateValues

func PossibleTriggerRuntimeStateValues() []TriggerRuntimeState

PossibleTriggerRuntimeStateValues returns an array of possible values for the TriggerRuntimeState const type.

type TriggersClient

type TriggersClient struct {
	BaseClient
}

TriggersClient is the the Azure Data Factory V2 management API provides a RESTful set of web services that interact with Azure Data Factory V2 services.

func NewTriggersClient

func NewTriggersClient(subscriptionID string) TriggersClient

NewTriggersClient creates an instance of the TriggersClient client.

func NewTriggersClientWithBaseURI

func NewTriggersClientWithBaseURI(baseURI string, subscriptionID string) TriggersClient

NewTriggersClientWithBaseURI creates an instance of the TriggersClient client.

func (TriggersClient) CreateOrUpdate

func (client TriggersClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, factoryName string, triggerName string, trigger TriggerResource, ifMatch string) (result TriggerResource, err error)

CreateOrUpdate creates or updates a trigger. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. triggerName - the trigger name. trigger - trigger resource definition. ifMatch - eTag of the trigger entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update.

func (TriggersClient) CreateOrUpdatePreparer

func (client TriggersClient) CreateOrUpdatePreparer(ctx context.Context, resourceGroupName string, factoryName string, triggerName string, trigger TriggerResource, ifMatch string) (*http.Request, error)

CreateOrUpdatePreparer prepares the CreateOrUpdate request.

func (TriggersClient) CreateOrUpdateResponder

func (client TriggersClient) CreateOrUpdateResponder(resp *http.Response) (result TriggerResource, err error)

CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always closes the http.Response Body.

func (TriggersClient) CreateOrUpdateSender

func (client TriggersClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error)

CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the http.Response Body if it receives an error.

func (TriggersClient) Delete

func (client TriggersClient) Delete(ctx context.Context, resourceGroupName string, factoryName string, triggerName string) (result autorest.Response, err error)

Delete deletes a trigger. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. triggerName - the trigger name.

func (TriggersClient) DeletePreparer

func (client TriggersClient) DeletePreparer(ctx context.Context, resourceGroupName string, factoryName string, triggerName string) (*http.Request, error)

DeletePreparer prepares the Delete request.

func (TriggersClient) DeleteResponder

func (client TriggersClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error)

DeleteResponder handles the response to the Delete request. The method always closes the http.Response Body.

func (TriggersClient) DeleteSender

func (client TriggersClient) DeleteSender(req *http.Request) (*http.Response, error)

DeleteSender sends the Delete request. The method will close the http.Response Body if it receives an error.

func (TriggersClient) Get

func (client TriggersClient) Get(ctx context.Context, resourceGroupName string, factoryName string, triggerName string) (result TriggerResource, err error)

Get gets a trigger. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. triggerName - the trigger name.

func (TriggersClient) GetPreparer

func (client TriggersClient) GetPreparer(ctx context.Context, resourceGroupName string, factoryName string, triggerName string) (*http.Request, error)

GetPreparer prepares the Get request.

func (TriggersClient) GetResponder

func (client TriggersClient) GetResponder(resp *http.Response) (result TriggerResource, err error)

GetResponder handles the response to the Get request. The method always closes the http.Response Body.

func (TriggersClient) GetSender

func (client TriggersClient) GetSender(req *http.Request) (*http.Response, error)

GetSender sends the Get request. The method will close the http.Response Body if it receives an error.

func (TriggersClient) ListByFactory

func (client TriggersClient) ListByFactory(ctx context.Context, resourceGroupName string, factoryName string) (result TriggerListResponsePage, err error)

ListByFactory lists triggers. Parameters: resourceGroupName - the resource group name. factoryName - the factory name.

func (TriggersClient) ListByFactoryComplete

func (client TriggersClient) ListByFactoryComplete(ctx context.Context, resourceGroupName string, factoryName string) (result TriggerListResponseIterator, err error)

ListByFactoryComplete enumerates all values, automatically crossing page boundaries as required.

func (TriggersClient) ListByFactoryPreparer

func (client TriggersClient) ListByFactoryPreparer(ctx context.Context, resourceGroupName string, factoryName string) (*http.Request, error)

ListByFactoryPreparer prepares the ListByFactory request.

func (TriggersClient) ListByFactoryResponder

func (client TriggersClient) ListByFactoryResponder(resp *http.Response) (result TriggerListResponse, err error)

ListByFactoryResponder handles the response to the ListByFactory request. The method always closes the http.Response Body.

func (TriggersClient) ListByFactorySender

func (client TriggersClient) ListByFactorySender(req *http.Request) (*http.Response, error)

ListByFactorySender sends the ListByFactory request. The method will close the http.Response Body if it receives an error.

func (TriggersClient) ListRuns

func (client TriggersClient) ListRuns(ctx context.Context, resourceGroupName string, factoryName string, triggerName string, startTime date.Time, endTime date.Time) (result TriggerRunListResponsePage, err error)

ListRuns list trigger runs. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. triggerName - the trigger name. startTime - start time for trigger runs. endTime - end time for trigger runs.

func (TriggersClient) ListRunsComplete

func (client TriggersClient) ListRunsComplete(ctx context.Context, resourceGroupName string, factoryName string, triggerName string, startTime date.Time, endTime date.Time) (result TriggerRunListResponseIterator, err error)

ListRunsComplete enumerates all values, automatically crossing page boundaries as required.

func (TriggersClient) ListRunsPreparer

func (client TriggersClient) ListRunsPreparer(ctx context.Context, resourceGroupName string, factoryName string, triggerName string, startTime date.Time, endTime date.Time) (*http.Request, error)

ListRunsPreparer prepares the ListRuns request.

func (TriggersClient) ListRunsResponder

func (client TriggersClient) ListRunsResponder(resp *http.Response) (result TriggerRunListResponse, err error)

ListRunsResponder handles the response to the ListRuns request. The method always closes the http.Response Body.

func (TriggersClient) ListRunsSender

func (client TriggersClient) ListRunsSender(req *http.Request) (*http.Response, error)

ListRunsSender sends the ListRuns request. The method will close the http.Response Body if it receives an error.

func (TriggersClient) Start

func (client TriggersClient) Start(ctx context.Context, resourceGroupName string, factoryName string, triggerName string) (result TriggersStartFuture, err error)

Start starts a trigger. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. triggerName - the trigger name.

func (TriggersClient) StartPreparer

func (client TriggersClient) StartPreparer(ctx context.Context, resourceGroupName string, factoryName string, triggerName string) (*http.Request, error)

StartPreparer prepares the Start request.

func (TriggersClient) StartResponder

func (client TriggersClient) StartResponder(resp *http.Response) (result autorest.Response, err error)

StartResponder handles the response to the Start request. The method always closes the http.Response Body.

func (TriggersClient) StartSender

func (client TriggersClient) StartSender(req *http.Request) (future TriggersStartFuture, err error)

StartSender sends the Start request. The method will close the http.Response Body if it receives an error.

func (TriggersClient) Stop

func (client TriggersClient) Stop(ctx context.Context, resourceGroupName string, factoryName string, triggerName string) (result TriggersStopFuture, err error)

Stop stops a trigger. Parameters: resourceGroupName - the resource group name. factoryName - the factory name. triggerName - the trigger name.

func (TriggersClient) StopPreparer

func (client TriggersClient) StopPreparer(ctx context.Context, resourceGroupName string, factoryName string, triggerName string) (*http.Request, error)

StopPreparer prepares the Stop request.

func (TriggersClient) StopResponder

func (client TriggersClient) StopResponder(resp *http.Response) (result autorest.Response, err error)

StopResponder handles the response to the Stop request. The method always closes the http.Response Body.

func (TriggersClient) StopSender

func (client TriggersClient) StopSender(req *http.Request) (future TriggersStopFuture, err error)

StopSender sends the Stop request. The method will close the http.Response Body if it receives an error.

type TriggersStartFuture

type TriggersStartFuture struct {
	azure.Future
	// contains filtered or unexported fields
}

TriggersStartFuture an abstraction for monitoring and retrieving the results of a long-running operation.

func (TriggersStartFuture) Result

func (future TriggersStartFuture) Result(client TriggersClient) (ar autorest.Response, err error)

Result returns the result of the asynchronous operation. If the operation has not completed it will return an error.

type TriggersStopFuture

type TriggersStopFuture struct {
	azure.Future
	// contains filtered or unexported fields
}

TriggersStopFuture an abstraction for monitoring and retrieving the results of a long-running operation.

func (TriggersStopFuture) Result

func (future TriggersStopFuture) Result(client TriggersClient) (ar autorest.Response, err error)

Result returns the result of the asynchronous operation. If the operation has not completed it will return an error.

type TumblingWindowFrequency

type TumblingWindowFrequency string

TumblingWindowFrequency enumerates the values for tumbling window frequency.

const (
	// TumblingWindowFrequencyHour ...
	TumblingWindowFrequencyHour TumblingWindowFrequency = "Hour"
	// TumblingWindowFrequencyMinute ...
	TumblingWindowFrequencyMinute TumblingWindowFrequency = "Minute"
)

func PossibleTumblingWindowFrequencyValues

func PossibleTumblingWindowFrequencyValues() []TumblingWindowFrequency

PossibleTumblingWindowFrequencyValues returns an array of possible values for the TumblingWindowFrequency const type.

type TumblingWindowTrigger

type TumblingWindowTrigger struct {
	// Pipeline - Pipeline for which runs are created when an event is fired for trigger window that is ready.
	Pipeline *TriggerPipelineReference `json:"pipeline,omitempty"`
	// TumblingWindowTriggerTypeProperties - Tumbling Window Trigger properties.
	*TumblingWindowTriggerTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Trigger description.
	Description *string `json:"description,omitempty"`
	// RuntimeState - Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. Possible values include: 'TriggerRuntimeStateStarted', 'TriggerRuntimeStateStopped', 'TriggerRuntimeStateDisabled'
	RuntimeState TriggerRuntimeState `json:"runtimeState,omitempty"`
	// Type - Possible values include: 'TypeTrigger', 'TypeTumblingWindowTrigger', 'TypeBlobTrigger', 'TypeScheduleTrigger', 'TypeMultiplePipelineTrigger'
	Type TypeBasicTrigger `json:"type,omitempty"`
}

TumblingWindowTrigger trigger that schedules pipeline runs for all fixed time interval windows from a start time without gaps and also supports backfill scenarios (when start time is in the past).

func (TumblingWindowTrigger) AsBasicMultiplePipelineTrigger

func (twt TumblingWindowTrigger) AsBasicMultiplePipelineTrigger() (BasicMultiplePipelineTrigger, bool)

AsBasicMultiplePipelineTrigger is the BasicTrigger implementation for TumblingWindowTrigger.

func (TumblingWindowTrigger) AsBasicTrigger

func (twt TumblingWindowTrigger) AsBasicTrigger() (BasicTrigger, bool)

AsBasicTrigger is the BasicTrigger implementation for TumblingWindowTrigger.

func (TumblingWindowTrigger) AsBlobTrigger

func (twt TumblingWindowTrigger) AsBlobTrigger() (*BlobTrigger, bool)

AsBlobTrigger is the BasicTrigger implementation for TumblingWindowTrigger.

func (TumblingWindowTrigger) AsMultiplePipelineTrigger

func (twt TumblingWindowTrigger) AsMultiplePipelineTrigger() (*MultiplePipelineTrigger, bool)

AsMultiplePipelineTrigger is the BasicTrigger implementation for TumblingWindowTrigger.

func (TumblingWindowTrigger) AsScheduleTrigger

func (twt TumblingWindowTrigger) AsScheduleTrigger() (*ScheduleTrigger, bool)

AsScheduleTrigger is the BasicTrigger implementation for TumblingWindowTrigger.

func (TumblingWindowTrigger) AsTrigger

func (twt TumblingWindowTrigger) AsTrigger() (*Trigger, bool)

AsTrigger is the BasicTrigger implementation for TumblingWindowTrigger.

func (TumblingWindowTrigger) AsTumblingWindowTrigger

func (twt TumblingWindowTrigger) AsTumblingWindowTrigger() (*TumblingWindowTrigger, bool)

AsTumblingWindowTrigger is the BasicTrigger implementation for TumblingWindowTrigger.

func (TumblingWindowTrigger) MarshalJSON

func (twt TumblingWindowTrigger) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for TumblingWindowTrigger.

func (*TumblingWindowTrigger) UnmarshalJSON

func (twt *TumblingWindowTrigger) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for TumblingWindowTrigger struct.

type TumblingWindowTriggerTypeProperties

type TumblingWindowTriggerTypeProperties struct {
	// Frequency - The frequency of the time windows. Possible values include: 'TumblingWindowFrequencyMinute', 'TumblingWindowFrequencyHour'
	Frequency TumblingWindowFrequency `json:"frequency,omitempty"`
	// Interval - The interval of the time windows. The minimum interval allowed is 15 Minutes.
	Interval *int32 `json:"interval,omitempty"`
	// StartTime - The start time for the time period for the trigger during which events are fired for windows that are ready. Only UTC time is currently supported.
	StartTime *date.Time `json:"startTime,omitempty"`
	// EndTime - The end time for the time period for the trigger during which events are fired for windows that are ready. Only UTC time is currently supported.
	EndTime *date.Time `json:"endTime,omitempty"`
	// Delay - Specifies how long the trigger waits past due time before triggering new run. It doesn't alter window start and end time. The default is 0. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	Delay interface{} `json:"delay,omitempty"`
	// MaxConcurrency - The max number of parallel time windows (ready for execution) for which a new run is triggered.
	MaxConcurrency *int32 `json:"maxConcurrency,omitempty"`
	// RetryPolicy - Retry policy that will be applied for failed pipeline runs.
	RetryPolicy *RetryPolicy `json:"retryPolicy,omitempty"`
}

TumblingWindowTriggerTypeProperties tumbling Window Trigger properties.

type Type

type Type string

Type enumerates the values for type.

const (
	// TypeAzureKeyVaultSecret ...
	TypeAzureKeyVaultSecret Type = "AzureKeyVaultSecret"
	// TypeSecretBase ...
	TypeSecretBase Type = "SecretBase"
	// TypeSecureString ...
	TypeSecureString Type = "SecureString"
)

func PossibleTypeValues

func PossibleTypeValues() []Type

PossibleTypeValues returns an array of possible values for the Type const type.

type TypeBasicActivity

type TypeBasicActivity string

TypeBasicActivity enumerates the values for type basic activity.

const (
	// TypeActivity ...
	TypeActivity TypeBasicActivity = "Activity"
	// TypeAzureMLBatchExecution ...
	TypeAzureMLBatchExecution TypeBasicActivity = "AzureMLBatchExecution"
	// TypeAzureMLUpdateResource ...
	TypeAzureMLUpdateResource TypeBasicActivity = "AzureMLUpdateResource"
	// TypeContainer ...
	TypeContainer TypeBasicActivity = "Container"
	// TypeCopy ...
	TypeCopy TypeBasicActivity = "Copy"
	// TypeCustom ...
	TypeCustom TypeBasicActivity = "Custom"
	// TypeDatabricksNotebook ...
	TypeDatabricksNotebook TypeBasicActivity = "DatabricksNotebook"
	// TypeDataLakeAnalyticsUSQL ...
	TypeDataLakeAnalyticsUSQL TypeBasicActivity = "DataLakeAnalyticsU-SQL"
	// TypeExecutePipeline ...
	TypeExecutePipeline TypeBasicActivity = "ExecutePipeline"
	// TypeExecuteSSISPackage ...
	TypeExecuteSSISPackage TypeBasicActivity = "ExecuteSSISPackage"
	// TypeExecution ...
	TypeExecution TypeBasicActivity = "Execution"
	// TypeFilter ...
	TypeFilter TypeBasicActivity = "Filter"
	// TypeForEach ...
	TypeForEach TypeBasicActivity = "ForEach"
	// TypeGetMetadata ...
	TypeGetMetadata TypeBasicActivity = "GetMetadata"
	// TypeHDInsightHive ...
	TypeHDInsightHive TypeBasicActivity = "HDInsightHive"
	// TypeHDInsightMapReduce ...
	TypeHDInsightMapReduce TypeBasicActivity = "HDInsightMapReduce"
	// TypeHDInsightPig ...
	TypeHDInsightPig TypeBasicActivity = "HDInsightPig"
	// TypeHDInsightSpark ...
	TypeHDInsightSpark TypeBasicActivity = "HDInsightSpark"
	// TypeHDInsightStreaming ...
	TypeHDInsightStreaming TypeBasicActivity = "HDInsightStreaming"
	// TypeIfCondition ...
	TypeIfCondition TypeBasicActivity = "IfCondition"
	// TypeLookup ...
	TypeLookup TypeBasicActivity = "Lookup"
	// TypeSQLServerStoredProcedure ...
	TypeSQLServerStoredProcedure TypeBasicActivity = "SqlServerStoredProcedure"
	// TypeUntil ...
	TypeUntil TypeBasicActivity = "Until"
	// TypeWait ...
	TypeWait TypeBasicActivity = "Wait"
	// TypeWebActivity ...
	TypeWebActivity TypeBasicActivity = "WebActivity"
)

func PossibleTypeBasicActivityValues

func PossibleTypeBasicActivityValues() []TypeBasicActivity

PossibleTypeBasicActivityValues returns an array of possible values for the TypeBasicActivity const type.

type TypeBasicCopySink

type TypeBasicCopySink string

TypeBasicCopySink enumerates the values for type basic copy sink.

const (
	// TypeAzureDataLakeStoreSink ...
	TypeAzureDataLakeStoreSink TypeBasicCopySink = "AzureDataLakeStoreSink"
	// TypeAzureQueueSink ...
	TypeAzureQueueSink TypeBasicCopySink = "AzureQueueSink"
	// TypeAzureSearchIndexSink ...
	TypeAzureSearchIndexSink TypeBasicCopySink = "AzureSearchIndexSink"
	// TypeAzureTableSink ...
	TypeAzureTableSink TypeBasicCopySink = "AzureTableSink"
	// TypeBlobSink ...
	TypeBlobSink TypeBasicCopySink = "BlobSink"
	// TypeCopySink ...
	TypeCopySink TypeBasicCopySink = "CopySink"
	// TypeDocumentDbCollectionSink ...
	TypeDocumentDbCollectionSink TypeBasicCopySink = "DocumentDbCollectionSink"
	// TypeDynamicsSink ...
	TypeDynamicsSink TypeBasicCopySink = "DynamicsSink"
	// TypeFileSystemSink ...
	TypeFileSystemSink TypeBasicCopySink = "FileSystemSink"
	// TypeOdbcSink ...
	TypeOdbcSink TypeBasicCopySink = "OdbcSink"
	// TypeOracleSink ...
	TypeOracleSink TypeBasicCopySink = "OracleSink"
	// TypeSalesforceSink ...
	TypeSalesforceSink TypeBasicCopySink = "SalesforceSink"
	// TypeSapCloudForCustomerSink ...
	TypeSapCloudForCustomerSink TypeBasicCopySink = "SapCloudForCustomerSink"
	// TypeSQLDWSink ...
	TypeSQLDWSink TypeBasicCopySink = "SqlDWSink"
	// TypeSQLSink ...
	TypeSQLSink TypeBasicCopySink = "SqlSink"
)

func PossibleTypeBasicCopySinkValues

func PossibleTypeBasicCopySinkValues() []TypeBasicCopySink

PossibleTypeBasicCopySinkValues returns an array of possible values for the TypeBasicCopySink const type.

type TypeBasicCopySource

type TypeBasicCopySource string

TypeBasicCopySource enumerates the values for type basic copy source.

const (
	// TypeAmazonMWSSource ...
	TypeAmazonMWSSource TypeBasicCopySource = "AmazonMWSSource"
	// TypeAmazonRedshiftSource ...
	TypeAmazonRedshiftSource TypeBasicCopySource = "AmazonRedshiftSource"
	// TypeAzureDataLakeStoreSource ...
	TypeAzureDataLakeStoreSource TypeBasicCopySource = "AzureDataLakeStoreSource"
	// TypeAzureMySQLSource ...
	TypeAzureMySQLSource TypeBasicCopySource = "AzureMySqlSource"
	// TypeAzurePostgreSQLSource ...
	TypeAzurePostgreSQLSource TypeBasicCopySource = "AzurePostgreSqlSource"
	// TypeAzureTableSource ...
	TypeAzureTableSource TypeBasicCopySource = "AzureTableSource"
	// TypeBlobSource ...
	TypeBlobSource TypeBasicCopySource = "BlobSource"
	// TypeCassandraSource ...
	TypeCassandraSource TypeBasicCopySource = "CassandraSource"
	// TypeConcurSource ...
	TypeConcurSource TypeBasicCopySource = "ConcurSource"
	// TypeCopySource ...
	TypeCopySource TypeBasicCopySource = "CopySource"
	// TypeCouchbaseSource ...
	TypeCouchbaseSource TypeBasicCopySource = "CouchbaseSource"
	// TypeDocumentDbCollectionSource ...
	TypeDocumentDbCollectionSource TypeBasicCopySource = "DocumentDbCollectionSource"
	// TypeDrillSource ...
	TypeDrillSource TypeBasicCopySource = "DrillSource"
	// TypeDynamicsSource ...
	TypeDynamicsSource TypeBasicCopySource = "DynamicsSource"
	// TypeEloquaSource ...
	TypeEloquaSource TypeBasicCopySource = "EloquaSource"
	// TypeFileSystemSource ...
	TypeFileSystemSource TypeBasicCopySource = "FileSystemSource"
	// TypeGoogleBigQuerySource ...
	TypeGoogleBigQuerySource TypeBasicCopySource = "GoogleBigQuerySource"
	// TypeGreenplumSource ...
	TypeGreenplumSource TypeBasicCopySource = "GreenplumSource"
	// TypeHBaseSource ...
	TypeHBaseSource TypeBasicCopySource = "HBaseSource"
	// TypeHdfsSource ...
	TypeHdfsSource TypeBasicCopySource = "HdfsSource"
	// TypeHiveSource ...
	TypeHiveSource TypeBasicCopySource = "HiveSource"
	// TypeHTTPSource ...
	TypeHTTPSource TypeBasicCopySource = "HttpSource"
	// TypeHubspotSource ...
	TypeHubspotSource TypeBasicCopySource = "HubspotSource"
	// TypeImpalaSource ...
	TypeImpalaSource TypeBasicCopySource = "ImpalaSource"
	// TypeJiraSource ...
	TypeJiraSource TypeBasicCopySource = "JiraSource"
	// TypeMagentoSource ...
	TypeMagentoSource TypeBasicCopySource = "MagentoSource"
	// TypeMariaDBSource ...
	TypeMariaDBSource TypeBasicCopySource = "MariaDBSource"
	// TypeMarketoSource ...
	TypeMarketoSource TypeBasicCopySource = "MarketoSource"
	// TypeMongoDbSource ...
	TypeMongoDbSource TypeBasicCopySource = "MongoDbSource"
	// TypeNetezzaSource ...
	TypeNetezzaSource TypeBasicCopySource = "NetezzaSource"
	// TypeOracleSource ...
	TypeOracleSource TypeBasicCopySource = "OracleSource"
	// TypePaypalSource ...
	TypePaypalSource TypeBasicCopySource = "PaypalSource"
	// TypePhoenixSource ...
	TypePhoenixSource TypeBasicCopySource = "PhoenixSource"
	// TypePrestoSource ...
	TypePrestoSource TypeBasicCopySource = "PrestoSource"
	// TypeQuickBooksSource ...
	TypeQuickBooksSource TypeBasicCopySource = "QuickBooksSource"
	// TypeRelationalSource ...
	TypeRelationalSource TypeBasicCopySource = "RelationalSource"
	// TypeResponsysSource ...
	TypeResponsysSource TypeBasicCopySource = "ResponsysSource"
	// TypeSalesforceMarketingCloudSource ...
	TypeSalesforceMarketingCloudSource TypeBasicCopySource = "SalesforceMarketingCloudSource"
	// TypeSalesforceSource ...
	TypeSalesforceSource TypeBasicCopySource = "SalesforceSource"
	// TypeSapCloudForCustomerSource ...
	TypeSapCloudForCustomerSource TypeBasicCopySource = "SapCloudForCustomerSource"
	// TypeSapEccSource ...
	TypeSapEccSource TypeBasicCopySource = "SapEccSource"
	// TypeServiceNowSource ...
	TypeServiceNowSource TypeBasicCopySource = "ServiceNowSource"
	// TypeShopifySource ...
	TypeShopifySource TypeBasicCopySource = "ShopifySource"
	// TypeSparkSource ...
	TypeSparkSource TypeBasicCopySource = "SparkSource"
	// TypeSQLDWSource ...
	TypeSQLDWSource TypeBasicCopySource = "SqlDWSource"
	// TypeSQLSource ...
	TypeSQLSource TypeBasicCopySource = "SqlSource"
	// TypeSquareSource ...
	TypeSquareSource TypeBasicCopySource = "SquareSource"
	// TypeVerticaSource ...
	TypeVerticaSource TypeBasicCopySource = "VerticaSource"
	// TypeWebSource ...
	TypeWebSource TypeBasicCopySource = "WebSource"
	// TypeXeroSource ...
	TypeXeroSource TypeBasicCopySource = "XeroSource"
	// TypeZohoSource ...
	TypeZohoSource TypeBasicCopySource = "ZohoSource"
)

func PossibleTypeBasicCopySourceValues

func PossibleTypeBasicCopySourceValues() []TypeBasicCopySource

PossibleTypeBasicCopySourceValues returns an array of possible values for the TypeBasicCopySource const type.

type TypeBasicCopyTranslator

type TypeBasicCopyTranslator string

TypeBasicCopyTranslator enumerates the values for type basic copy translator.

const (
	// TypeCopyTranslator ...
	TypeCopyTranslator TypeBasicCopyTranslator = "CopyTranslator"
	// TypeTabularTranslator ...
	TypeTabularTranslator TypeBasicCopyTranslator = "TabularTranslator"
)

func PossibleTypeBasicCopyTranslatorValues

func PossibleTypeBasicCopyTranslatorValues() []TypeBasicCopyTranslator

PossibleTypeBasicCopyTranslatorValues returns an array of possible values for the TypeBasicCopyTranslator const type.

type TypeBasicDataset

type TypeBasicDataset string

TypeBasicDataset enumerates the values for type basic dataset.

const (
	// TypeAmazonMWSObject ...
	TypeAmazonMWSObject TypeBasicDataset = "AmazonMWSObject"
	// TypeAmazonS3Object ...
	TypeAmazonS3Object TypeBasicDataset = "AmazonS3Object"
	// TypeAzureBlob ...
	TypeAzureBlob TypeBasicDataset = "AzureBlob"
	// TypeAzureDataLakeStoreFile ...
	TypeAzureDataLakeStoreFile TypeBasicDataset = "AzureDataLakeStoreFile"
	// TypeAzureMySQLTable ...
	TypeAzureMySQLTable TypeBasicDataset = "AzureMySqlTable"
	// TypeAzurePostgreSQLTable ...
	TypeAzurePostgreSQLTable TypeBasicDataset = "AzurePostgreSqlTable"
	// TypeAzureSearchIndex ...
	TypeAzureSearchIndex TypeBasicDataset = "AzureSearchIndex"
	// TypeAzureSQLDWTable ...
	TypeAzureSQLDWTable TypeBasicDataset = "AzureSqlDWTable"
	// TypeAzureSQLTable ...
	TypeAzureSQLTable TypeBasicDataset = "AzureSqlTable"
	// TypeAzureTable ...
	TypeAzureTable TypeBasicDataset = "AzureTable"
	// TypeCassandraTable ...
	TypeCassandraTable TypeBasicDataset = "CassandraTable"
	// TypeConcurObject ...
	TypeConcurObject TypeBasicDataset = "ConcurObject"
	// TypeCouchbaseTable ...
	TypeCouchbaseTable TypeBasicDataset = "CouchbaseTable"
	// TypeCustomDataset ...
	TypeCustomDataset TypeBasicDataset = "CustomDataset"
	// TypeDataset ...
	TypeDataset TypeBasicDataset = "Dataset"
	// TypeDocumentDbCollection ...
	TypeDocumentDbCollection TypeBasicDataset = "DocumentDbCollection"
	// TypeDrillTable ...
	TypeDrillTable TypeBasicDataset = "DrillTable"
	// TypeDynamicsEntity ...
	TypeDynamicsEntity TypeBasicDataset = "DynamicsEntity"
	// TypeEloquaObject ...
	TypeEloquaObject TypeBasicDataset = "EloquaObject"
	// TypeFileShare ...
	TypeFileShare TypeBasicDataset = "FileShare"
	// TypeGoogleBigQueryObject ...
	TypeGoogleBigQueryObject TypeBasicDataset = "GoogleBigQueryObject"
	// TypeGreenplumTable ...
	TypeGreenplumTable TypeBasicDataset = "GreenplumTable"
	// TypeHBaseObject ...
	TypeHBaseObject TypeBasicDataset = "HBaseObject"
	// TypeHiveObject ...
	TypeHiveObject TypeBasicDataset = "HiveObject"
	// TypeHTTPFile ...
	TypeHTTPFile TypeBasicDataset = "HttpFile"
	// TypeHubspotObject ...
	TypeHubspotObject TypeBasicDataset = "HubspotObject"
	// TypeImpalaObject ...
	TypeImpalaObject TypeBasicDataset = "ImpalaObject"
	// TypeJiraObject ...
	TypeJiraObject TypeBasicDataset = "JiraObject"
	// TypeMagentoObject ...
	TypeMagentoObject TypeBasicDataset = "MagentoObject"
	// TypeMariaDBTable ...
	TypeMariaDBTable TypeBasicDataset = "MariaDBTable"
	// TypeMarketoObject ...
	TypeMarketoObject TypeBasicDataset = "MarketoObject"
	// TypeMongoDbCollection ...
	TypeMongoDbCollection TypeBasicDataset = "MongoDbCollection"
	// TypeNetezzaTable ...
	TypeNetezzaTable TypeBasicDataset = "NetezzaTable"
	// TypeODataResource ...
	TypeODataResource TypeBasicDataset = "ODataResource"
	// TypeOracleTable ...
	TypeOracleTable TypeBasicDataset = "OracleTable"
	// TypePaypalObject ...
	TypePaypalObject TypeBasicDataset = "PaypalObject"
	// TypePhoenixObject ...
	TypePhoenixObject TypeBasicDataset = "PhoenixObject"
	// TypePrestoObject ...
	TypePrestoObject TypeBasicDataset = "PrestoObject"
	// TypeQuickBooksObject ...
	TypeQuickBooksObject TypeBasicDataset = "QuickBooksObject"
	// TypeRelationalTable ...
	TypeRelationalTable TypeBasicDataset = "RelationalTable"
	// TypeResponsysObject ...
	TypeResponsysObject TypeBasicDataset = "ResponsysObject"
	// TypeSalesforceMarketingCloudObject ...
	TypeSalesforceMarketingCloudObject TypeBasicDataset = "SalesforceMarketingCloudObject"
	// TypeSalesforceObject ...
	TypeSalesforceObject TypeBasicDataset = "SalesforceObject"
	// TypeSapCloudForCustomerResource ...
	TypeSapCloudForCustomerResource TypeBasicDataset = "SapCloudForCustomerResource"
	// TypeSapEccResource ...
	TypeSapEccResource TypeBasicDataset = "SapEccResource"
	// TypeServiceNowObject ...
	TypeServiceNowObject TypeBasicDataset = "ServiceNowObject"
	// TypeShopifyObject ...
	TypeShopifyObject TypeBasicDataset = "ShopifyObject"
	// TypeSparkObject ...
	TypeSparkObject TypeBasicDataset = "SparkObject"
	// TypeSQLServerTable ...
	TypeSQLServerTable TypeBasicDataset = "SqlServerTable"
	// TypeSquareObject ...
	TypeSquareObject TypeBasicDataset = "SquareObject"
	// TypeVerticaTable ...
	TypeVerticaTable TypeBasicDataset = "VerticaTable"
	// TypeWebTable ...
	TypeWebTable TypeBasicDataset = "WebTable"
	// TypeXeroObject ...
	TypeXeroObject TypeBasicDataset = "XeroObject"
	// TypeZohoObject ...
	TypeZohoObject TypeBasicDataset = "ZohoObject"
)

func PossibleTypeBasicDatasetValues

func PossibleTypeBasicDatasetValues() []TypeBasicDataset

PossibleTypeBasicDatasetValues returns an array of possible values for the TypeBasicDataset const type.

type TypeBasicDatasetCompression

type TypeBasicDatasetCompression string

TypeBasicDatasetCompression enumerates the values for type basic dataset compression.

const (
	// TypeBZip2 ...
	TypeBZip2 TypeBasicDatasetCompression = "BZip2"
	// TypeDatasetCompression ...
	TypeDatasetCompression TypeBasicDatasetCompression = "DatasetCompression"
	// TypeDeflate ...
	TypeDeflate TypeBasicDatasetCompression = "Deflate"
	// TypeGZip ...
	TypeGZip TypeBasicDatasetCompression = "GZip"
	// TypeZipDeflate ...
	TypeZipDeflate TypeBasicDatasetCompression = "ZipDeflate"
)

func PossibleTypeBasicDatasetCompressionValues

func PossibleTypeBasicDatasetCompressionValues() []TypeBasicDatasetCompression

PossibleTypeBasicDatasetCompressionValues returns an array of possible values for the TypeBasicDatasetCompression const type.

type TypeBasicDatasetStorageFormat

type TypeBasicDatasetStorageFormat string

TypeBasicDatasetStorageFormat enumerates the values for type basic dataset storage format.

const (
	// TypeAvroFormat ...
	TypeAvroFormat TypeBasicDatasetStorageFormat = "AvroFormat"
	// TypeDatasetStorageFormat ...
	TypeDatasetStorageFormat TypeBasicDatasetStorageFormat = "DatasetStorageFormat"
	// TypeJSONFormat ...
	TypeJSONFormat TypeBasicDatasetStorageFormat = "JsonFormat"
	// TypeOrcFormat ...
	TypeOrcFormat TypeBasicDatasetStorageFormat = "OrcFormat"
	// TypeParquetFormat ...
	TypeParquetFormat TypeBasicDatasetStorageFormat = "ParquetFormat"
	// TypeTextFormat ...
	TypeTextFormat TypeBasicDatasetStorageFormat = "TextFormat"
)

func PossibleTypeBasicDatasetStorageFormatValues

func PossibleTypeBasicDatasetStorageFormatValues() []TypeBasicDatasetStorageFormat

PossibleTypeBasicDatasetStorageFormatValues returns an array of possible values for the TypeBasicDatasetStorageFormat const type.

type TypeBasicIntegrationRuntime

type TypeBasicIntegrationRuntime string

TypeBasicIntegrationRuntime enumerates the values for type basic integration runtime.

const (
	// TypeIntegrationRuntime ...
	TypeIntegrationRuntime TypeBasicIntegrationRuntime = "IntegrationRuntime"
	// TypeManaged ...
	TypeManaged TypeBasicIntegrationRuntime = "Managed"
	// TypeSelfHosted ...
	TypeSelfHosted TypeBasicIntegrationRuntime = "SelfHosted"
)

func PossibleTypeBasicIntegrationRuntimeValues

func PossibleTypeBasicIntegrationRuntimeValues() []TypeBasicIntegrationRuntime

PossibleTypeBasicIntegrationRuntimeValues returns an array of possible values for the TypeBasicIntegrationRuntime const type.

type TypeBasicIntegrationRuntimeStatus

type TypeBasicIntegrationRuntimeStatus string

TypeBasicIntegrationRuntimeStatus enumerates the values for type basic integration runtime status.

const (
	// TypeBasicIntegrationRuntimeStatusTypeIntegrationRuntimeStatus ...
	TypeBasicIntegrationRuntimeStatusTypeIntegrationRuntimeStatus TypeBasicIntegrationRuntimeStatus = "IntegrationRuntimeStatus"
	// TypeBasicIntegrationRuntimeStatusTypeManaged ...
	TypeBasicIntegrationRuntimeStatusTypeManaged TypeBasicIntegrationRuntimeStatus = "Managed"
	// TypeBasicIntegrationRuntimeStatusTypeSelfHosted ...
	TypeBasicIntegrationRuntimeStatusTypeSelfHosted TypeBasicIntegrationRuntimeStatus = "SelfHosted"
)

func PossibleTypeBasicIntegrationRuntimeStatusValues

func PossibleTypeBasicIntegrationRuntimeStatusValues() []TypeBasicIntegrationRuntimeStatus

PossibleTypeBasicIntegrationRuntimeStatusValues returns an array of possible values for the TypeBasicIntegrationRuntimeStatus const type.

type TypeBasicLinkedService

type TypeBasicLinkedService string

TypeBasicLinkedService enumerates the values for type basic linked service.

const (
	// TypeAmazonMWS ...
	TypeAmazonMWS TypeBasicLinkedService = "AmazonMWS"
	// TypeAmazonRedshift ...
	TypeAmazonRedshift TypeBasicLinkedService = "AmazonRedshift"
	// TypeAmazonS3 ...
	TypeAmazonS3 TypeBasicLinkedService = "AmazonS3"
	// TypeAzureBatch ...
	TypeAzureBatch TypeBasicLinkedService = "AzureBatch"
	// TypeAzureDatabricks ...
	TypeAzureDatabricks TypeBasicLinkedService = "AzureDatabricks"
	// TypeAzureDataLakeAnalytics ...
	TypeAzureDataLakeAnalytics TypeBasicLinkedService = "AzureDataLakeAnalytics"
	// TypeAzureDataLakeStore ...
	TypeAzureDataLakeStore TypeBasicLinkedService = "AzureDataLakeStore"
	// TypeAzureKeyVault ...
	TypeAzureKeyVault TypeBasicLinkedService = "AzureKeyVault"
	// TypeAzureML ...
	TypeAzureML TypeBasicLinkedService = "AzureML"
	// TypeAzureMySQL ...
	TypeAzureMySQL TypeBasicLinkedService = "AzureMySql"
	// TypeAzurePostgreSQL ...
	TypeAzurePostgreSQL TypeBasicLinkedService = "AzurePostgreSql"
	// TypeAzureSearch ...
	TypeAzureSearch TypeBasicLinkedService = "AzureSearch"
	// TypeAzureSQLDatabase ...
	TypeAzureSQLDatabase TypeBasicLinkedService = "AzureSqlDatabase"
	// TypeAzureSQLDW ...
	TypeAzureSQLDW TypeBasicLinkedService = "AzureSqlDW"
	// TypeAzureStorage ...
	TypeAzureStorage TypeBasicLinkedService = "AzureStorage"
	// TypeCassandra ...
	TypeCassandra TypeBasicLinkedService = "Cassandra"
	// TypeConcur ...
	TypeConcur TypeBasicLinkedService = "Concur"
	// TypeCosmosDb ...
	TypeCosmosDb TypeBasicLinkedService = "CosmosDb"
	// TypeCouchbase ...
	TypeCouchbase TypeBasicLinkedService = "Couchbase"
	// TypeCustomDataSource ...
	TypeCustomDataSource TypeBasicLinkedService = "CustomDataSource"
	// TypeDb2 ...
	TypeDb2 TypeBasicLinkedService = "Db2"
	// TypeDrill ...
	TypeDrill TypeBasicLinkedService = "Drill"
	// TypeDynamics ...
	TypeDynamics TypeBasicLinkedService = "Dynamics"
	// TypeEloqua ...
	TypeEloqua TypeBasicLinkedService = "Eloqua"
	// TypeFileServer ...
	TypeFileServer TypeBasicLinkedService = "FileServer"
	// TypeFtpServer ...
	TypeFtpServer TypeBasicLinkedService = "FtpServer"
	// TypeGoogleBigQuery ...
	TypeGoogleBigQuery TypeBasicLinkedService = "GoogleBigQuery"
	// TypeGreenplum ...
	TypeGreenplum TypeBasicLinkedService = "Greenplum"
	// TypeHBase ...
	TypeHBase TypeBasicLinkedService = "HBase"
	// TypeHdfs ...
	TypeHdfs TypeBasicLinkedService = "Hdfs"
	// TypeHDInsight ...
	TypeHDInsight TypeBasicLinkedService = "HDInsight"
	// TypeHDInsightOnDemand ...
	TypeHDInsightOnDemand TypeBasicLinkedService = "HDInsightOnDemand"
	// TypeHive ...
	TypeHive TypeBasicLinkedService = "Hive"
	// TypeHTTPServer ...
	TypeHTTPServer TypeBasicLinkedService = "HttpServer"
	// TypeHubspot ...
	TypeHubspot TypeBasicLinkedService = "Hubspot"
	// TypeImpala ...
	TypeImpala TypeBasicLinkedService = "Impala"
	// TypeJira ...
	TypeJira TypeBasicLinkedService = "Jira"
	// TypeLinkedService ...
	TypeLinkedService TypeBasicLinkedService = "LinkedService"
	// TypeMagento ...
	TypeMagento TypeBasicLinkedService = "Magento"
	// TypeMariaDB ...
	TypeMariaDB TypeBasicLinkedService = "MariaDB"
	// TypeMarketo ...
	TypeMarketo TypeBasicLinkedService = "Marketo"
	// TypeMongoDb ...
	TypeMongoDb TypeBasicLinkedService = "MongoDb"
	// TypeMySQL ...
	TypeMySQL TypeBasicLinkedService = "MySql"
	// TypeNetezza ...
	TypeNetezza TypeBasicLinkedService = "Netezza"
	// TypeOData ...
	TypeOData TypeBasicLinkedService = "OData"
	// TypeOdbc ...
	TypeOdbc TypeBasicLinkedService = "Odbc"
	// TypeOracle ...
	TypeOracle TypeBasicLinkedService = "Oracle"
	// TypePaypal ...
	TypePaypal TypeBasicLinkedService = "Paypal"
	// TypePhoenix ...
	TypePhoenix TypeBasicLinkedService = "Phoenix"
	// TypePostgreSQL ...
	TypePostgreSQL TypeBasicLinkedService = "PostgreSql"
	// TypePresto ...
	TypePresto TypeBasicLinkedService = "Presto"
	// TypeQuickBooks ...
	TypeQuickBooks TypeBasicLinkedService = "QuickBooks"
	// TypeResponsys ...
	TypeResponsys TypeBasicLinkedService = "Responsys"
	// TypeSalesforce ...
	TypeSalesforce TypeBasicLinkedService = "Salesforce"
	// TypeSalesforceMarketingCloud ...
	TypeSalesforceMarketingCloud TypeBasicLinkedService = "SalesforceMarketingCloud"
	// TypeSapBW ...
	TypeSapBW TypeBasicLinkedService = "SapBW"
	// TypeSapCloudForCustomer ...
	TypeSapCloudForCustomer TypeBasicLinkedService = "SapCloudForCustomer"
	// TypeSapEcc ...
	TypeSapEcc TypeBasicLinkedService = "SapEcc"
	// TypeSapHana ...
	TypeSapHana TypeBasicLinkedService = "SapHana"
	// TypeServiceNow ...
	TypeServiceNow TypeBasicLinkedService = "ServiceNow"
	// TypeSftp ...
	TypeSftp TypeBasicLinkedService = "Sftp"
	// TypeShopify ...
	TypeShopify TypeBasicLinkedService = "Shopify"
	// TypeSpark ...
	TypeSpark TypeBasicLinkedService = "Spark"
	// TypeSQLServer ...
	TypeSQLServer TypeBasicLinkedService = "SqlServer"
	// TypeSquare ...
	TypeSquare TypeBasicLinkedService = "Square"
	// TypeSybase ...
	TypeSybase TypeBasicLinkedService = "Sybase"
	// TypeTeradata ...
	TypeTeradata TypeBasicLinkedService = "Teradata"
	// TypeVertica ...
	TypeVertica TypeBasicLinkedService = "Vertica"
	// TypeWeb ...
	TypeWeb TypeBasicLinkedService = "Web"
	// TypeXero ...
	TypeXero TypeBasicLinkedService = "Xero"
	// TypeZoho ...
	TypeZoho TypeBasicLinkedService = "Zoho"
)

func PossibleTypeBasicLinkedServiceValues

func PossibleTypeBasicLinkedServiceValues() []TypeBasicLinkedService

PossibleTypeBasicLinkedServiceValues returns an array of possible values for the TypeBasicLinkedService const type.

type TypeBasicTrigger

type TypeBasicTrigger string

TypeBasicTrigger enumerates the values for type basic trigger.

const (
	// TypeBlobTrigger ...
	TypeBlobTrigger TypeBasicTrigger = "BlobTrigger"
	// TypeMultiplePipelineTrigger ...
	TypeMultiplePipelineTrigger TypeBasicTrigger = "MultiplePipelineTrigger"
	// TypeScheduleTrigger ...
	TypeScheduleTrigger TypeBasicTrigger = "ScheduleTrigger"
	// TypeTrigger ...
	TypeTrigger TypeBasicTrigger = "Trigger"
	// TypeTumblingWindowTrigger ...
	TypeTumblingWindowTrigger TypeBasicTrigger = "TumblingWindowTrigger"
)

func PossibleTypeBasicTriggerValues

func PossibleTypeBasicTriggerValues() []TypeBasicTrigger

PossibleTypeBasicTriggerValues returns an array of possible values for the TypeBasicTrigger const type.

type UntilActivity

type UntilActivity struct {
	// UntilActivityTypeProperties - Until activity properties.
	*UntilActivityTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

UntilActivity this activity executes inner activities until the specified boolean expression results to true or timeout is reached, whichever is earlier.

func (UntilActivity) AsActivity

func (ua UntilActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsAzureMLBatchExecutionActivity

func (ua UntilActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsAzureMLUpdateResourceActivity

func (ua UntilActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsBasicActivity

func (ua UntilActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsBasicControlActivity

func (ua UntilActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsBasicExecutionActivity

func (ua UntilActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsControlActivity

func (ua UntilActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsCopyActivity

func (ua UntilActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsCustomActivity

func (ua UntilActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsDataLakeAnalyticsUSQLActivity

func (ua UntilActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsDatabricksNotebookActivity

func (ua UntilActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsExecutePipelineActivity

func (ua UntilActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsExecuteSSISPackageActivity

func (ua UntilActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsExecutionActivity

func (ua UntilActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsFilterActivity

func (ua UntilActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsForEachActivity

func (ua UntilActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsGetMetadataActivity

func (ua UntilActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsHDInsightHiveActivity

func (ua UntilActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsHDInsightMapReduceActivity

func (ua UntilActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsHDInsightPigActivity

func (ua UntilActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsHDInsightSparkActivity

func (ua UntilActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsHDInsightStreamingActivity

func (ua UntilActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsIfConditionActivity

func (ua UntilActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsLookupActivity

func (ua UntilActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsSQLServerStoredProcedureActivity

func (ua UntilActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsUntilActivity

func (ua UntilActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsWaitActivity

func (ua UntilActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) AsWebActivity

func (ua UntilActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for UntilActivity.

func (UntilActivity) MarshalJSON

func (ua UntilActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for UntilActivity.

func (*UntilActivity) UnmarshalJSON

func (ua *UntilActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for UntilActivity struct.

type UntilActivityTypeProperties

type UntilActivityTypeProperties struct {
	// Expression - An expression that would evaluate to Boolean. The loop will continue until this expression evaluates to true
	Expression *Expression `json:"expression,omitempty"`
	// Timeout - Specifies the timeout for the activity to run. If there is no value specified, it takes the value of TimeSpan.FromDays(7) which is 1 week as default. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	Timeout interface{} `json:"timeout,omitempty"`
	// Activities - List of activities to execute.
	Activities *[]BasicActivity `json:"activities,omitempty"`
}

UntilActivityTypeProperties until activity properties.

func (*UntilActivityTypeProperties) UnmarshalJSON

func (uatp *UntilActivityTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for UntilActivityTypeProperties struct.

type UpdateIntegrationRuntimeNodeRequest

type UpdateIntegrationRuntimeNodeRequest struct {
	// ConcurrentJobsLimit - The number of concurrent jobs permitted to run on the integration runtime node. Values between 1 and maxConcurrentJobs(inclusive) are allowed.
	ConcurrentJobsLimit *int32 `json:"concurrentJobsLimit,omitempty"`
}

UpdateIntegrationRuntimeNodeRequest update integration runtime node request.

type UpdateIntegrationRuntimeRequest

type UpdateIntegrationRuntimeRequest struct {
	// AutoUpdate - Enables or disables the auto-update feature of the self-hosted integration runtime. See https://go.microsoft.com/fwlink/?linkid=854189. Possible values include: 'On', 'Off'
	AutoUpdate IntegrationRuntimeAutoUpdate `json:"autoUpdate,omitempty"`
	// UpdateDelayOffset - The time offset (in hours) in the day, e.g., PT03H is 3 hours. The integration runtime auto update will happen on that time.
	UpdateDelayOffset *string `json:"updateDelayOffset,omitempty"`
}

UpdateIntegrationRuntimeRequest update integration runtime request.

type VerticaLinkedService

type VerticaLinkedService struct {
	// VerticaLinkedServiceTypeProperties - Vertica linked service properties.
	*VerticaLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

VerticaLinkedService vertica linked service.

func (VerticaLinkedService) AsAmazonMWSLinkedService

func (vls VerticaLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAmazonRedshiftLinkedService

func (vls VerticaLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAmazonS3LinkedService

func (vls VerticaLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAzureBatchLinkedService

func (vls VerticaLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (vls VerticaLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAzureDataLakeStoreLinkedService

func (vls VerticaLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAzureDatabricksLinkedService

func (vls VerticaLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAzureKeyVaultLinkedService

func (vls VerticaLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAzureMLLinkedService

func (vls VerticaLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAzureMySQLLinkedService

func (vls VerticaLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAzurePostgreSQLLinkedService

func (vls VerticaLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAzureSQLDWLinkedService

func (vls VerticaLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAzureSQLDatabaseLinkedService

func (vls VerticaLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAzureSearchLinkedService

func (vls VerticaLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsAzureStorageLinkedService

func (vls VerticaLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsBasicLinkedService

func (vls VerticaLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsCassandraLinkedService

func (vls VerticaLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsConcurLinkedService

func (vls VerticaLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsCosmosDbLinkedService

func (vls VerticaLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsCouchbaseLinkedService

func (vls VerticaLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsCustomDataSourceLinkedService

func (vls VerticaLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsDb2LinkedService

func (vls VerticaLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsDrillLinkedService

func (vls VerticaLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsDynamicsLinkedService

func (vls VerticaLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsEloquaLinkedService

func (vls VerticaLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsFileServerLinkedService

func (vls VerticaLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsFtpServerLinkedService

func (vls VerticaLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsGoogleBigQueryLinkedService

func (vls VerticaLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsGreenplumLinkedService

func (vls VerticaLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsHBaseLinkedService

func (vls VerticaLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsHDInsightLinkedService

func (vls VerticaLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsHDInsightOnDemandLinkedService

func (vls VerticaLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsHTTPLinkedService

func (vls VerticaLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsHdfsLinkedService

func (vls VerticaLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsHiveLinkedService

func (vls VerticaLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsHubspotLinkedService

func (vls VerticaLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsImpalaLinkedService

func (vls VerticaLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsJiraLinkedService

func (vls VerticaLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsLinkedService

func (vls VerticaLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsMagentoLinkedService

func (vls VerticaLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsMariaDBLinkedService

func (vls VerticaLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsMarketoLinkedService

func (vls VerticaLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsMongoDbLinkedService

func (vls VerticaLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsMySQLLinkedService

func (vls VerticaLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsNetezzaLinkedService

func (vls VerticaLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsODataLinkedService

func (vls VerticaLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsOdbcLinkedService

func (vls VerticaLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsOracleLinkedService

func (vls VerticaLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsPaypalLinkedService

func (vls VerticaLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsPhoenixLinkedService

func (vls VerticaLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsPostgreSQLLinkedService

func (vls VerticaLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsPrestoLinkedService

func (vls VerticaLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsQuickBooksLinkedService

func (vls VerticaLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsResponsysLinkedService

func (vls VerticaLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsSQLServerLinkedService

func (vls VerticaLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsSalesforceLinkedService

func (vls VerticaLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsSalesforceMarketingCloudLinkedService

func (vls VerticaLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsSapBWLinkedService

func (vls VerticaLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsSapCloudForCustomerLinkedService

func (vls VerticaLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsSapEccLinkedService

func (vls VerticaLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsSapHanaLinkedService

func (vls VerticaLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsServiceNowLinkedService

func (vls VerticaLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsSftpServerLinkedService

func (vls VerticaLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsShopifyLinkedService

func (vls VerticaLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsSparkLinkedService

func (vls VerticaLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsSquareLinkedService

func (vls VerticaLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsSybaseLinkedService

func (vls VerticaLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsTeradataLinkedService

func (vls VerticaLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsVerticaLinkedService

func (vls VerticaLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsWebLinkedService

func (vls VerticaLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsXeroLinkedService

func (vls VerticaLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) AsZohoLinkedService

func (vls VerticaLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for VerticaLinkedService.

func (VerticaLinkedService) MarshalJSON

func (vls VerticaLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for VerticaLinkedService.

func (*VerticaLinkedService) UnmarshalJSON

func (vls *VerticaLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for VerticaLinkedService struct.

type VerticaLinkedServiceTypeProperties

type VerticaLinkedServiceTypeProperties struct {
	// ConnectionString - An ODBC connection string.
	ConnectionString BasicSecretBase `json:"connectionString,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

VerticaLinkedServiceTypeProperties vertica linked service properties.

func (*VerticaLinkedServiceTypeProperties) UnmarshalJSON

func (vlstp *VerticaLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for VerticaLinkedServiceTypeProperties struct.

type VerticaSource

type VerticaSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

VerticaSource a copy activity Vertica source.

func (VerticaSource) AsAmazonMWSSource

func (vs VerticaSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsAmazonRedshiftSource

func (vs VerticaSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsAzureDataLakeStoreSource

func (vs VerticaSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsAzureMySQLSource

func (vs VerticaSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsAzurePostgreSQLSource

func (vs VerticaSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsAzureTableSource

func (vs VerticaSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsBasicCopySource

func (vs VerticaSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsBlobSource

func (vs VerticaSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsCassandraSource

func (vs VerticaSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsConcurSource

func (vs VerticaSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsCopySource

func (vs VerticaSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsCouchbaseSource

func (vs VerticaSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsDocumentDbCollectionSource

func (vs VerticaSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsDrillSource

func (vs VerticaSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsDynamicsSource

func (vs VerticaSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsEloquaSource

func (vs VerticaSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsFileSystemSource

func (vs VerticaSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsGoogleBigQuerySource

func (vs VerticaSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsGreenplumSource

func (vs VerticaSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsHBaseSource

func (vs VerticaSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsHTTPSource

func (vs VerticaSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsHdfsSource

func (vs VerticaSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsHiveSource

func (vs VerticaSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsHubspotSource

func (vs VerticaSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsImpalaSource

func (vs VerticaSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsJiraSource

func (vs VerticaSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsMagentoSource

func (vs VerticaSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsMariaDBSource

func (vs VerticaSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsMarketoSource

func (vs VerticaSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsMongoDbSource

func (vs VerticaSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsNetezzaSource

func (vs VerticaSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsOracleSource

func (vs VerticaSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsPaypalSource

func (vs VerticaSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsPhoenixSource

func (vs VerticaSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsPrestoSource

func (vs VerticaSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsQuickBooksSource

func (vs VerticaSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsRelationalSource

func (vs VerticaSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsResponsysSource

func (vs VerticaSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsSQLDWSource

func (vs VerticaSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsSQLSource

func (vs VerticaSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsSalesforceMarketingCloudSource

func (vs VerticaSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsSalesforceSource

func (vs VerticaSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsSapCloudForCustomerSource

func (vs VerticaSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsSapEccSource

func (vs VerticaSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsServiceNowSource

func (vs VerticaSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsShopifySource

func (vs VerticaSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsSparkSource

func (vs VerticaSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsSquareSource

func (vs VerticaSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsVerticaSource

func (vs VerticaSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsWebSource

func (vs VerticaSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsXeroSource

func (vs VerticaSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) AsZohoSource

func (vs VerticaSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for VerticaSource.

func (VerticaSource) MarshalJSON

func (vs VerticaSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for VerticaSource.

type VerticaTableDataset

type VerticaTableDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

VerticaTableDataset vertica dataset.

func (VerticaTableDataset) AsAmazonMWSObjectDataset

func (vtd VerticaTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsAmazonS3Dataset

func (vtd VerticaTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsAzureBlobDataset

func (vtd VerticaTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsAzureDataLakeStoreDataset

func (vtd VerticaTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsAzureMySQLTableDataset

func (vtd VerticaTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsAzurePostgreSQLTableDataset

func (vtd VerticaTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsAzureSQLDWTableDataset

func (vtd VerticaTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsAzureSQLTableDataset

func (vtd VerticaTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsAzureSearchIndexDataset

func (vtd VerticaTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsAzureTableDataset

func (vtd VerticaTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsBasicDataset

func (vtd VerticaTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsCassandraTableDataset

func (vtd VerticaTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsConcurObjectDataset

func (vtd VerticaTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsCouchbaseTableDataset

func (vtd VerticaTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsCustomDataset

func (vtd VerticaTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsDataset

func (vtd VerticaTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsDocumentDbCollectionDataset

func (vtd VerticaTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsDrillTableDataset

func (vtd VerticaTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsDynamicsEntityDataset

func (vtd VerticaTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsEloquaObjectDataset

func (vtd VerticaTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsFileShareDataset

func (vtd VerticaTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsGoogleBigQueryObjectDataset

func (vtd VerticaTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsGreenplumTableDataset

func (vtd VerticaTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsHBaseObjectDataset

func (vtd VerticaTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsHTTPDataset

func (vtd VerticaTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsHiveObjectDataset

func (vtd VerticaTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsHubspotObjectDataset

func (vtd VerticaTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsImpalaObjectDataset

func (vtd VerticaTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsJiraObjectDataset

func (vtd VerticaTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsMagentoObjectDataset

func (vtd VerticaTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsMariaDBTableDataset

func (vtd VerticaTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsMarketoObjectDataset

func (vtd VerticaTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsMongoDbCollectionDataset

func (vtd VerticaTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsNetezzaTableDataset

func (vtd VerticaTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsODataResourceDataset

func (vtd VerticaTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsOracleTableDataset

func (vtd VerticaTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsPaypalObjectDataset

func (vtd VerticaTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsPhoenixObjectDataset

func (vtd VerticaTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsPrestoObjectDataset

func (vtd VerticaTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsQuickBooksObjectDataset

func (vtd VerticaTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsRelationalTableDataset

func (vtd VerticaTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsResponsysObjectDataset

func (vtd VerticaTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsSQLServerTableDataset

func (vtd VerticaTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsSalesforceMarketingCloudObjectDataset

func (vtd VerticaTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsSalesforceObjectDataset

func (vtd VerticaTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsSapCloudForCustomerResourceDataset

func (vtd VerticaTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsSapEccResourceDataset

func (vtd VerticaTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsServiceNowObjectDataset

func (vtd VerticaTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsShopifyObjectDataset

func (vtd VerticaTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsSparkObjectDataset

func (vtd VerticaTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsSquareObjectDataset

func (vtd VerticaTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsVerticaTableDataset

func (vtd VerticaTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsWebTableDataset

func (vtd VerticaTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsXeroObjectDataset

func (vtd VerticaTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) AsZohoObjectDataset

func (vtd VerticaTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for VerticaTableDataset.

func (VerticaTableDataset) MarshalJSON

func (vtd VerticaTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for VerticaTableDataset.

type WaitActivity

type WaitActivity struct {
	// WaitActivityTypeProperties - Wait activity properties.
	*WaitActivityTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

WaitActivity this activity suspends pipeline execution for the specified interval.

func (WaitActivity) AsActivity

func (wa WaitActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsAzureMLBatchExecutionActivity

func (wa WaitActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsAzureMLUpdateResourceActivity

func (wa WaitActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsBasicActivity

func (wa WaitActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsBasicControlActivity

func (wa WaitActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsBasicExecutionActivity

func (wa WaitActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsControlActivity

func (wa WaitActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsCopyActivity

func (wa WaitActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsCustomActivity

func (wa WaitActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsDataLakeAnalyticsUSQLActivity

func (wa WaitActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsDatabricksNotebookActivity

func (wa WaitActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsExecutePipelineActivity

func (wa WaitActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsExecuteSSISPackageActivity

func (wa WaitActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsExecutionActivity

func (wa WaitActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsFilterActivity

func (wa WaitActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsForEachActivity

func (wa WaitActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsGetMetadataActivity

func (wa WaitActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsHDInsightHiveActivity

func (wa WaitActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsHDInsightMapReduceActivity

func (wa WaitActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsHDInsightPigActivity

func (wa WaitActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsHDInsightSparkActivity

func (wa WaitActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsHDInsightStreamingActivity

func (wa WaitActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsIfConditionActivity

func (wa WaitActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsLookupActivity

func (wa WaitActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsSQLServerStoredProcedureActivity

func (wa WaitActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsUntilActivity

func (wa WaitActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsWaitActivity

func (wa WaitActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) AsWebActivity

func (wa WaitActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for WaitActivity.

func (WaitActivity) MarshalJSON

func (wa WaitActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for WaitActivity.

func (*WaitActivity) UnmarshalJSON

func (wa *WaitActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for WaitActivity struct.

type WaitActivityTypeProperties

type WaitActivityTypeProperties struct {
	// WaitTimeInSeconds - Duration in seconds.
	WaitTimeInSeconds *int32 `json:"waitTimeInSeconds,omitempty"`
}

WaitActivityTypeProperties wait activity properties.

type WebActivity

type WebActivity struct {
	// WebActivityTypeProperties - Web activity properties.
	*WebActivityTypeProperties `json:"typeProperties,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Policy - Activity policy.
	Policy *ActivityPolicy `json:"policy,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Name - Activity name.
	Name *string `json:"name,omitempty"`
	// Description - Activity description.
	Description *string `json:"description,omitempty"`
	// DependsOn - Activity depends on condition.
	DependsOn *[]ActivityDependency `json:"dependsOn,omitempty"`
	// Type - Possible values include: 'TypeActivity', 'TypeDatabricksNotebook', 'TypeDataLakeAnalyticsUSQL', 'TypeAzureMLUpdateResource', 'TypeAzureMLBatchExecution', 'TypeGetMetadata', 'TypeWebActivity', 'TypeLookup', 'TypeSQLServerStoredProcedure', 'TypeCustom', 'TypeExecuteSSISPackage', 'TypeHDInsightSpark', 'TypeHDInsightStreaming', 'TypeHDInsightMapReduce', 'TypeHDInsightPig', 'TypeHDInsightHive', 'TypeCopy', 'TypeExecution', 'TypeFilter', 'TypeUntil', 'TypeWait', 'TypeForEach', 'TypeIfCondition', 'TypeExecutePipeline', 'TypeContainer'
	Type TypeBasicActivity `json:"type,omitempty"`
}

WebActivity web activity.

func (WebActivity) AsActivity

func (wa WebActivity) AsActivity() (*Activity, bool)

AsActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsAzureMLBatchExecutionActivity

func (wa WebActivity) AsAzureMLBatchExecutionActivity() (*AzureMLBatchExecutionActivity, bool)

AsAzureMLBatchExecutionActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsAzureMLUpdateResourceActivity

func (wa WebActivity) AsAzureMLUpdateResourceActivity() (*AzureMLUpdateResourceActivity, bool)

AsAzureMLUpdateResourceActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsBasicActivity

func (wa WebActivity) AsBasicActivity() (BasicActivity, bool)

AsBasicActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsBasicControlActivity

func (wa WebActivity) AsBasicControlActivity() (BasicControlActivity, bool)

AsBasicControlActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsBasicExecutionActivity

func (wa WebActivity) AsBasicExecutionActivity() (BasicExecutionActivity, bool)

AsBasicExecutionActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsControlActivity

func (wa WebActivity) AsControlActivity() (*ControlActivity, bool)

AsControlActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsCopyActivity

func (wa WebActivity) AsCopyActivity() (*CopyActivity, bool)

AsCopyActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsCustomActivity

func (wa WebActivity) AsCustomActivity() (*CustomActivity, bool)

AsCustomActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsDataLakeAnalyticsUSQLActivity

func (wa WebActivity) AsDataLakeAnalyticsUSQLActivity() (*DataLakeAnalyticsUSQLActivity, bool)

AsDataLakeAnalyticsUSQLActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsDatabricksNotebookActivity

func (wa WebActivity) AsDatabricksNotebookActivity() (*DatabricksNotebookActivity, bool)

AsDatabricksNotebookActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsExecutePipelineActivity

func (wa WebActivity) AsExecutePipelineActivity() (*ExecutePipelineActivity, bool)

AsExecutePipelineActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsExecuteSSISPackageActivity

func (wa WebActivity) AsExecuteSSISPackageActivity() (*ExecuteSSISPackageActivity, bool)

AsExecuteSSISPackageActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsExecutionActivity

func (wa WebActivity) AsExecutionActivity() (*ExecutionActivity, bool)

AsExecutionActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsFilterActivity

func (wa WebActivity) AsFilterActivity() (*FilterActivity, bool)

AsFilterActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsForEachActivity

func (wa WebActivity) AsForEachActivity() (*ForEachActivity, bool)

AsForEachActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsGetMetadataActivity

func (wa WebActivity) AsGetMetadataActivity() (*GetMetadataActivity, bool)

AsGetMetadataActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsHDInsightHiveActivity

func (wa WebActivity) AsHDInsightHiveActivity() (*HDInsightHiveActivity, bool)

AsHDInsightHiveActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsHDInsightMapReduceActivity

func (wa WebActivity) AsHDInsightMapReduceActivity() (*HDInsightMapReduceActivity, bool)

AsHDInsightMapReduceActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsHDInsightPigActivity

func (wa WebActivity) AsHDInsightPigActivity() (*HDInsightPigActivity, bool)

AsHDInsightPigActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsHDInsightSparkActivity

func (wa WebActivity) AsHDInsightSparkActivity() (*HDInsightSparkActivity, bool)

AsHDInsightSparkActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsHDInsightStreamingActivity

func (wa WebActivity) AsHDInsightStreamingActivity() (*HDInsightStreamingActivity, bool)

AsHDInsightStreamingActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsIfConditionActivity

func (wa WebActivity) AsIfConditionActivity() (*IfConditionActivity, bool)

AsIfConditionActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsLookupActivity

func (wa WebActivity) AsLookupActivity() (*LookupActivity, bool)

AsLookupActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsSQLServerStoredProcedureActivity

func (wa WebActivity) AsSQLServerStoredProcedureActivity() (*SQLServerStoredProcedureActivity, bool)

AsSQLServerStoredProcedureActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsUntilActivity

func (wa WebActivity) AsUntilActivity() (*UntilActivity, bool)

AsUntilActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsWaitActivity

func (wa WebActivity) AsWaitActivity() (*WaitActivity, bool)

AsWaitActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) AsWebActivity

func (wa WebActivity) AsWebActivity() (*WebActivity, bool)

AsWebActivity is the BasicActivity implementation for WebActivity.

func (WebActivity) MarshalJSON

func (wa WebActivity) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for WebActivity.

func (*WebActivity) UnmarshalJSON

func (wa *WebActivity) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for WebActivity struct.

type WebActivityAuthentication

type WebActivityAuthentication struct {
	// Type - Web activity authentication (Basic/ClientCertificate/MSI)
	Type *string `json:"type,omitempty"`
	// Pfx - Base64-encoded contents of a PFX file.
	Pfx *SecureString `json:"pfx,omitempty"`
	// Username - Web activity authentication user name for basic authentication.
	Username *string `json:"username,omitempty"`
	// Password - Password for the PFX file or basic authentication.
	Password *SecureString `json:"password,omitempty"`
	// Resource - Resource for which Azure Auth token will be requested when using MSI Authentication.
	Resource *string `json:"resource,omitempty"`
}

WebActivityAuthentication web activity authentication properties.

type WebActivityMethod

type WebActivityMethod string

WebActivityMethod enumerates the values for web activity method.

const (
	// DELETE ...
	DELETE WebActivityMethod = "DELETE"
	// GET ...
	GET WebActivityMethod = "GET"
	// POST ...
	POST WebActivityMethod = "POST"
	// PUT ...
	PUT WebActivityMethod = "PUT"
)

func PossibleWebActivityMethodValues

func PossibleWebActivityMethodValues() []WebActivityMethod

PossibleWebActivityMethodValues returns an array of possible values for the WebActivityMethod const type.

type WebActivityTypeProperties

type WebActivityTypeProperties struct {
	// Method - Rest API method for target endpoint. Possible values include: 'GET', 'POST', 'PUT', 'DELETE'
	Method WebActivityMethod `json:"method,omitempty"`
	// URL - Web activity target endpoint and path. Type: string (or Expression with resultType string).
	URL interface{} `json:"url,omitempty"`
	// Headers - Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
	Headers interface{} `json:"headers,omitempty"`
	// Body - Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
	Body interface{} `json:"body,omitempty"`
	// Authentication - Authentication method used for calling the endpoint.
	Authentication *WebActivityAuthentication `json:"authentication,omitempty"`
	// Datasets - List of datasets passed to web endpoint.
	Datasets *[]DatasetReference `json:"datasets,omitempty"`
	// LinkedServices - List of linked services passed to web endpoint.
	LinkedServices *[]LinkedServiceReference `json:"linkedServices,omitempty"`
}

WebActivityTypeProperties web activity type properties.

type WebAnonymousAuthentication

type WebAnonymousAuthentication struct {
	// URL - The URL of the web service endpoint, e.g. http://www.microsoft.com . Type: string (or Expression with resultType string).
	URL interface{} `json:"url,omitempty"`
	// AuthenticationType - Possible values include: 'AuthenticationTypeWebLinkedServiceTypeProperties', 'AuthenticationTypeClientCertificate', 'AuthenticationTypeBasic', 'AuthenticationTypeAnonymous'
	AuthenticationType AuthenticationType `json:"authenticationType,omitempty"`
}

WebAnonymousAuthentication a WebLinkedService that uses anonymous authentication to communicate with an HTTP endpoint.

func (WebAnonymousAuthentication) AsBasicWebLinkedServiceTypeProperties

func (waa WebAnonymousAuthentication) AsBasicWebLinkedServiceTypeProperties() (BasicWebLinkedServiceTypeProperties, bool)

AsBasicWebLinkedServiceTypeProperties is the BasicWebLinkedServiceTypeProperties implementation for WebAnonymousAuthentication.

func (WebAnonymousAuthentication) AsWebAnonymousAuthentication

func (waa WebAnonymousAuthentication) AsWebAnonymousAuthentication() (*WebAnonymousAuthentication, bool)

AsWebAnonymousAuthentication is the BasicWebLinkedServiceTypeProperties implementation for WebAnonymousAuthentication.

func (WebAnonymousAuthentication) AsWebBasicAuthentication

func (waa WebAnonymousAuthentication) AsWebBasicAuthentication() (*WebBasicAuthentication, bool)

AsWebBasicAuthentication is the BasicWebLinkedServiceTypeProperties implementation for WebAnonymousAuthentication.

func (WebAnonymousAuthentication) AsWebClientCertificateAuthentication

func (waa WebAnonymousAuthentication) AsWebClientCertificateAuthentication() (*WebClientCertificateAuthentication, bool)

AsWebClientCertificateAuthentication is the BasicWebLinkedServiceTypeProperties implementation for WebAnonymousAuthentication.

func (WebAnonymousAuthentication) AsWebLinkedServiceTypeProperties

func (waa WebAnonymousAuthentication) AsWebLinkedServiceTypeProperties() (*WebLinkedServiceTypeProperties, bool)

AsWebLinkedServiceTypeProperties is the BasicWebLinkedServiceTypeProperties implementation for WebAnonymousAuthentication.

func (WebAnonymousAuthentication) MarshalJSON

func (waa WebAnonymousAuthentication) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for WebAnonymousAuthentication.

type WebBasicAuthentication

type WebBasicAuthentication struct {
	// Username - User name for Basic authentication. Type: string (or Expression with resultType string).
	Username interface{} `json:"username,omitempty"`
	// Password - The password for Basic authentication.
	Password BasicSecretBase `json:"password,omitempty"`
	// URL - The URL of the web service endpoint, e.g. http://www.microsoft.com . Type: string (or Expression with resultType string).
	URL interface{} `json:"url,omitempty"`
	// AuthenticationType - Possible values include: 'AuthenticationTypeWebLinkedServiceTypeProperties', 'AuthenticationTypeClientCertificate', 'AuthenticationTypeBasic', 'AuthenticationTypeAnonymous'
	AuthenticationType AuthenticationType `json:"authenticationType,omitempty"`
}

WebBasicAuthentication a WebLinkedService that uses basic authentication to communicate with an HTTP endpoint.

func (WebBasicAuthentication) AsBasicWebLinkedServiceTypeProperties

func (wba WebBasicAuthentication) AsBasicWebLinkedServiceTypeProperties() (BasicWebLinkedServiceTypeProperties, bool)

AsBasicWebLinkedServiceTypeProperties is the BasicWebLinkedServiceTypeProperties implementation for WebBasicAuthentication.

func (WebBasicAuthentication) AsWebAnonymousAuthentication

func (wba WebBasicAuthentication) AsWebAnonymousAuthentication() (*WebAnonymousAuthentication, bool)

AsWebAnonymousAuthentication is the BasicWebLinkedServiceTypeProperties implementation for WebBasicAuthentication.

func (WebBasicAuthentication) AsWebBasicAuthentication

func (wba WebBasicAuthentication) AsWebBasicAuthentication() (*WebBasicAuthentication, bool)

AsWebBasicAuthentication is the BasicWebLinkedServiceTypeProperties implementation for WebBasicAuthentication.

func (WebBasicAuthentication) AsWebClientCertificateAuthentication

func (wba WebBasicAuthentication) AsWebClientCertificateAuthentication() (*WebClientCertificateAuthentication, bool)

AsWebClientCertificateAuthentication is the BasicWebLinkedServiceTypeProperties implementation for WebBasicAuthentication.

func (WebBasicAuthentication) AsWebLinkedServiceTypeProperties

func (wba WebBasicAuthentication) AsWebLinkedServiceTypeProperties() (*WebLinkedServiceTypeProperties, bool)

AsWebLinkedServiceTypeProperties is the BasicWebLinkedServiceTypeProperties implementation for WebBasicAuthentication.

func (WebBasicAuthentication) MarshalJSON

func (wba WebBasicAuthentication) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for WebBasicAuthentication.

func (*WebBasicAuthentication) UnmarshalJSON

func (wba *WebBasicAuthentication) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for WebBasicAuthentication struct.

type WebClientCertificateAuthentication

type WebClientCertificateAuthentication struct {
	// Pfx - Base64-encoded contents of a PFX file.
	Pfx BasicSecretBase `json:"pfx,omitempty"`
	// Password - Password for the PFX file.
	Password BasicSecretBase `json:"password,omitempty"`
	// URL - The URL of the web service endpoint, e.g. http://www.microsoft.com . Type: string (or Expression with resultType string).
	URL interface{} `json:"url,omitempty"`
	// AuthenticationType - Possible values include: 'AuthenticationTypeWebLinkedServiceTypeProperties', 'AuthenticationTypeClientCertificate', 'AuthenticationTypeBasic', 'AuthenticationTypeAnonymous'
	AuthenticationType AuthenticationType `json:"authenticationType,omitempty"`
}

WebClientCertificateAuthentication a WebLinkedService that uses client certificate based authentication to communicate with an HTTP endpoint. This scheme follows mutual authentication; the server must also provide valid credentials to the client.

func (WebClientCertificateAuthentication) AsBasicWebLinkedServiceTypeProperties

func (wcca WebClientCertificateAuthentication) AsBasicWebLinkedServiceTypeProperties() (BasicWebLinkedServiceTypeProperties, bool)

AsBasicWebLinkedServiceTypeProperties is the BasicWebLinkedServiceTypeProperties implementation for WebClientCertificateAuthentication.

func (WebClientCertificateAuthentication) AsWebAnonymousAuthentication

func (wcca WebClientCertificateAuthentication) AsWebAnonymousAuthentication() (*WebAnonymousAuthentication, bool)

AsWebAnonymousAuthentication is the BasicWebLinkedServiceTypeProperties implementation for WebClientCertificateAuthentication.

func (WebClientCertificateAuthentication) AsWebBasicAuthentication

func (wcca WebClientCertificateAuthentication) AsWebBasicAuthentication() (*WebBasicAuthentication, bool)

AsWebBasicAuthentication is the BasicWebLinkedServiceTypeProperties implementation for WebClientCertificateAuthentication.

func (WebClientCertificateAuthentication) AsWebClientCertificateAuthentication

func (wcca WebClientCertificateAuthentication) AsWebClientCertificateAuthentication() (*WebClientCertificateAuthentication, bool)

AsWebClientCertificateAuthentication is the BasicWebLinkedServiceTypeProperties implementation for WebClientCertificateAuthentication.

func (WebClientCertificateAuthentication) AsWebLinkedServiceTypeProperties

func (wcca WebClientCertificateAuthentication) AsWebLinkedServiceTypeProperties() (*WebLinkedServiceTypeProperties, bool)

AsWebLinkedServiceTypeProperties is the BasicWebLinkedServiceTypeProperties implementation for WebClientCertificateAuthentication.

func (WebClientCertificateAuthentication) MarshalJSON

func (wcca WebClientCertificateAuthentication) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for WebClientCertificateAuthentication.

func (*WebClientCertificateAuthentication) UnmarshalJSON

func (wcca *WebClientCertificateAuthentication) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for WebClientCertificateAuthentication struct.

type WebLinkedService

type WebLinkedService struct {
	// TypeProperties - Web linked service properties.
	TypeProperties BasicWebLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

WebLinkedService web linked service.

func (WebLinkedService) AsAmazonMWSLinkedService

func (wls WebLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAmazonRedshiftLinkedService

func (wls WebLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAmazonS3LinkedService

func (wls WebLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAzureBatchLinkedService

func (wls WebLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (wls WebLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAzureDataLakeStoreLinkedService

func (wls WebLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAzureDatabricksLinkedService

func (wls WebLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAzureKeyVaultLinkedService

func (wls WebLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAzureMLLinkedService

func (wls WebLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAzureMySQLLinkedService

func (wls WebLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAzurePostgreSQLLinkedService

func (wls WebLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAzureSQLDWLinkedService

func (wls WebLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAzureSQLDatabaseLinkedService

func (wls WebLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAzureSearchLinkedService

func (wls WebLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsAzureStorageLinkedService

func (wls WebLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsBasicLinkedService

func (wls WebLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsCassandraLinkedService

func (wls WebLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsConcurLinkedService

func (wls WebLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsCosmosDbLinkedService

func (wls WebLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsCouchbaseLinkedService

func (wls WebLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsCustomDataSourceLinkedService

func (wls WebLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsDb2LinkedService

func (wls WebLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsDrillLinkedService

func (wls WebLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsDynamicsLinkedService

func (wls WebLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsEloquaLinkedService

func (wls WebLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsFileServerLinkedService

func (wls WebLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsFtpServerLinkedService

func (wls WebLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsGoogleBigQueryLinkedService

func (wls WebLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsGreenplumLinkedService

func (wls WebLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsHBaseLinkedService

func (wls WebLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsHDInsightLinkedService

func (wls WebLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsHDInsightOnDemandLinkedService

func (wls WebLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsHTTPLinkedService

func (wls WebLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsHdfsLinkedService

func (wls WebLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsHiveLinkedService

func (wls WebLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsHubspotLinkedService

func (wls WebLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsImpalaLinkedService

func (wls WebLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsJiraLinkedService

func (wls WebLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsLinkedService

func (wls WebLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsMagentoLinkedService

func (wls WebLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsMariaDBLinkedService

func (wls WebLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsMarketoLinkedService

func (wls WebLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsMongoDbLinkedService

func (wls WebLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsMySQLLinkedService

func (wls WebLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsNetezzaLinkedService

func (wls WebLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsODataLinkedService

func (wls WebLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsOdbcLinkedService

func (wls WebLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsOracleLinkedService

func (wls WebLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsPaypalLinkedService

func (wls WebLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsPhoenixLinkedService

func (wls WebLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsPostgreSQLLinkedService

func (wls WebLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsPrestoLinkedService

func (wls WebLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsQuickBooksLinkedService

func (wls WebLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsResponsysLinkedService

func (wls WebLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsSQLServerLinkedService

func (wls WebLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsSalesforceLinkedService

func (wls WebLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsSalesforceMarketingCloudLinkedService

func (wls WebLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsSapBWLinkedService

func (wls WebLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsSapCloudForCustomerLinkedService

func (wls WebLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsSapEccLinkedService

func (wls WebLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsSapHanaLinkedService

func (wls WebLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsServiceNowLinkedService

func (wls WebLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsSftpServerLinkedService

func (wls WebLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsShopifyLinkedService

func (wls WebLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsSparkLinkedService

func (wls WebLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsSquareLinkedService

func (wls WebLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsSybaseLinkedService

func (wls WebLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsTeradataLinkedService

func (wls WebLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsVerticaLinkedService

func (wls WebLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsWebLinkedService

func (wls WebLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsXeroLinkedService

func (wls WebLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) AsZohoLinkedService

func (wls WebLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for WebLinkedService.

func (WebLinkedService) MarshalJSON

func (wls WebLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for WebLinkedService.

func (*WebLinkedService) UnmarshalJSON

func (wls *WebLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for WebLinkedService struct.

type WebLinkedServiceTypeProperties

type WebLinkedServiceTypeProperties struct {
	// URL - The URL of the web service endpoint, e.g. http://www.microsoft.com . Type: string (or Expression with resultType string).
	URL interface{} `json:"url,omitempty"`
	// AuthenticationType - Possible values include: 'AuthenticationTypeWebLinkedServiceTypeProperties', 'AuthenticationTypeClientCertificate', 'AuthenticationTypeBasic', 'AuthenticationTypeAnonymous'
	AuthenticationType AuthenticationType `json:"authenticationType,omitempty"`
}

WebLinkedServiceTypeProperties base definition of WebLinkedServiceTypeProperties, this typeProperties is polymorphic based on authenticationType, so not flattened in SDK models.

func (WebLinkedServiceTypeProperties) AsBasicWebLinkedServiceTypeProperties

func (wlstp WebLinkedServiceTypeProperties) AsBasicWebLinkedServiceTypeProperties() (BasicWebLinkedServiceTypeProperties, bool)

AsBasicWebLinkedServiceTypeProperties is the BasicWebLinkedServiceTypeProperties implementation for WebLinkedServiceTypeProperties.

func (WebLinkedServiceTypeProperties) AsWebAnonymousAuthentication

func (wlstp WebLinkedServiceTypeProperties) AsWebAnonymousAuthentication() (*WebAnonymousAuthentication, bool)

AsWebAnonymousAuthentication is the BasicWebLinkedServiceTypeProperties implementation for WebLinkedServiceTypeProperties.

func (WebLinkedServiceTypeProperties) AsWebBasicAuthentication

func (wlstp WebLinkedServiceTypeProperties) AsWebBasicAuthentication() (*WebBasicAuthentication, bool)

AsWebBasicAuthentication is the BasicWebLinkedServiceTypeProperties implementation for WebLinkedServiceTypeProperties.

func (WebLinkedServiceTypeProperties) AsWebClientCertificateAuthentication

func (wlstp WebLinkedServiceTypeProperties) AsWebClientCertificateAuthentication() (*WebClientCertificateAuthentication, bool)

AsWebClientCertificateAuthentication is the BasicWebLinkedServiceTypeProperties implementation for WebLinkedServiceTypeProperties.

func (WebLinkedServiceTypeProperties) AsWebLinkedServiceTypeProperties

func (wlstp WebLinkedServiceTypeProperties) AsWebLinkedServiceTypeProperties() (*WebLinkedServiceTypeProperties, bool)

AsWebLinkedServiceTypeProperties is the BasicWebLinkedServiceTypeProperties implementation for WebLinkedServiceTypeProperties.

func (WebLinkedServiceTypeProperties) MarshalJSON

func (wlstp WebLinkedServiceTypeProperties) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for WebLinkedServiceTypeProperties.

type WebSource

type WebSource struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

WebSource a copy activity source for web page table.

func (WebSource) AsAmazonMWSSource

func (ws WebSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsAmazonRedshiftSource

func (ws WebSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsAzureDataLakeStoreSource

func (ws WebSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsAzureMySQLSource

func (ws WebSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsAzurePostgreSQLSource

func (ws WebSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsAzureTableSource

func (ws WebSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsBasicCopySource

func (ws WebSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for WebSource.

func (WebSource) AsBlobSource

func (ws WebSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsCassandraSource

func (ws WebSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsConcurSource

func (ws WebSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsCopySource

func (ws WebSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for WebSource.

func (WebSource) AsCouchbaseSource

func (ws WebSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsDocumentDbCollectionSource

func (ws WebSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsDrillSource

func (ws WebSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsDynamicsSource

func (ws WebSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsEloquaSource

func (ws WebSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsFileSystemSource

func (ws WebSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsGoogleBigQuerySource

func (ws WebSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for WebSource.

func (WebSource) AsGreenplumSource

func (ws WebSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsHBaseSource

func (ws WebSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsHTTPSource

func (ws WebSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsHdfsSource

func (ws WebSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsHiveSource

func (ws WebSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsHubspotSource

func (ws WebSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsImpalaSource

func (ws WebSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsJiraSource

func (ws WebSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsMagentoSource

func (ws WebSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsMariaDBSource

func (ws WebSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsMarketoSource

func (ws WebSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsMongoDbSource

func (ws WebSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsNetezzaSource

func (ws WebSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsOracleSource

func (ws WebSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsPaypalSource

func (ws WebSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsPhoenixSource

func (ws WebSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsPrestoSource

func (ws WebSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsQuickBooksSource

func (ws WebSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsRelationalSource

func (ws WebSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsResponsysSource

func (ws WebSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsSQLDWSource

func (ws WebSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsSQLSource

func (ws WebSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsSalesforceMarketingCloudSource

func (ws WebSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsSalesforceSource

func (ws WebSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsSapCloudForCustomerSource

func (ws WebSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsSapEccSource

func (ws WebSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsServiceNowSource

func (ws WebSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsShopifySource

func (ws WebSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for WebSource.

func (WebSource) AsSparkSource

func (ws WebSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsSquareSource

func (ws WebSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsVerticaSource

func (ws WebSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsWebSource

func (ws WebSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsXeroSource

func (ws WebSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for WebSource.

func (WebSource) AsZohoSource

func (ws WebSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for WebSource.

func (WebSource) MarshalJSON

func (ws WebSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for WebSource.

type WebTableDataset

type WebTableDataset struct {
	// WebTableDatasetTypeProperties - Web table dataset properties.
	*WebTableDatasetTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

WebTableDataset the dataset points to a HTML table in the web page.

func (WebTableDataset) AsAmazonMWSObjectDataset

func (wtd WebTableDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsAmazonS3Dataset

func (wtd WebTableDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsAzureBlobDataset

func (wtd WebTableDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsAzureDataLakeStoreDataset

func (wtd WebTableDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsAzureMySQLTableDataset

func (wtd WebTableDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsAzurePostgreSQLTableDataset

func (wtd WebTableDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsAzureSQLDWTableDataset

func (wtd WebTableDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsAzureSQLTableDataset

func (wtd WebTableDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsAzureSearchIndexDataset

func (wtd WebTableDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsAzureTableDataset

func (wtd WebTableDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsBasicDataset

func (wtd WebTableDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsCassandraTableDataset

func (wtd WebTableDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsConcurObjectDataset

func (wtd WebTableDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsCouchbaseTableDataset

func (wtd WebTableDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsCustomDataset

func (wtd WebTableDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsDataset

func (wtd WebTableDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsDocumentDbCollectionDataset

func (wtd WebTableDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsDrillTableDataset

func (wtd WebTableDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsDynamicsEntityDataset

func (wtd WebTableDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsEloquaObjectDataset

func (wtd WebTableDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsFileShareDataset

func (wtd WebTableDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsGoogleBigQueryObjectDataset

func (wtd WebTableDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsGreenplumTableDataset

func (wtd WebTableDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsHBaseObjectDataset

func (wtd WebTableDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsHTTPDataset

func (wtd WebTableDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsHiveObjectDataset

func (wtd WebTableDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsHubspotObjectDataset

func (wtd WebTableDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsImpalaObjectDataset

func (wtd WebTableDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsJiraObjectDataset

func (wtd WebTableDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsMagentoObjectDataset

func (wtd WebTableDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsMariaDBTableDataset

func (wtd WebTableDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsMarketoObjectDataset

func (wtd WebTableDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsMongoDbCollectionDataset

func (wtd WebTableDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsNetezzaTableDataset

func (wtd WebTableDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsODataResourceDataset

func (wtd WebTableDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsOracleTableDataset

func (wtd WebTableDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsPaypalObjectDataset

func (wtd WebTableDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsPhoenixObjectDataset

func (wtd WebTableDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsPrestoObjectDataset

func (wtd WebTableDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsQuickBooksObjectDataset

func (wtd WebTableDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsRelationalTableDataset

func (wtd WebTableDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsResponsysObjectDataset

func (wtd WebTableDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsSQLServerTableDataset

func (wtd WebTableDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsSalesforceMarketingCloudObjectDataset

func (wtd WebTableDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsSalesforceObjectDataset

func (wtd WebTableDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsSapCloudForCustomerResourceDataset

func (wtd WebTableDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsSapEccResourceDataset

func (wtd WebTableDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsServiceNowObjectDataset

func (wtd WebTableDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsShopifyObjectDataset

func (wtd WebTableDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsSparkObjectDataset

func (wtd WebTableDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsSquareObjectDataset

func (wtd WebTableDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsVerticaTableDataset

func (wtd WebTableDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsWebTableDataset

func (wtd WebTableDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsXeroObjectDataset

func (wtd WebTableDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) AsZohoObjectDataset

func (wtd WebTableDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for WebTableDataset.

func (WebTableDataset) MarshalJSON

func (wtd WebTableDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for WebTableDataset.

func (*WebTableDataset) UnmarshalJSON

func (wtd *WebTableDataset) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for WebTableDataset struct.

type WebTableDatasetTypeProperties

type WebTableDatasetTypeProperties struct {
	// Index - The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
	Index interface{} `json:"index,omitempty"`
	// Path - The relative URL to the web page from the linked service URL. Type: string (or Expression with resultType string).
	Path interface{} `json:"path,omitempty"`
}

WebTableDatasetTypeProperties web table dataset properties.

type XeroLinkedService

type XeroLinkedService struct {
	// XeroLinkedServiceTypeProperties - Xero Serivce linked service properties.
	*XeroLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

XeroLinkedService xero Serivce linked service.

func (XeroLinkedService) AsAmazonMWSLinkedService

func (xls XeroLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAmazonRedshiftLinkedService

func (xls XeroLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAmazonS3LinkedService

func (xls XeroLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAzureBatchLinkedService

func (xls XeroLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (xls XeroLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAzureDataLakeStoreLinkedService

func (xls XeroLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAzureDatabricksLinkedService

func (xls XeroLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAzureKeyVaultLinkedService

func (xls XeroLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAzureMLLinkedService

func (xls XeroLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAzureMySQLLinkedService

func (xls XeroLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAzurePostgreSQLLinkedService

func (xls XeroLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAzureSQLDWLinkedService

func (xls XeroLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAzureSQLDatabaseLinkedService

func (xls XeroLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAzureSearchLinkedService

func (xls XeroLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsAzureStorageLinkedService

func (xls XeroLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsBasicLinkedService

func (xls XeroLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsCassandraLinkedService

func (xls XeroLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsConcurLinkedService

func (xls XeroLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsCosmosDbLinkedService

func (xls XeroLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsCouchbaseLinkedService

func (xls XeroLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsCustomDataSourceLinkedService

func (xls XeroLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsDb2LinkedService

func (xls XeroLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsDrillLinkedService

func (xls XeroLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsDynamicsLinkedService

func (xls XeroLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsEloquaLinkedService

func (xls XeroLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsFileServerLinkedService

func (xls XeroLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsFtpServerLinkedService

func (xls XeroLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsGoogleBigQueryLinkedService

func (xls XeroLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsGreenplumLinkedService

func (xls XeroLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsHBaseLinkedService

func (xls XeroLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsHDInsightLinkedService

func (xls XeroLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsHDInsightOnDemandLinkedService

func (xls XeroLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsHTTPLinkedService

func (xls XeroLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsHdfsLinkedService

func (xls XeroLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsHiveLinkedService

func (xls XeroLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsHubspotLinkedService

func (xls XeroLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsImpalaLinkedService

func (xls XeroLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsJiraLinkedService

func (xls XeroLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsLinkedService

func (xls XeroLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsMagentoLinkedService

func (xls XeroLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsMariaDBLinkedService

func (xls XeroLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsMarketoLinkedService

func (xls XeroLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsMongoDbLinkedService

func (xls XeroLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsMySQLLinkedService

func (xls XeroLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsNetezzaLinkedService

func (xls XeroLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsODataLinkedService

func (xls XeroLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsOdbcLinkedService

func (xls XeroLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsOracleLinkedService

func (xls XeroLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsPaypalLinkedService

func (xls XeroLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsPhoenixLinkedService

func (xls XeroLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsPostgreSQLLinkedService

func (xls XeroLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsPrestoLinkedService

func (xls XeroLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsQuickBooksLinkedService

func (xls XeroLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsResponsysLinkedService

func (xls XeroLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsSQLServerLinkedService

func (xls XeroLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsSalesforceLinkedService

func (xls XeroLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsSalesforceMarketingCloudLinkedService

func (xls XeroLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsSapBWLinkedService

func (xls XeroLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsSapCloudForCustomerLinkedService

func (xls XeroLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsSapEccLinkedService

func (xls XeroLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsSapHanaLinkedService

func (xls XeroLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsServiceNowLinkedService

func (xls XeroLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsSftpServerLinkedService

func (xls XeroLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsShopifyLinkedService

func (xls XeroLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsSparkLinkedService

func (xls XeroLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsSquareLinkedService

func (xls XeroLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsSybaseLinkedService

func (xls XeroLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsTeradataLinkedService

func (xls XeroLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsVerticaLinkedService

func (xls XeroLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsWebLinkedService

func (xls XeroLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsXeroLinkedService

func (xls XeroLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) AsZohoLinkedService

func (xls XeroLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for XeroLinkedService.

func (XeroLinkedService) MarshalJSON

func (xls XeroLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for XeroLinkedService.

func (*XeroLinkedService) UnmarshalJSON

func (xls *XeroLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for XeroLinkedService struct.

type XeroLinkedServiceTypeProperties

type XeroLinkedServiceTypeProperties struct {
	// Host - The endpoint of the Xero server. (i.e. api.xero.com)
	Host interface{} `json:"host,omitempty"`
	// ConsumerKey - The consumer key associated with the Xero application.
	ConsumerKey BasicSecretBase `json:"consumerKey,omitempty"`
	// PrivateKey - The private key from the .pem file that was generated for your Xero private application. You must include all the text from the .pem file, including the Unix line endings(
	// ).
	PrivateKey BasicSecretBase `json:"privateKey,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

XeroLinkedServiceTypeProperties xero Serivce linked service properties.

func (*XeroLinkedServiceTypeProperties) UnmarshalJSON

func (xlstp *XeroLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for XeroLinkedServiceTypeProperties struct.

type XeroObjectDataset

type XeroObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

XeroObjectDataset xero Serivce dataset.

func (XeroObjectDataset) AsAmazonMWSObjectDataset

func (xod XeroObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsAmazonS3Dataset

func (xod XeroObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsAzureBlobDataset

func (xod XeroObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsAzureDataLakeStoreDataset

func (xod XeroObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsAzureMySQLTableDataset

func (xod XeroObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsAzurePostgreSQLTableDataset

func (xod XeroObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsAzureSQLDWTableDataset

func (xod XeroObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsAzureSQLTableDataset

func (xod XeroObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsAzureSearchIndexDataset

func (xod XeroObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsAzureTableDataset

func (xod XeroObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsBasicDataset

func (xod XeroObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsCassandraTableDataset

func (xod XeroObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsConcurObjectDataset

func (xod XeroObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsCouchbaseTableDataset

func (xod XeroObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsCustomDataset

func (xod XeroObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsDataset

func (xod XeroObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsDocumentDbCollectionDataset

func (xod XeroObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsDrillTableDataset

func (xod XeroObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsDynamicsEntityDataset

func (xod XeroObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsEloquaObjectDataset

func (xod XeroObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsFileShareDataset

func (xod XeroObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsGoogleBigQueryObjectDataset

func (xod XeroObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsGreenplumTableDataset

func (xod XeroObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsHBaseObjectDataset

func (xod XeroObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsHTTPDataset

func (xod XeroObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsHiveObjectDataset

func (xod XeroObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsHubspotObjectDataset

func (xod XeroObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsImpalaObjectDataset

func (xod XeroObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsJiraObjectDataset

func (xod XeroObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsMagentoObjectDataset

func (xod XeroObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsMariaDBTableDataset

func (xod XeroObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsMarketoObjectDataset

func (xod XeroObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsMongoDbCollectionDataset

func (xod XeroObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsNetezzaTableDataset

func (xod XeroObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsODataResourceDataset

func (xod XeroObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsOracleTableDataset

func (xod XeroObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsPaypalObjectDataset

func (xod XeroObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsPhoenixObjectDataset

func (xod XeroObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsPrestoObjectDataset

func (xod XeroObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsQuickBooksObjectDataset

func (xod XeroObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsRelationalTableDataset

func (xod XeroObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsResponsysObjectDataset

func (xod XeroObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsSQLServerTableDataset

func (xod XeroObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (xod XeroObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsSalesforceObjectDataset

func (xod XeroObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsSapCloudForCustomerResourceDataset

func (xod XeroObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsSapEccResourceDataset

func (xod XeroObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsServiceNowObjectDataset

func (xod XeroObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsShopifyObjectDataset

func (xod XeroObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsSparkObjectDataset

func (xod XeroObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsSquareObjectDataset

func (xod XeroObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsVerticaTableDataset

func (xod XeroObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsWebTableDataset

func (xod XeroObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsXeroObjectDataset

func (xod XeroObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) AsZohoObjectDataset

func (xod XeroObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for XeroObjectDataset.

func (XeroObjectDataset) MarshalJSON

func (xod XeroObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for XeroObjectDataset.

type XeroSource

type XeroSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

XeroSource a copy activity Xero Serivce source.

func (XeroSource) AsAmazonMWSSource

func (xs XeroSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsAmazonRedshiftSource

func (xs XeroSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsAzureDataLakeStoreSource

func (xs XeroSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsAzureMySQLSource

func (xs XeroSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsAzurePostgreSQLSource

func (xs XeroSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsAzureTableSource

func (xs XeroSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsBasicCopySource

func (xs XeroSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsBlobSource

func (xs XeroSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsCassandraSource

func (xs XeroSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsConcurSource

func (xs XeroSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsCopySource

func (xs XeroSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsCouchbaseSource

func (xs XeroSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsDocumentDbCollectionSource

func (xs XeroSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsDrillSource

func (xs XeroSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsDynamicsSource

func (xs XeroSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsEloquaSource

func (xs XeroSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsFileSystemSource

func (xs XeroSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsGoogleBigQuerySource

func (xs XeroSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsGreenplumSource

func (xs XeroSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsHBaseSource

func (xs XeroSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsHTTPSource

func (xs XeroSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsHdfsSource

func (xs XeroSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsHiveSource

func (xs XeroSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsHubspotSource

func (xs XeroSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsImpalaSource

func (xs XeroSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsJiraSource

func (xs XeroSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsMagentoSource

func (xs XeroSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsMariaDBSource

func (xs XeroSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsMarketoSource

func (xs XeroSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsMongoDbSource

func (xs XeroSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsNetezzaSource

func (xs XeroSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsOracleSource

func (xs XeroSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsPaypalSource

func (xs XeroSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsPhoenixSource

func (xs XeroSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsPrestoSource

func (xs XeroSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsQuickBooksSource

func (xs XeroSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsRelationalSource

func (xs XeroSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsResponsysSource

func (xs XeroSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsSQLDWSource

func (xs XeroSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsSQLSource

func (xs XeroSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsSalesforceMarketingCloudSource

func (xs XeroSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsSalesforceSource

func (xs XeroSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsSapCloudForCustomerSource

func (xs XeroSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsSapEccSource

func (xs XeroSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsServiceNowSource

func (xs XeroSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsShopifySource

func (xs XeroSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsSparkSource

func (xs XeroSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsSquareSource

func (xs XeroSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsVerticaSource

func (xs XeroSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsWebSource

func (xs XeroSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsXeroSource

func (xs XeroSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) AsZohoSource

func (xs XeroSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for XeroSource.

func (XeroSource) MarshalJSON

func (xs XeroSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for XeroSource.

type ZohoLinkedService

type ZohoLinkedService struct {
	// ZohoLinkedServiceTypeProperties - Zoho server linked service properties.
	*ZohoLinkedServiceTypeProperties `json:"typeProperties,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// ConnectVia - The integration runtime reference.
	ConnectVia *IntegrationRuntimeReference `json:"connectVia,omitempty"`
	// Description - Linked service description.
	Description *string `json:"description,omitempty"`
	// Parameters - Parameters for linked service.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeLinkedService', 'TypeResponsys', 'TypeAzureDatabricks', 'TypeAzureDataLakeAnalytics', 'TypeHDInsightOnDemand', 'TypeSalesforceMarketingCloud', 'TypeNetezza', 'TypeVertica', 'TypeZoho', 'TypeXero', 'TypeSquare', 'TypeSpark', 'TypeShopify', 'TypeServiceNow', 'TypeQuickBooks', 'TypePresto', 'TypePhoenix', 'TypePaypal', 'TypeMarketo', 'TypeMariaDB', 'TypeMagento', 'TypeJira', 'TypeImpala', 'TypeHubspot', 'TypeHive', 'TypeHBase', 'TypeGreenplum', 'TypeGoogleBigQuery', 'TypeEloqua', 'TypeDrill', 'TypeCouchbase', 'TypeConcur', 'TypeAzurePostgreSQL', 'TypeAmazonMWS', 'TypeSapHana', 'TypeSapBW', 'TypeSftp', 'TypeFtpServer', 'TypeHTTPServer', 'TypeAzureSearch', 'TypeCustomDataSource', 'TypeAmazonRedshift', 'TypeAmazonS3', 'TypeSapEcc', 'TypeSapCloudForCustomer', 'TypeSalesforce', 'TypeAzureDataLakeStore', 'TypeMongoDb', 'TypeCassandra', 'TypeWeb', 'TypeOData', 'TypeHdfs', 'TypeOdbc', 'TypeAzureML', 'TypeTeradata', 'TypeDb2', 'TypeSybase', 'TypePostgreSQL', 'TypeMySQL', 'TypeAzureMySQL', 'TypeOracle', 'TypeFileServer', 'TypeHDInsight', 'TypeDynamics', 'TypeCosmosDb', 'TypeAzureKeyVault', 'TypeAzureBatch', 'TypeAzureSQLDatabase', 'TypeSQLServer', 'TypeAzureSQLDW', 'TypeAzureStorage'
	Type TypeBasicLinkedService `json:"type,omitempty"`
}

ZohoLinkedService zoho server linked service.

func (ZohoLinkedService) AsAmazonMWSLinkedService

func (zls ZohoLinkedService) AsAmazonMWSLinkedService() (*AmazonMWSLinkedService, bool)

AsAmazonMWSLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAmazonRedshiftLinkedService

func (zls ZohoLinkedService) AsAmazonRedshiftLinkedService() (*AmazonRedshiftLinkedService, bool)

AsAmazonRedshiftLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAmazonS3LinkedService

func (zls ZohoLinkedService) AsAmazonS3LinkedService() (*AmazonS3LinkedService, bool)

AsAmazonS3LinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAzureBatchLinkedService

func (zls ZohoLinkedService) AsAzureBatchLinkedService() (*AzureBatchLinkedService, bool)

AsAzureBatchLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAzureDataLakeAnalyticsLinkedService

func (zls ZohoLinkedService) AsAzureDataLakeAnalyticsLinkedService() (*AzureDataLakeAnalyticsLinkedService, bool)

AsAzureDataLakeAnalyticsLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAzureDataLakeStoreLinkedService

func (zls ZohoLinkedService) AsAzureDataLakeStoreLinkedService() (*AzureDataLakeStoreLinkedService, bool)

AsAzureDataLakeStoreLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAzureDatabricksLinkedService

func (zls ZohoLinkedService) AsAzureDatabricksLinkedService() (*AzureDatabricksLinkedService, bool)

AsAzureDatabricksLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAzureKeyVaultLinkedService

func (zls ZohoLinkedService) AsAzureKeyVaultLinkedService() (*AzureKeyVaultLinkedService, bool)

AsAzureKeyVaultLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAzureMLLinkedService

func (zls ZohoLinkedService) AsAzureMLLinkedService() (*AzureMLLinkedService, bool)

AsAzureMLLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAzureMySQLLinkedService

func (zls ZohoLinkedService) AsAzureMySQLLinkedService() (*AzureMySQLLinkedService, bool)

AsAzureMySQLLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAzurePostgreSQLLinkedService

func (zls ZohoLinkedService) AsAzurePostgreSQLLinkedService() (*AzurePostgreSQLLinkedService, bool)

AsAzurePostgreSQLLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAzureSQLDWLinkedService

func (zls ZohoLinkedService) AsAzureSQLDWLinkedService() (*AzureSQLDWLinkedService, bool)

AsAzureSQLDWLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAzureSQLDatabaseLinkedService

func (zls ZohoLinkedService) AsAzureSQLDatabaseLinkedService() (*AzureSQLDatabaseLinkedService, bool)

AsAzureSQLDatabaseLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAzureSearchLinkedService

func (zls ZohoLinkedService) AsAzureSearchLinkedService() (*AzureSearchLinkedService, bool)

AsAzureSearchLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsAzureStorageLinkedService

func (zls ZohoLinkedService) AsAzureStorageLinkedService() (*AzureStorageLinkedService, bool)

AsAzureStorageLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsBasicLinkedService

func (zls ZohoLinkedService) AsBasicLinkedService() (BasicLinkedService, bool)

AsBasicLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsCassandraLinkedService

func (zls ZohoLinkedService) AsCassandraLinkedService() (*CassandraLinkedService, bool)

AsCassandraLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsConcurLinkedService

func (zls ZohoLinkedService) AsConcurLinkedService() (*ConcurLinkedService, bool)

AsConcurLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsCosmosDbLinkedService

func (zls ZohoLinkedService) AsCosmosDbLinkedService() (*CosmosDbLinkedService, bool)

AsCosmosDbLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsCouchbaseLinkedService

func (zls ZohoLinkedService) AsCouchbaseLinkedService() (*CouchbaseLinkedService, bool)

AsCouchbaseLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsCustomDataSourceLinkedService

func (zls ZohoLinkedService) AsCustomDataSourceLinkedService() (*CustomDataSourceLinkedService, bool)

AsCustomDataSourceLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsDb2LinkedService

func (zls ZohoLinkedService) AsDb2LinkedService() (*Db2LinkedService, bool)

AsDb2LinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsDrillLinkedService

func (zls ZohoLinkedService) AsDrillLinkedService() (*DrillLinkedService, bool)

AsDrillLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsDynamicsLinkedService

func (zls ZohoLinkedService) AsDynamicsLinkedService() (*DynamicsLinkedService, bool)

AsDynamicsLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsEloquaLinkedService

func (zls ZohoLinkedService) AsEloquaLinkedService() (*EloquaLinkedService, bool)

AsEloquaLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsFileServerLinkedService

func (zls ZohoLinkedService) AsFileServerLinkedService() (*FileServerLinkedService, bool)

AsFileServerLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsFtpServerLinkedService

func (zls ZohoLinkedService) AsFtpServerLinkedService() (*FtpServerLinkedService, bool)

AsFtpServerLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsGoogleBigQueryLinkedService

func (zls ZohoLinkedService) AsGoogleBigQueryLinkedService() (*GoogleBigQueryLinkedService, bool)

AsGoogleBigQueryLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsGreenplumLinkedService

func (zls ZohoLinkedService) AsGreenplumLinkedService() (*GreenplumLinkedService, bool)

AsGreenplumLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsHBaseLinkedService

func (zls ZohoLinkedService) AsHBaseLinkedService() (*HBaseLinkedService, bool)

AsHBaseLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsHDInsightLinkedService

func (zls ZohoLinkedService) AsHDInsightLinkedService() (*HDInsightLinkedService, bool)

AsHDInsightLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsHDInsightOnDemandLinkedService

func (zls ZohoLinkedService) AsHDInsightOnDemandLinkedService() (*HDInsightOnDemandLinkedService, bool)

AsHDInsightOnDemandLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsHTTPLinkedService

func (zls ZohoLinkedService) AsHTTPLinkedService() (*HTTPLinkedService, bool)

AsHTTPLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsHdfsLinkedService

func (zls ZohoLinkedService) AsHdfsLinkedService() (*HdfsLinkedService, bool)

AsHdfsLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsHiveLinkedService

func (zls ZohoLinkedService) AsHiveLinkedService() (*HiveLinkedService, bool)

AsHiveLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsHubspotLinkedService

func (zls ZohoLinkedService) AsHubspotLinkedService() (*HubspotLinkedService, bool)

AsHubspotLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsImpalaLinkedService

func (zls ZohoLinkedService) AsImpalaLinkedService() (*ImpalaLinkedService, bool)

AsImpalaLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsJiraLinkedService

func (zls ZohoLinkedService) AsJiraLinkedService() (*JiraLinkedService, bool)

AsJiraLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsLinkedService

func (zls ZohoLinkedService) AsLinkedService() (*LinkedService, bool)

AsLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsMagentoLinkedService

func (zls ZohoLinkedService) AsMagentoLinkedService() (*MagentoLinkedService, bool)

AsMagentoLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsMariaDBLinkedService

func (zls ZohoLinkedService) AsMariaDBLinkedService() (*MariaDBLinkedService, bool)

AsMariaDBLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsMarketoLinkedService

func (zls ZohoLinkedService) AsMarketoLinkedService() (*MarketoLinkedService, bool)

AsMarketoLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsMongoDbLinkedService

func (zls ZohoLinkedService) AsMongoDbLinkedService() (*MongoDbLinkedService, bool)

AsMongoDbLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsMySQLLinkedService

func (zls ZohoLinkedService) AsMySQLLinkedService() (*MySQLLinkedService, bool)

AsMySQLLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsNetezzaLinkedService

func (zls ZohoLinkedService) AsNetezzaLinkedService() (*NetezzaLinkedService, bool)

AsNetezzaLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsODataLinkedService

func (zls ZohoLinkedService) AsODataLinkedService() (*ODataLinkedService, bool)

AsODataLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsOdbcLinkedService

func (zls ZohoLinkedService) AsOdbcLinkedService() (*OdbcLinkedService, bool)

AsOdbcLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsOracleLinkedService

func (zls ZohoLinkedService) AsOracleLinkedService() (*OracleLinkedService, bool)

AsOracleLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsPaypalLinkedService

func (zls ZohoLinkedService) AsPaypalLinkedService() (*PaypalLinkedService, bool)

AsPaypalLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsPhoenixLinkedService

func (zls ZohoLinkedService) AsPhoenixLinkedService() (*PhoenixLinkedService, bool)

AsPhoenixLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsPostgreSQLLinkedService

func (zls ZohoLinkedService) AsPostgreSQLLinkedService() (*PostgreSQLLinkedService, bool)

AsPostgreSQLLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsPrestoLinkedService

func (zls ZohoLinkedService) AsPrestoLinkedService() (*PrestoLinkedService, bool)

AsPrestoLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsQuickBooksLinkedService

func (zls ZohoLinkedService) AsQuickBooksLinkedService() (*QuickBooksLinkedService, bool)

AsQuickBooksLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsResponsysLinkedService

func (zls ZohoLinkedService) AsResponsysLinkedService() (*ResponsysLinkedService, bool)

AsResponsysLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsSQLServerLinkedService

func (zls ZohoLinkedService) AsSQLServerLinkedService() (*SQLServerLinkedService, bool)

AsSQLServerLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsSalesforceLinkedService

func (zls ZohoLinkedService) AsSalesforceLinkedService() (*SalesforceLinkedService, bool)

AsSalesforceLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsSalesforceMarketingCloudLinkedService

func (zls ZohoLinkedService) AsSalesforceMarketingCloudLinkedService() (*SalesforceMarketingCloudLinkedService, bool)

AsSalesforceMarketingCloudLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsSapBWLinkedService

func (zls ZohoLinkedService) AsSapBWLinkedService() (*SapBWLinkedService, bool)

AsSapBWLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsSapCloudForCustomerLinkedService

func (zls ZohoLinkedService) AsSapCloudForCustomerLinkedService() (*SapCloudForCustomerLinkedService, bool)

AsSapCloudForCustomerLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsSapEccLinkedService

func (zls ZohoLinkedService) AsSapEccLinkedService() (*SapEccLinkedService, bool)

AsSapEccLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsSapHanaLinkedService

func (zls ZohoLinkedService) AsSapHanaLinkedService() (*SapHanaLinkedService, bool)

AsSapHanaLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsServiceNowLinkedService

func (zls ZohoLinkedService) AsServiceNowLinkedService() (*ServiceNowLinkedService, bool)

AsServiceNowLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsSftpServerLinkedService

func (zls ZohoLinkedService) AsSftpServerLinkedService() (*SftpServerLinkedService, bool)

AsSftpServerLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsShopifyLinkedService

func (zls ZohoLinkedService) AsShopifyLinkedService() (*ShopifyLinkedService, bool)

AsShopifyLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsSparkLinkedService

func (zls ZohoLinkedService) AsSparkLinkedService() (*SparkLinkedService, bool)

AsSparkLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsSquareLinkedService

func (zls ZohoLinkedService) AsSquareLinkedService() (*SquareLinkedService, bool)

AsSquareLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsSybaseLinkedService

func (zls ZohoLinkedService) AsSybaseLinkedService() (*SybaseLinkedService, bool)

AsSybaseLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsTeradataLinkedService

func (zls ZohoLinkedService) AsTeradataLinkedService() (*TeradataLinkedService, bool)

AsTeradataLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsVerticaLinkedService

func (zls ZohoLinkedService) AsVerticaLinkedService() (*VerticaLinkedService, bool)

AsVerticaLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsWebLinkedService

func (zls ZohoLinkedService) AsWebLinkedService() (*WebLinkedService, bool)

AsWebLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsXeroLinkedService

func (zls ZohoLinkedService) AsXeroLinkedService() (*XeroLinkedService, bool)

AsXeroLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) AsZohoLinkedService

func (zls ZohoLinkedService) AsZohoLinkedService() (*ZohoLinkedService, bool)

AsZohoLinkedService is the BasicLinkedService implementation for ZohoLinkedService.

func (ZohoLinkedService) MarshalJSON

func (zls ZohoLinkedService) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ZohoLinkedService.

func (*ZohoLinkedService) UnmarshalJSON

func (zls *ZohoLinkedService) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ZohoLinkedService struct.

type ZohoLinkedServiceTypeProperties

type ZohoLinkedServiceTypeProperties struct {
	// Endpoint - The endpoint of the Zoho server. (i.e. crm.zoho.com/crm/private)
	Endpoint interface{} `json:"endpoint,omitempty"`
	// AccessToken - The access token for Zoho authentication.
	AccessToken BasicSecretBase `json:"accessToken,omitempty"`
	// UseEncryptedEndpoints - Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.
	UseEncryptedEndpoints interface{} `json:"useEncryptedEndpoints,omitempty"`
	// UseHostVerification - Specifies whether to require the host name in the server's certificate to match the host name of the server when connecting over SSL. The default value is true.
	UseHostVerification interface{} `json:"useHostVerification,omitempty"`
	// UsePeerVerification - Specifies whether to verify the identity of the server when connecting over SSL. The default value is true.
	UsePeerVerification interface{} `json:"usePeerVerification,omitempty"`
	// EncryptedCredential - The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
	EncryptedCredential interface{} `json:"encryptedCredential,omitempty"`
}

ZohoLinkedServiceTypeProperties zoho server linked service properties.

func (*ZohoLinkedServiceTypeProperties) UnmarshalJSON

func (zlstp *ZohoLinkedServiceTypeProperties) UnmarshalJSON(body []byte) error

UnmarshalJSON is the custom unmarshaler for ZohoLinkedServiceTypeProperties struct.

type ZohoObjectDataset

type ZohoObjectDataset struct {
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// Description - Dataset description.
	Description *string `json:"description,omitempty"`
	// Structure - Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
	Structure interface{} `json:"structure,omitempty"`
	// LinkedServiceName - Linked service reference.
	LinkedServiceName *LinkedServiceReference `json:"linkedServiceName,omitempty"`
	// Parameters - Parameters for dataset.
	Parameters map[string]*ParameterSpecification `json:"parameters"`
	// Annotations - List of tags that can be used for describing the Dataset.
	Annotations *[]interface{} `json:"annotations,omitempty"`
	// Type - Possible values include: 'TypeDataset', 'TypeResponsysObject', 'TypeSalesforceMarketingCloudObject', 'TypeVerticaTable', 'TypeNetezzaTable', 'TypeZohoObject', 'TypeXeroObject', 'TypeSquareObject', 'TypeSparkObject', 'TypeShopifyObject', 'TypeServiceNowObject', 'TypeQuickBooksObject', 'TypePrestoObject', 'TypePhoenixObject', 'TypePaypalObject', 'TypeMarketoObject', 'TypeMariaDBTable', 'TypeMagentoObject', 'TypeJiraObject', 'TypeImpalaObject', 'TypeHubspotObject', 'TypeHiveObject', 'TypeHBaseObject', 'TypeGreenplumTable', 'TypeGoogleBigQueryObject', 'TypeEloquaObject', 'TypeDrillTable', 'TypeCouchbaseTable', 'TypeConcurObject', 'TypeAzurePostgreSQLTable', 'TypeAmazonMWSObject', 'TypeHTTPFile', 'TypeAzureSearchIndex', 'TypeWebTable', 'TypeSQLServerTable', 'TypeSapEccResource', 'TypeSapCloudForCustomerResource', 'TypeSalesforceObject', 'TypeRelationalTable', 'TypeAzureMySQLTable', 'TypeOracleTable', 'TypeODataResource', 'TypeMongoDbCollection', 'TypeFileShare', 'TypeAzureDataLakeStoreFile', 'TypeDynamicsEntity', 'TypeDocumentDbCollection', 'TypeCustomDataset', 'TypeCassandraTable', 'TypeAzureSQLDWTable', 'TypeAzureSQLTable', 'TypeAzureTable', 'TypeAzureBlob', 'TypeAmazonS3Object'
	Type TypeBasicDataset `json:"type,omitempty"`
}

ZohoObjectDataset zoho server dataset.

func (ZohoObjectDataset) AsAmazonMWSObjectDataset

func (zod ZohoObjectDataset) AsAmazonMWSObjectDataset() (*AmazonMWSObjectDataset, bool)

AsAmazonMWSObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsAmazonS3Dataset

func (zod ZohoObjectDataset) AsAmazonS3Dataset() (*AmazonS3Dataset, bool)

AsAmazonS3Dataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsAzureBlobDataset

func (zod ZohoObjectDataset) AsAzureBlobDataset() (*AzureBlobDataset, bool)

AsAzureBlobDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsAzureDataLakeStoreDataset

func (zod ZohoObjectDataset) AsAzureDataLakeStoreDataset() (*AzureDataLakeStoreDataset, bool)

AsAzureDataLakeStoreDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsAzureMySQLTableDataset

func (zod ZohoObjectDataset) AsAzureMySQLTableDataset() (*AzureMySQLTableDataset, bool)

AsAzureMySQLTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsAzurePostgreSQLTableDataset

func (zod ZohoObjectDataset) AsAzurePostgreSQLTableDataset() (*AzurePostgreSQLTableDataset, bool)

AsAzurePostgreSQLTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsAzureSQLDWTableDataset

func (zod ZohoObjectDataset) AsAzureSQLDWTableDataset() (*AzureSQLDWTableDataset, bool)

AsAzureSQLDWTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsAzureSQLTableDataset

func (zod ZohoObjectDataset) AsAzureSQLTableDataset() (*AzureSQLTableDataset, bool)

AsAzureSQLTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsAzureSearchIndexDataset

func (zod ZohoObjectDataset) AsAzureSearchIndexDataset() (*AzureSearchIndexDataset, bool)

AsAzureSearchIndexDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsAzureTableDataset

func (zod ZohoObjectDataset) AsAzureTableDataset() (*AzureTableDataset, bool)

AsAzureTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsBasicDataset

func (zod ZohoObjectDataset) AsBasicDataset() (BasicDataset, bool)

AsBasicDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsCassandraTableDataset

func (zod ZohoObjectDataset) AsCassandraTableDataset() (*CassandraTableDataset, bool)

AsCassandraTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsConcurObjectDataset

func (zod ZohoObjectDataset) AsConcurObjectDataset() (*ConcurObjectDataset, bool)

AsConcurObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsCouchbaseTableDataset

func (zod ZohoObjectDataset) AsCouchbaseTableDataset() (*CouchbaseTableDataset, bool)

AsCouchbaseTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsCustomDataset

func (zod ZohoObjectDataset) AsCustomDataset() (*CustomDataset, bool)

AsCustomDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsDataset

func (zod ZohoObjectDataset) AsDataset() (*Dataset, bool)

AsDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsDocumentDbCollectionDataset

func (zod ZohoObjectDataset) AsDocumentDbCollectionDataset() (*DocumentDbCollectionDataset, bool)

AsDocumentDbCollectionDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsDrillTableDataset

func (zod ZohoObjectDataset) AsDrillTableDataset() (*DrillTableDataset, bool)

AsDrillTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsDynamicsEntityDataset

func (zod ZohoObjectDataset) AsDynamicsEntityDataset() (*DynamicsEntityDataset, bool)

AsDynamicsEntityDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsEloquaObjectDataset

func (zod ZohoObjectDataset) AsEloquaObjectDataset() (*EloquaObjectDataset, bool)

AsEloquaObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsFileShareDataset

func (zod ZohoObjectDataset) AsFileShareDataset() (*FileShareDataset, bool)

AsFileShareDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsGoogleBigQueryObjectDataset

func (zod ZohoObjectDataset) AsGoogleBigQueryObjectDataset() (*GoogleBigQueryObjectDataset, bool)

AsGoogleBigQueryObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsGreenplumTableDataset

func (zod ZohoObjectDataset) AsGreenplumTableDataset() (*GreenplumTableDataset, bool)

AsGreenplumTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsHBaseObjectDataset

func (zod ZohoObjectDataset) AsHBaseObjectDataset() (*HBaseObjectDataset, bool)

AsHBaseObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsHTTPDataset

func (zod ZohoObjectDataset) AsHTTPDataset() (*HTTPDataset, bool)

AsHTTPDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsHiveObjectDataset

func (zod ZohoObjectDataset) AsHiveObjectDataset() (*HiveObjectDataset, bool)

AsHiveObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsHubspotObjectDataset

func (zod ZohoObjectDataset) AsHubspotObjectDataset() (*HubspotObjectDataset, bool)

AsHubspotObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsImpalaObjectDataset

func (zod ZohoObjectDataset) AsImpalaObjectDataset() (*ImpalaObjectDataset, bool)

AsImpalaObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsJiraObjectDataset

func (zod ZohoObjectDataset) AsJiraObjectDataset() (*JiraObjectDataset, bool)

AsJiraObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsMagentoObjectDataset

func (zod ZohoObjectDataset) AsMagentoObjectDataset() (*MagentoObjectDataset, bool)

AsMagentoObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsMariaDBTableDataset

func (zod ZohoObjectDataset) AsMariaDBTableDataset() (*MariaDBTableDataset, bool)

AsMariaDBTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsMarketoObjectDataset

func (zod ZohoObjectDataset) AsMarketoObjectDataset() (*MarketoObjectDataset, bool)

AsMarketoObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsMongoDbCollectionDataset

func (zod ZohoObjectDataset) AsMongoDbCollectionDataset() (*MongoDbCollectionDataset, bool)

AsMongoDbCollectionDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsNetezzaTableDataset

func (zod ZohoObjectDataset) AsNetezzaTableDataset() (*NetezzaTableDataset, bool)

AsNetezzaTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsODataResourceDataset

func (zod ZohoObjectDataset) AsODataResourceDataset() (*ODataResourceDataset, bool)

AsODataResourceDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsOracleTableDataset

func (zod ZohoObjectDataset) AsOracleTableDataset() (*OracleTableDataset, bool)

AsOracleTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsPaypalObjectDataset

func (zod ZohoObjectDataset) AsPaypalObjectDataset() (*PaypalObjectDataset, bool)

AsPaypalObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsPhoenixObjectDataset

func (zod ZohoObjectDataset) AsPhoenixObjectDataset() (*PhoenixObjectDataset, bool)

AsPhoenixObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsPrestoObjectDataset

func (zod ZohoObjectDataset) AsPrestoObjectDataset() (*PrestoObjectDataset, bool)

AsPrestoObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsQuickBooksObjectDataset

func (zod ZohoObjectDataset) AsQuickBooksObjectDataset() (*QuickBooksObjectDataset, bool)

AsQuickBooksObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsRelationalTableDataset

func (zod ZohoObjectDataset) AsRelationalTableDataset() (*RelationalTableDataset, bool)

AsRelationalTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsResponsysObjectDataset

func (zod ZohoObjectDataset) AsResponsysObjectDataset() (*ResponsysObjectDataset, bool)

AsResponsysObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsSQLServerTableDataset

func (zod ZohoObjectDataset) AsSQLServerTableDataset() (*SQLServerTableDataset, bool)

AsSQLServerTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsSalesforceMarketingCloudObjectDataset

func (zod ZohoObjectDataset) AsSalesforceMarketingCloudObjectDataset() (*SalesforceMarketingCloudObjectDataset, bool)

AsSalesforceMarketingCloudObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsSalesforceObjectDataset

func (zod ZohoObjectDataset) AsSalesforceObjectDataset() (*SalesforceObjectDataset, bool)

AsSalesforceObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsSapCloudForCustomerResourceDataset

func (zod ZohoObjectDataset) AsSapCloudForCustomerResourceDataset() (*SapCloudForCustomerResourceDataset, bool)

AsSapCloudForCustomerResourceDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsSapEccResourceDataset

func (zod ZohoObjectDataset) AsSapEccResourceDataset() (*SapEccResourceDataset, bool)

AsSapEccResourceDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsServiceNowObjectDataset

func (zod ZohoObjectDataset) AsServiceNowObjectDataset() (*ServiceNowObjectDataset, bool)

AsServiceNowObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsShopifyObjectDataset

func (zod ZohoObjectDataset) AsShopifyObjectDataset() (*ShopifyObjectDataset, bool)

AsShopifyObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsSparkObjectDataset

func (zod ZohoObjectDataset) AsSparkObjectDataset() (*SparkObjectDataset, bool)

AsSparkObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsSquareObjectDataset

func (zod ZohoObjectDataset) AsSquareObjectDataset() (*SquareObjectDataset, bool)

AsSquareObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsVerticaTableDataset

func (zod ZohoObjectDataset) AsVerticaTableDataset() (*VerticaTableDataset, bool)

AsVerticaTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsWebTableDataset

func (zod ZohoObjectDataset) AsWebTableDataset() (*WebTableDataset, bool)

AsWebTableDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsXeroObjectDataset

func (zod ZohoObjectDataset) AsXeroObjectDataset() (*XeroObjectDataset, bool)

AsXeroObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) AsZohoObjectDataset

func (zod ZohoObjectDataset) AsZohoObjectDataset() (*ZohoObjectDataset, bool)

AsZohoObjectDataset is the BasicDataset implementation for ZohoObjectDataset.

func (ZohoObjectDataset) MarshalJSON

func (zod ZohoObjectDataset) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ZohoObjectDataset.

type ZohoSource

type ZohoSource struct {
	// Query - A query to retrieve data from source. Type: string (or Expression with resultType string).
	Query interface{} `json:"query,omitempty"`
	// AdditionalProperties - Unmatched properties from the message are deserialized this collection
	AdditionalProperties map[string]interface{} `json:""`
	// SourceRetryCount - Source retry count. Type: integer (or Expression with resultType integer).
	SourceRetryCount interface{} `json:"sourceRetryCount,omitempty"`
	// SourceRetryWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
	SourceRetryWait interface{} `json:"sourceRetryWait,omitempty"`
	// Type - Possible values include: 'TypeCopySource', 'TypeAmazonRedshiftSource', 'TypeResponsysSource', 'TypeSalesforceMarketingCloudSource', 'TypeVerticaSource', 'TypeNetezzaSource', 'TypeZohoSource', 'TypeXeroSource', 'TypeSquareSource', 'TypeSparkSource', 'TypeShopifySource', 'TypeServiceNowSource', 'TypeQuickBooksSource', 'TypePrestoSource', 'TypePhoenixSource', 'TypePaypalSource', 'TypeMarketoSource', 'TypeMariaDBSource', 'TypeMagentoSource', 'TypeJiraSource', 'TypeImpalaSource', 'TypeHubspotSource', 'TypeHiveSource', 'TypeHBaseSource', 'TypeGreenplumSource', 'TypeGoogleBigQuerySource', 'TypeEloquaSource', 'TypeDrillSource', 'TypeCouchbaseSource', 'TypeConcurSource', 'TypeAzurePostgreSQLSource', 'TypeAmazonMWSSource', 'TypeHTTPSource', 'TypeAzureDataLakeStoreSource', 'TypeMongoDbSource', 'TypeCassandraSource', 'TypeWebSource', 'TypeOracleSource', 'TypeAzureMySQLSource', 'TypeHdfsSource', 'TypeFileSystemSource', 'TypeSQLDWSource', 'TypeSQLSource', 'TypeSapEccSource', 'TypeSapCloudForCustomerSource', 'TypeSalesforceSource', 'TypeRelationalSource', 'TypeDynamicsSource', 'TypeDocumentDbCollectionSource', 'TypeBlobSource', 'TypeAzureTableSource'
	Type TypeBasicCopySource `json:"type,omitempty"`
}

ZohoSource a copy activity Zoho server source.

func (ZohoSource) AsAmazonMWSSource

func (zs ZohoSource) AsAmazonMWSSource() (*AmazonMWSSource, bool)

AsAmazonMWSSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsAmazonRedshiftSource

func (zs ZohoSource) AsAmazonRedshiftSource() (*AmazonRedshiftSource, bool)

AsAmazonRedshiftSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsAzureDataLakeStoreSource

func (zs ZohoSource) AsAzureDataLakeStoreSource() (*AzureDataLakeStoreSource, bool)

AsAzureDataLakeStoreSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsAzureMySQLSource

func (zs ZohoSource) AsAzureMySQLSource() (*AzureMySQLSource, bool)

AsAzureMySQLSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsAzurePostgreSQLSource

func (zs ZohoSource) AsAzurePostgreSQLSource() (*AzurePostgreSQLSource, bool)

AsAzurePostgreSQLSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsAzureTableSource

func (zs ZohoSource) AsAzureTableSource() (*AzureTableSource, bool)

AsAzureTableSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsBasicCopySource

func (zs ZohoSource) AsBasicCopySource() (BasicCopySource, bool)

AsBasicCopySource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsBlobSource

func (zs ZohoSource) AsBlobSource() (*BlobSource, bool)

AsBlobSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsCassandraSource

func (zs ZohoSource) AsCassandraSource() (*CassandraSource, bool)

AsCassandraSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsConcurSource

func (zs ZohoSource) AsConcurSource() (*ConcurSource, bool)

AsConcurSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsCopySource

func (zs ZohoSource) AsCopySource() (*CopySource, bool)

AsCopySource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsCouchbaseSource

func (zs ZohoSource) AsCouchbaseSource() (*CouchbaseSource, bool)

AsCouchbaseSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsDocumentDbCollectionSource

func (zs ZohoSource) AsDocumentDbCollectionSource() (*DocumentDbCollectionSource, bool)

AsDocumentDbCollectionSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsDrillSource

func (zs ZohoSource) AsDrillSource() (*DrillSource, bool)

AsDrillSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsDynamicsSource

func (zs ZohoSource) AsDynamicsSource() (*DynamicsSource, bool)

AsDynamicsSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsEloquaSource

func (zs ZohoSource) AsEloquaSource() (*EloquaSource, bool)

AsEloquaSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsFileSystemSource

func (zs ZohoSource) AsFileSystemSource() (*FileSystemSource, bool)

AsFileSystemSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsGoogleBigQuerySource

func (zs ZohoSource) AsGoogleBigQuerySource() (*GoogleBigQuerySource, bool)

AsGoogleBigQuerySource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsGreenplumSource

func (zs ZohoSource) AsGreenplumSource() (*GreenplumSource, bool)

AsGreenplumSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsHBaseSource

func (zs ZohoSource) AsHBaseSource() (*HBaseSource, bool)

AsHBaseSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsHTTPSource

func (zs ZohoSource) AsHTTPSource() (*HTTPSource, bool)

AsHTTPSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsHdfsSource

func (zs ZohoSource) AsHdfsSource() (*HdfsSource, bool)

AsHdfsSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsHiveSource

func (zs ZohoSource) AsHiveSource() (*HiveSource, bool)

AsHiveSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsHubspotSource

func (zs ZohoSource) AsHubspotSource() (*HubspotSource, bool)

AsHubspotSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsImpalaSource

func (zs ZohoSource) AsImpalaSource() (*ImpalaSource, bool)

AsImpalaSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsJiraSource

func (zs ZohoSource) AsJiraSource() (*JiraSource, bool)

AsJiraSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsMagentoSource

func (zs ZohoSource) AsMagentoSource() (*MagentoSource, bool)

AsMagentoSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsMariaDBSource

func (zs ZohoSource) AsMariaDBSource() (*MariaDBSource, bool)

AsMariaDBSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsMarketoSource

func (zs ZohoSource) AsMarketoSource() (*MarketoSource, bool)

AsMarketoSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsMongoDbSource

func (zs ZohoSource) AsMongoDbSource() (*MongoDbSource, bool)

AsMongoDbSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsNetezzaSource

func (zs ZohoSource) AsNetezzaSource() (*NetezzaSource, bool)

AsNetezzaSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsOracleSource

func (zs ZohoSource) AsOracleSource() (*OracleSource, bool)

AsOracleSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsPaypalSource

func (zs ZohoSource) AsPaypalSource() (*PaypalSource, bool)

AsPaypalSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsPhoenixSource

func (zs ZohoSource) AsPhoenixSource() (*PhoenixSource, bool)

AsPhoenixSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsPrestoSource

func (zs ZohoSource) AsPrestoSource() (*PrestoSource, bool)

AsPrestoSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsQuickBooksSource

func (zs ZohoSource) AsQuickBooksSource() (*QuickBooksSource, bool)

AsQuickBooksSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsRelationalSource

func (zs ZohoSource) AsRelationalSource() (*RelationalSource, bool)

AsRelationalSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsResponsysSource

func (zs ZohoSource) AsResponsysSource() (*ResponsysSource, bool)

AsResponsysSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsSQLDWSource

func (zs ZohoSource) AsSQLDWSource() (*SQLDWSource, bool)

AsSQLDWSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsSQLSource

func (zs ZohoSource) AsSQLSource() (*SQLSource, bool)

AsSQLSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsSalesforceMarketingCloudSource

func (zs ZohoSource) AsSalesforceMarketingCloudSource() (*SalesforceMarketingCloudSource, bool)

AsSalesforceMarketingCloudSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsSalesforceSource

func (zs ZohoSource) AsSalesforceSource() (*SalesforceSource, bool)

AsSalesforceSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsSapCloudForCustomerSource

func (zs ZohoSource) AsSapCloudForCustomerSource() (*SapCloudForCustomerSource, bool)

AsSapCloudForCustomerSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsSapEccSource

func (zs ZohoSource) AsSapEccSource() (*SapEccSource, bool)

AsSapEccSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsServiceNowSource

func (zs ZohoSource) AsServiceNowSource() (*ServiceNowSource, bool)

AsServiceNowSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsShopifySource

func (zs ZohoSource) AsShopifySource() (*ShopifySource, bool)

AsShopifySource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsSparkSource

func (zs ZohoSource) AsSparkSource() (*SparkSource, bool)

AsSparkSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsSquareSource

func (zs ZohoSource) AsSquareSource() (*SquareSource, bool)

AsSquareSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsVerticaSource

func (zs ZohoSource) AsVerticaSource() (*VerticaSource, bool)

AsVerticaSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsWebSource

func (zs ZohoSource) AsWebSource() (*WebSource, bool)

AsWebSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsXeroSource

func (zs ZohoSource) AsXeroSource() (*XeroSource, bool)

AsXeroSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) AsZohoSource

func (zs ZohoSource) AsZohoSource() (*ZohoSource, bool)

AsZohoSource is the BasicCopySource implementation for ZohoSource.

func (ZohoSource) MarshalJSON

func (zs ZohoSource) MarshalJSON() ([]byte, error)

MarshalJSON is the custom marshaler for ZohoSource.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL