SapCloudForCustomerSink.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.analytics.synapse.artifacts.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
/** A copy activity SAP Cloud for Customer sink. */
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type")
@JsonTypeName("SapCloudForCustomerSink")
@Fluent
public final class SapCloudForCustomerSink extends CopySink {
/*
* The write behavior for the operation. Default is 'Insert'.
*/
@JsonProperty(value = "writeBehavior")
private SapCloudForCustomerSinkWriteBehavior writeBehavior;
/*
* The timeout (TimeSpan) to get an HTTP response. It is the timeout to get
* a response, not the timeout to read response data. Default value:
* 00:05:00. Type: string (or Expression with resultType string), pattern:
* ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*/
@JsonProperty(value = "httpRequestTimeout")
private Object httpRequestTimeout;
/**
* Get the writeBehavior property: The write behavior for the operation. Default is 'Insert'.
*
* @return the writeBehavior value.
*/
public SapCloudForCustomerSinkWriteBehavior getWriteBehavior() {
return this.writeBehavior;
}
/**
* Set the writeBehavior property: The write behavior for the operation. Default is 'Insert'.
*
* @param writeBehavior the writeBehavior value to set.
* @return the SapCloudForCustomerSink object itself.
*/
public SapCloudForCustomerSink setWriteBehavior(SapCloudForCustomerSinkWriteBehavior writeBehavior) {
this.writeBehavior = writeBehavior;
return this;
}
/**
* Get the httpRequestTimeout property: The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a
* response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with
* resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*
* @return the httpRequestTimeout value.
*/
public Object getHttpRequestTimeout() {
return this.httpRequestTimeout;
}
/**
* Set the httpRequestTimeout property: The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a
* response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with
* resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*
* @param httpRequestTimeout the httpRequestTimeout value to set.
* @return the SapCloudForCustomerSink object itself.
*/
public SapCloudForCustomerSink setHttpRequestTimeout(Object httpRequestTimeout) {
this.httpRequestTimeout = httpRequestTimeout;
return this;
}
}