This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.66.0 published on Wednesday, Oct 9, 2024 by Pulumi
azure-native.datafactory.Pipeline
Explore with Pulumi AI
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.66.0 published on Wednesday, Oct 9, 2024 by Pulumi
Pipeline resource type. Azure REST API version: 2018-06-01. Prior API version in Azure Native 1.x: 2018-06-01.
Create Pipeline Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Pipeline(name: string, args: PipelineArgs, opts?: CustomResourceOptions);
@overload
def Pipeline(resource_name: str,
args: PipelineArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Pipeline(resource_name: str,
opts: Optional[ResourceOptions] = None,
factory_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
activities: Optional[Sequence[Union[AppendVariableActivityArgs, AzureDataExplorerCommandActivityArgs, AzureFunctionActivityArgs, AzureMLBatchExecutionActivityArgs, AzureMLExecutePipelineActivityArgs, AzureMLUpdateResourceActivityArgs, ControlActivityArgs, CopyActivityArgs, CustomActivityArgs, DataLakeAnalyticsUSQLActivityArgs, DatabricksNotebookActivityArgs, DatabricksSparkJarActivityArgs, DatabricksSparkPythonActivityArgs, DeleteActivityArgs, ExecuteDataFlowActivityArgs, ExecutePipelineActivityArgs, ExecuteSSISPackageActivityArgs, ExecuteWranglingDataflowActivityArgs, ExecutionActivityArgs, FailActivityArgs, FilterActivityArgs, ForEachActivityArgs, GetMetadataActivityArgs, HDInsightHiveActivityArgs, HDInsightMapReduceActivityArgs, HDInsightPigActivityArgs, HDInsightSparkActivityArgs, HDInsightStreamingActivityArgs, IfConditionActivityArgs, LookupActivityArgs, ScriptActivityArgs, SetVariableActivityArgs, SqlServerStoredProcedureActivityArgs, SwitchActivityArgs, SynapseNotebookActivityArgs, SynapseSparkJobDefinitionActivityArgs, UntilActivityArgs, ValidationActivityArgs, WaitActivityArgs, WebActivityArgs, WebHookActivityArgs]]] = None,
annotations: Optional[Sequence[Any]] = None,
concurrency: Optional[int] = None,
description: Optional[str] = None,
folder: Optional[PipelineFolderArgs] = None,
parameters: Optional[Mapping[str, ParameterSpecificationArgs]] = None,
pipeline_name: Optional[str] = None,
policy: Optional[PipelinePolicyArgs] = None,
run_dimensions: Optional[Mapping[str, Any]] = None,
variables: Optional[Mapping[str, VariableSpecificationArgs]] = None)
func NewPipeline(ctx *Context, name string, args PipelineArgs, opts ...ResourceOption) (*Pipeline, error)
public Pipeline(string name, PipelineArgs args, CustomResourceOptions? opts = null)
public Pipeline(String name, PipelineArgs args)
public Pipeline(String name, PipelineArgs args, CustomResourceOptions options)
type: azure-native:datafactory:Pipeline
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args PipelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args PipelineArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args PipelineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PipelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PipelineArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var azure_nativePipelineResource = new AzureNative.DataFactory.Pipeline("azure-nativePipelineResource", new()
{
FactoryName = "string",
ResourceGroupName = "string",
Activities = new[]
{
new AzureNative.DataFactory.Inputs.AppendVariableActivityArgs
{
Name = "string",
Type = "AppendVariable",
DependsOn = new[]
{
new AzureNative.DataFactory.Inputs.ActivityDependencyArgs
{
Activity = "string",
DependencyConditions = new[]
{
"string",
},
},
},
Description = "string",
OnInactiveMarkAs = "string",
State = "string",
UserProperties = new[]
{
new AzureNative.DataFactory.Inputs.UserPropertyArgs
{
Name = "string",
Value = "any",
},
},
Value = "any",
VariableName = "string",
},
},
Annotations = new[]
{
"any",
},
Concurrency = 0,
Description = "string",
Folder = new AzureNative.DataFactory.Inputs.PipelineFolderArgs
{
Name = "string",
},
Parameters =
{
{ "string", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = "string",
DefaultValue = "any",
} },
},
PipelineName = "string",
Policy = new AzureNative.DataFactory.Inputs.PipelinePolicyArgs
{
ElapsedTimeMetric = new AzureNative.DataFactory.Inputs.PipelineElapsedTimeMetricPolicyArgs
{
Duration = "any",
},
},
RunDimensions =
{
{ "string", "any" },
},
Variables =
{
{ "string", new AzureNative.DataFactory.Inputs.VariableSpecificationArgs
{
Type = "string",
DefaultValue = "any",
} },
},
});
example, err := datafactory.NewPipeline(ctx, "azure-nativePipelineResource", &datafactory.PipelineArgs{
FactoryName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Activities: pulumi.Array{
datafactory.AppendVariableActivity{
Name: "string",
Type: "AppendVariable",
DependsOn: []datafactory.ActivityDependency{
{
Activity: "string",
DependencyConditions: []datafactory.DependencyCondition{
"string",
},
},
},
Description: "string",
OnInactiveMarkAs: "string",
State: "string",
UserProperties: []datafactory.UserProperty{
{
Name: "string",
Value: "any",
},
},
Value: "any",
VariableName: "string",
},
},
Annotations: pulumi.Array{
pulumi.Any("any"),
},
Concurrency: pulumi.Int(0),
Description: pulumi.String("string"),
Folder: &datafactory.PipelineFolderArgs{
Name: pulumi.String("string"),
},
Parameters: datafactory.ParameterSpecificationMap{
"string": &datafactory.ParameterSpecificationArgs{
Type: pulumi.String("string"),
DefaultValue: pulumi.Any("any"),
},
},
PipelineName: pulumi.String("string"),
Policy: &datafactory.PipelinePolicyArgs{
ElapsedTimeMetric: &datafactory.PipelineElapsedTimeMetricPolicyArgs{
Duration: pulumi.Any("any"),
},
},
RunDimensions: pulumi.Map{
"string": pulumi.Any("any"),
},
Variables: datafactory.VariableSpecificationMap{
"string": &datafactory.VariableSpecificationArgs{
Type: pulumi.String("string"),
DefaultValue: pulumi.Any("any"),
},
},
})
var azure_nativePipelineResource = new Pipeline("azure-nativePipelineResource", PipelineArgs.builder()
.factoryName("string")
.resourceGroupName("string")
.activities(AppendVariableActivityArgs.builder()
.name("string")
.type("AppendVariable")
.dependsOn(ActivityDependencyArgs.builder()
.activity("string")
.dependencyConditions("string")
.build())
.description("string")
.onInactiveMarkAs("string")
.state("string")
.userProperties(UserPropertyArgs.builder()
.name("string")
.value("any")
.build())
.value("any")
.variableName("string")
.build())
.annotations("any")
.concurrency(0)
.description("string")
.folder(PipelineFolderArgs.builder()
.name("string")
.build())
.parameters(Map.of("string", Map.ofEntries(
Map.entry("type", "string"),
Map.entry("defaultValue", "any")
)))
.pipelineName("string")
.policy(PipelinePolicyArgs.builder()
.elapsedTimeMetric(PipelineElapsedTimeMetricPolicyArgs.builder()
.duration("any")
.build())
.build())
.runDimensions(Map.of("string", "any"))
.variables(Map.of("string", Map.ofEntries(
Map.entry("type", "string"),
Map.entry("defaultValue", "any")
)))
.build());
azure_native_pipeline_resource = azure_native.datafactory.Pipeline("azure-nativePipelineResource",
factory_name="string",
resource_group_name="string",
activities=[{
"name": "string",
"type": "AppendVariable",
"dependsOn": [{
"activity": "string",
"dependencyConditions": ["string"],
}],
"description": "string",
"onInactiveMarkAs": "string",
"state": "string",
"userProperties": [{
"name": "string",
"value": "any",
}],
"value": "any",
"variableName": "string",
}],
annotations=["any"],
concurrency=0,
description="string",
folder={
"name": "string",
},
parameters={
"string": {
"type": "string",
"defaultValue": "any",
},
},
pipeline_name="string",
policy={
"elapsedTimeMetric": {
"duration": "any",
},
},
run_dimensions={
"string": "any",
},
variables={
"string": {
"type": "string",
"defaultValue": "any",
},
})
const azure_nativePipelineResource = new azure_native.datafactory.Pipeline("azure-nativePipelineResource", {
factoryName: "string",
resourceGroupName: "string",
activities: [{
name: "string",
type: "AppendVariable",
dependsOn: [{
activity: "string",
dependencyConditions: ["string"],
}],
description: "string",
onInactiveMarkAs: "string",
state: "string",
userProperties: [{
name: "string",
value: "any",
}],
value: "any",
variableName: "string",
}],
annotations: ["any"],
concurrency: 0,
description: "string",
folder: {
name: "string",
},
parameters: {
string: {
type: "string",
defaultValue: "any",
},
},
pipelineName: "string",
policy: {
elapsedTimeMetric: {
duration: "any",
},
},
runDimensions: {
string: "any",
},
variables: {
string: {
type: "string",
defaultValue: "any",
},
},
});
type: azure-native:datafactory:Pipeline
properties:
activities:
- dependsOn:
- activity: string
dependencyConditions:
- string
description: string
name: string
onInactiveMarkAs: string
state: string
type: AppendVariable
userProperties:
- name: string
value: any
value: any
variableName: string
annotations:
- any
concurrency: 0
description: string
factoryName: string
folder:
name: string
parameters:
string:
defaultValue: any
type: string
pipelineName: string
policy:
elapsedTimeMetric:
duration: any
resourceGroupName: string
runDimensions:
string: any
variables:
string:
defaultValue: any
type: string
Pipeline Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Pipeline resource accepts the following input properties:
- Factory
Name string - The factory name.
- Resource
Group stringName - The resource group name.
- Activities List<object>
- List of activities in pipeline.
- Annotations List<object>
- List of tags that can be used for describing the Pipeline.
- Concurrency int
- The max number of concurrent runs for the pipeline.
- Description string
- The description of the pipeline.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Pipeline Folder - The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Args> - List of parameters for pipeline.
- Pipeline
Name string - The pipeline name.
- Policy
Pulumi.
Azure Native. Data Factory. Inputs. Pipeline Policy - Pipeline Policy.
- Run
Dimensions Dictionary<string, object> - Dimensions emitted by Pipeline.
- Variables
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Variable Specification Args> - List of variables for pipeline.
- Factory
Name string - The factory name.
- Resource
Group stringName - The resource group name.
- Activities []interface{}
- List of activities in pipeline.
- Annotations []interface{}
- List of tags that can be used for describing the Pipeline.
- Concurrency int
- The max number of concurrent runs for the pipeline.
- Description string
- The description of the pipeline.
- Folder
Pipeline
Folder Args - The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.
- Parameters
map[string]Parameter
Specification Args - List of parameters for pipeline.
- Pipeline
Name string - The pipeline name.
- Policy
Pipeline
Policy Args - Pipeline Policy.
- Run
Dimensions map[string]interface{} - Dimensions emitted by Pipeline.
- Variables
map[string]Variable
Specification Args - List of variables for pipeline.
- factory
Name String - The factory name.
- resource
Group StringName - The resource group name.
- activities List<Object>
- List of activities in pipeline.
- annotations List<Object>
- List of tags that can be used for describing the Pipeline.
- concurrency Integer
- The max number of concurrent runs for the pipeline.
- description String
- The description of the pipeline.
- folder
Pipeline
Folder - The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.
- parameters
Map<String,Parameter
Specification Args> - List of parameters for pipeline.
- pipeline
Name String - The pipeline name.
- policy
Pipeline
Policy - Pipeline Policy.
- run
Dimensions Map<String,Object> - Dimensions emitted by Pipeline.
- variables
Map<String,Variable
Specification Args> - List of variables for pipeline.
- factory
Name string - The factory name.
- resource
Group stringName - The resource group name.
- activities
(Append
Variable Activity | Azure Data Explorer Command Activity Args | Azure Function Activity Args | Azure MLBatch Execution Activity Args | Azure MLExecute Pipeline Activity Args | Azure MLUpdate Resource Activity Args | Control Activity Args | Copy Activity Args | Custom Activity Args | Data Lake Analytics USQLActivity Args | Databricks Notebook Activity Args | Databricks Spark Jar Activity Args | Databricks Spark Python Activity Args | Delete Activity Args | Execute Data Flow Activity Args | Execute Pipeline Activity Args | Execute SSISPackage Activity Args | Execute Wrangling Dataflow Activity Args | Execution Activity Args | Fail Activity Args | Filter Activity Args | For Each Activity Args | Get Metadata Activity Args | HDInsight Hive Activity Args | HDInsight Map Reduce Activity Args | HDInsight Pig Activity Args | HDInsight Spark Activity Args | HDInsight Streaming Activity Args | If Condition Activity Args | Lookup Activity Args | Script Activity Args | Set Variable Activity Args | Sql Server Stored Procedure Activity Args | Switch Activity Args | Synapse Notebook Activity Args | Synapse Spark Job Definition Activity Args | Until Activity Args | Validation Activity Args | Wait Activity Args | Web Activity Args | Web Hook Activity Args)[] - List of activities in pipeline.
- annotations any[]
- List of tags that can be used for describing the Pipeline.
- concurrency number
- The max number of concurrent runs for the pipeline.
- description string
- The description of the pipeline.
- folder
Pipeline
Folder - The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Args} - List of parameters for pipeline.
- pipeline
Name string - The pipeline name.
- policy
Pipeline
Policy - Pipeline Policy.
- run
Dimensions {[key: string]: any} - Dimensions emitted by Pipeline.
- variables
{[key: string]: Variable
Specification Args} - List of variables for pipeline.
- factory_
name str - The factory name.
- resource_
group_ strname - The resource group name.
- activities
Sequence[Union[Append
Variable Activity Args, Azure Data Explorer Command Activity Args, Azure Function Activity Args, Azure MLBatch Execution Activity Args, Azure MLExecute Pipeline Activity Args, Azure MLUpdate Resource Activity Args, Control Activity Args, Copy Activity Args, Custom Activity Args, Data Lake Analytics USQLActivity Args, Databricks Notebook Activity Args, Databricks Spark Jar Activity Args, Databricks Spark Python Activity Args, Delete Activity Args, Execute Data Flow Activity Args, Execute Pipeline Activity Args, Execute SSISPackage Activity Args, Execute Wrangling Dataflow Activity Args, Execution Activity Args, Fail Activity Args, Filter Activity Args, For Each Activity Args, Get Metadata Activity Args, HDInsight Hive Activity Args, HDInsight Map Reduce Activity Args, HDInsight Pig Activity Args, HDInsight Spark Activity Args, HDInsight Streaming Activity Args, If Condition Activity Args, Lookup Activity Args, Script Activity Args, Set Variable Activity Args, Sql Server Stored Procedure Activity Args, Switch Activity Args, Synapse Notebook Activity Args, Synapse Spark Job Definition Activity Args, Until Activity Args, Validation Activity Args, Wait Activity Args, Web Activity Args, Web Hook Activity Args]] - List of activities in pipeline.
- annotations Sequence[Any]
- List of tags that can be used for describing the Pipeline.
- concurrency int
- The max number of concurrent runs for the pipeline.
- description str
- The description of the pipeline.
- folder
Pipeline
Folder Args - The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Args] - List of parameters for pipeline.
- pipeline_
name str - The pipeline name.
- policy
Pipeline
Policy Args - Pipeline Policy.
- run_
dimensions Mapping[str, Any] - Dimensions emitted by Pipeline.
- variables
Mapping[str, Variable
Specification Args] - List of variables for pipeline.
- factory
Name String - The factory name.
- resource
Group StringName - The resource group name.
- activities List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map>
- List of activities in pipeline.
- annotations List<Any>
- List of tags that can be used for describing the Pipeline.
- concurrency Number
- The max number of concurrent runs for the pipeline.
- description String
- The description of the pipeline.
- folder Property Map
- The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.
- parameters Map<Property Map>
- List of parameters for pipeline.
- pipeline
Name String - The pipeline name.
- policy Property Map
- Pipeline Policy.
- run
Dimensions Map<Any> - Dimensions emitted by Pipeline.
- variables Map<Property Map>
- List of variables for pipeline.
Outputs
All input properties are implicitly available as output properties. Additionally, the Pipeline resource produces the following output properties:
Supporting Types
ActivityDependency, ActivityDependencyArgs
- Activity string
- Activity name.
- Dependency
Conditions List<Union<string, Pulumi.Azure Native. Data Factory. Dependency Condition>> - Match-Condition for the dependency.
- Activity string
- Activity name.
- Dependency
Conditions []string - Match-Condition for the dependency.
- activity String
- Activity name.
- dependency
Conditions List<Either<String,DependencyCondition>> - Match-Condition for the dependency.
- activity string
- Activity name.
- dependency
Conditions (string | DependencyCondition)[] - Match-Condition for the dependency.
- activity str
- Activity name.
- dependency_
conditions Sequence[Union[str, DependencyCondition]] - Match-Condition for the dependency.
- activity String
- Activity name.
- dependency
Conditions List<String | "Succeeded" | "Failed" | "Skipped" | "Completed"> - Match-Condition for the dependency.
ActivityDependencyResponse, ActivityDependencyResponseArgs
- Activity string
- Activity name.
- Dependency
Conditions List<string> - Match-Condition for the dependency.
- Activity string
- Activity name.
- Dependency
Conditions []string - Match-Condition for the dependency.
- activity String
- Activity name.
- dependency
Conditions List<String> - Match-Condition for the dependency.
- activity string
- Activity name.
- dependency
Conditions string[] - Match-Condition for the dependency.
- activity str
- Activity name.
- dependency_
conditions Sequence[str] - Match-Condition for the dependency.
- activity String
- Activity name.
- dependency
Conditions List<String> - Match-Condition for the dependency.
ActivityOnInactiveMarkAs, ActivityOnInactiveMarkAsArgs
- Succeeded
- Succeeded
- Failed
- Failed
- Skipped
- Skipped
- Activity
On Inactive Mark As Succeeded - Succeeded
- Activity
On Inactive Mark As Failed - Failed
- Activity
On Inactive Mark As Skipped - Skipped
- Succeeded
- Succeeded
- Failed
- Failed
- Skipped
- Skipped
- Succeeded
- Succeeded
- Failed
- Failed
- Skipped
- Skipped
- SUCCEEDED
- Succeeded
- FAILED
- Failed
- SKIPPED
- Skipped
- "Succeeded"
- Succeeded
- "Failed"
- Failed
- "Skipped"
- Skipped
ActivityPolicy, ActivityPolicyArgs
- Retry object
- Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
- Retry
Interval intIn Seconds - Interval between each retry attempt (in seconds). The default is 30 sec.
- Secure
Input bool - When set to true, Input from activity is considered as secure and will not be logged to monitoring.
- Secure
Output bool - When set to true, Output from activity is considered as secure and will not be logged to monitoring.
- Timeout object
- 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])).
- Retry interface{}
- Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
- Retry
Interval intIn Seconds - Interval between each retry attempt (in seconds). The default is 30 sec.
- Secure
Input bool - When set to true, Input from activity is considered as secure and will not be logged to monitoring.
- Secure
Output bool - When set to true, Output from activity is considered as secure and will not be logged to monitoring.
- Timeout interface{}
- 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])).
- retry Object
- Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
- retry
Interval IntegerIn Seconds - Interval between each retry attempt (in seconds). The default is 30 sec.
- secure
Input Boolean - When set to true, Input from activity is considered as secure and will not be logged to monitoring.
- secure
Output Boolean - When set to true, Output from activity is considered as secure and will not be logged to monitoring.
- timeout Object
- 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])).
- retry any
- Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
- retry
Interval numberIn Seconds - Interval between each retry attempt (in seconds). The default is 30 sec.
- secure
Input boolean - When set to true, Input from activity is considered as secure and will not be logged to monitoring.
- secure
Output boolean - When set to true, Output from activity is considered as secure and will not be logged to monitoring.
- timeout any
- 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])).
- retry Any
- Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
- retry_
interval_ intin_ seconds - Interval between each retry attempt (in seconds). The default is 30 sec.
- secure_
input bool - When set to true, Input from activity is considered as secure and will not be logged to monitoring.
- secure_
output bool - When set to true, Output from activity is considered as secure and will not be logged to monitoring.
- timeout Any
- 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])).
- retry Any
- Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
- retry
Interval NumberIn Seconds - Interval between each retry attempt (in seconds). The default is 30 sec.
- secure
Input Boolean - When set to true, Input from activity is considered as secure and will not be logged to monitoring.
- secure
Output Boolean - When set to true, Output from activity is considered as secure and will not be logged to monitoring.
- timeout Any
- 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])).
ActivityPolicyResponse, ActivityPolicyResponseArgs
- Retry object
- Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
- Retry
Interval intIn Seconds - Interval between each retry attempt (in seconds). The default is 30 sec.
- Secure
Input bool - When set to true, Input from activity is considered as secure and will not be logged to monitoring.
- Secure
Output bool - When set to true, Output from activity is considered as secure and will not be logged to monitoring.
- Timeout object
- 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])).
- Retry interface{}
- Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
- Retry
Interval intIn Seconds - Interval between each retry attempt (in seconds). The default is 30 sec.
- Secure
Input bool - When set to true, Input from activity is considered as secure and will not be logged to monitoring.
- Secure
Output bool - When set to true, Output from activity is considered as secure and will not be logged to monitoring.
- Timeout interface{}
- 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])).
- retry Object
- Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
- retry
Interval IntegerIn Seconds - Interval between each retry attempt (in seconds). The default is 30 sec.
- secure
Input Boolean - When set to true, Input from activity is considered as secure and will not be logged to monitoring.
- secure
Output Boolean - When set to true, Output from activity is considered as secure and will not be logged to monitoring.
- timeout Object
- 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])).
- retry any
- Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
- retry
Interval numberIn Seconds - Interval between each retry attempt (in seconds). The default is 30 sec.
- secure
Input boolean - When set to true, Input from activity is considered as secure and will not be logged to monitoring.
- secure
Output boolean - When set to true, Output from activity is considered as secure and will not be logged to monitoring.
- timeout any
- 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])).
- retry Any
- Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
- retry_
interval_ intin_ seconds - Interval between each retry attempt (in seconds). The default is 30 sec.
- secure_
input bool - When set to true, Input from activity is considered as secure and will not be logged to monitoring.
- secure_
output bool - When set to true, Output from activity is considered as secure and will not be logged to monitoring.
- timeout Any
- 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])).
- retry Any
- Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
- retry
Interval NumberIn Seconds - Interval between each retry attempt (in seconds). The default is 30 sec.
- secure
Input Boolean - When set to true, Input from activity is considered as secure and will not be logged to monitoring.
- secure
Output Boolean - When set to true, Output from activity is considered as secure and will not be logged to monitoring.
- timeout Any
- 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])).
ActivityState, ActivityStateArgs
- Active
- Active
- Inactive
- Inactive
- Activity
State Active - Active
- Activity
State Inactive - Inactive
- Active
- Active
- Inactive
- Inactive
- Active
- Active
- Inactive
- Inactive
- ACTIVE
- Active
- INACTIVE
- Inactive
- "Active"
- Active
- "Inactive"
- Inactive
AmazonMWSSource, AmazonMWSSourceArgs
- Additional
Columns object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Query object
- A query to retrieve data from source. Type: string (or Expression with resultType string).
- Query
Timeout object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Source
Retry objectCount - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry objectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Additional
Columns interface{} - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Query interface{}
- A query to retrieve data from source. Type: string (or Expression with resultType string).
- Query
Timeout interface{} - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Source
Retry interface{}Count - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Wait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns Object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query Object
- A query to retrieve data from source. Type: string (or Expression with resultType string).
- query
Timeout Object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry ObjectCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry ObjectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query any
- A query to retrieve data from source. Type: string (or Expression with resultType string).
- query
Timeout any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry anyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry anyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional_
columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query Any
- A query to retrieve data from source. Type: string (or Expression with resultType string).
- query_
timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source_
retry_ Anycount - Source retry count. Type: integer (or Expression with resultType integer).
- source_
retry_ Anywait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query Any
- A query to retrieve data from source. Type: string (or Expression with resultType string).
- query
Timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry AnyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry AnyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
AmazonMWSSourceResponse, AmazonMWSSourceResponseArgs
- Additional
Columns object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Query object
- A query to retrieve data from source. Type: string (or Expression with resultType string).
- Query
Timeout object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Source
Retry objectCount - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry objectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Additional
Columns interface{} - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Query interface{}
- A query to retrieve data from source. Type: string (or Expression with resultType string).
- Query
Timeout interface{} - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Source
Retry interface{}Count - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Wait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns Object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query Object
- A query to retrieve data from source. Type: string (or Expression with resultType string).
- query
Timeout Object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry ObjectCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry ObjectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query any
- A query to retrieve data from source. Type: string (or Expression with resultType string).
- query
Timeout any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry anyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry anyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional_
columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query Any
- A query to retrieve data from source. Type: string (or Expression with resultType string).
- query_
timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source_
retry_ Anycount - Source retry count. Type: integer (or Expression with resultType integer).
- source_
retry_ Anywait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query Any
- A query to retrieve data from source. Type: string (or Expression with resultType string).
- query
Timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry AnyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry AnyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
AmazonRdsForOraclePartitionSettings, AmazonRdsForOraclePartitionSettingsArgs
- Partition
Column objectName - The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- Partition
Lower objectBound - The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- Partition
Names List<object> - Names of the physical partitions of AmazonRdsForOracle table.
- Partition
Upper objectBound - The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- Partition
Column interface{}Name - The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- Partition
Lower interface{}Bound - The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- Partition
Names []interface{} - Names of the physical partitions of AmazonRdsForOracle table.
- Partition
Upper interface{}Bound - The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Column ObjectName - The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Lower ObjectBound - The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Names List<Object> - Names of the physical partitions of AmazonRdsForOracle table.
- partition
Upper ObjectBound - The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Column anyName - The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Lower anyBound - The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Names any[] - Names of the physical partitions of AmazonRdsForOracle table.
- partition
Upper anyBound - The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition_
column_ Anyname - The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition_
lower_ Anybound - The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition_
names Sequence[Any] - Names of the physical partitions of AmazonRdsForOracle table.
- partition_
upper_ Anybound - The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Column AnyName - The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Lower AnyBound - The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Names List<Any> - Names of the physical partitions of AmazonRdsForOracle table.
- partition
Upper AnyBound - The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
AmazonRdsForOraclePartitionSettingsResponse, AmazonRdsForOraclePartitionSettingsResponseArgs
- Partition
Column objectName - The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- Partition
Lower objectBound - The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- Partition
Names List<object> - Names of the physical partitions of AmazonRdsForOracle table.
- Partition
Upper objectBound - The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- Partition
Column interface{}Name - The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- Partition
Lower interface{}Bound - The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- Partition
Names []interface{} - Names of the physical partitions of AmazonRdsForOracle table.
- Partition
Upper interface{}Bound - The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Column ObjectName - The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Lower ObjectBound - The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Names List<Object> - Names of the physical partitions of AmazonRdsForOracle table.
- partition
Upper ObjectBound - The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Column anyName - The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Lower anyBound - The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Names any[] - Names of the physical partitions of AmazonRdsForOracle table.
- partition
Upper anyBound - The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition_
column_ Anyname - The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition_
lower_ Anybound - The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition_
names Sequence[Any] - Names of the physical partitions of AmazonRdsForOracle table.
- partition_
upper_ Anybound - The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Column AnyName - The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Lower AnyBound - The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
- partition
Names List<Any> - Names of the physical partitions of AmazonRdsForOracle table.
- partition
Upper AnyBound - The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
AmazonRdsForOracleSource, AmazonRdsForOracleSourceArgs
- Additional
Columns object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Oracle
Reader objectQuery - AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
- Partition
Option object - The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
- Partition
Settings Pulumi.Azure Native. Data Factory. Inputs. Amazon Rds For Oracle Partition Settings - The settings that will be leveraged for AmazonRdsForOracle source partitioning.
- Query
Timeout object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Source
Retry objectCount - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry objectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Additional
Columns interface{} - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Oracle
Reader interface{}Query - AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
- Partition
Option interface{} - The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
- Partition
Settings AmazonRds For Oracle Partition Settings - The settings that will be leveraged for AmazonRdsForOracle source partitioning.
- Query
Timeout interface{} - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Source
Retry interface{}Count - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Wait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns Object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- oracle
Reader ObjectQuery - AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
- partition
Option Object - The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
- partition
Settings AmazonRds For Oracle Partition Settings - The settings that will be leveraged for AmazonRdsForOracle source partitioning.
- query
Timeout Object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry ObjectCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry ObjectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- oracle
Reader anyQuery - AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
- partition
Option any - The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
- partition
Settings AmazonRds For Oracle Partition Settings - The settings that will be leveraged for AmazonRdsForOracle source partitioning.
- query
Timeout any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry anyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry anyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional_
columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- oracle_
reader_ Anyquery - AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
- partition_
option Any - The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
- partition_
settings AmazonRds For Oracle Partition Settings - The settings that will be leveraged for AmazonRdsForOracle source partitioning.
- query_
timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source_
retry_ Anycount - Source retry count. Type: integer (or Expression with resultType integer).
- source_
retry_ Anywait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- oracle
Reader AnyQuery - AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
- partition
Option Any - The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
- partition
Settings Property Map - The settings that will be leveraged for AmazonRdsForOracle source partitioning.
- query
Timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry AnyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry AnyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
AmazonRdsForOracleSourceResponse, AmazonRdsForOracleSourceResponseArgs
- Additional
Columns object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Oracle
Reader objectQuery - AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
- Partition
Option object - The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
- Partition
Settings Pulumi.Azure Native. Data Factory. Inputs. Amazon Rds For Oracle Partition Settings Response - The settings that will be leveraged for AmazonRdsForOracle source partitioning.
- Query
Timeout object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Source
Retry objectCount - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry objectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Additional
Columns interface{} - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Oracle
Reader interface{}Query - AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
- Partition
Option interface{} - The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
- Partition
Settings AmazonRds For Oracle Partition Settings Response - The settings that will be leveraged for AmazonRdsForOracle source partitioning.
- Query
Timeout interface{} - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Source
Retry interface{}Count - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Wait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns Object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- oracle
Reader ObjectQuery - AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
- partition
Option Object - The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
- partition
Settings AmazonRds For Oracle Partition Settings Response - The settings that will be leveraged for AmazonRdsForOracle source partitioning.
- query
Timeout Object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry ObjectCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry ObjectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- oracle
Reader anyQuery - AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
- partition
Option any - The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
- partition
Settings AmazonRds For Oracle Partition Settings Response - The settings that will be leveraged for AmazonRdsForOracle source partitioning.
- query
Timeout any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry anyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry anyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional_
columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- oracle_
reader_ Anyquery - AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
- partition_
option Any - The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
- partition_
settings AmazonRds For Oracle Partition Settings Response - The settings that will be leveraged for AmazonRdsForOracle source partitioning.
- query_
timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source_
retry_ Anycount - Source retry count. Type: integer (or Expression with resultType integer).
- source_
retry_ Anywait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- oracle
Reader AnyQuery - AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
- partition
Option Any - The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
- partition
Settings Property Map - The settings that will be leveraged for AmazonRdsForOracle source partitioning.
- query
Timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry AnyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry AnyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
AmazonRdsForSqlServerSource, AmazonRdsForSqlServerSourceArgs
- Additional
Columns object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Isolation
Level object - Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Partition
Option object - The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
- Partition
Settings Pulumi.Azure Native. Data Factory. Inputs. Sql Partition Settings - The settings that will be leveraged for Sql source partitioning.
- Produce
Additional objectTypes - Which additional types to produce.
- Query
Timeout object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Source
Retry objectCount - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry objectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Sql
Reader objectQuery - SQL reader query. Type: string (or Expression with resultType string).
- Sql
Reader objectStored Procedure Name - 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).
- Stored
Procedure objectParameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
- Additional
Columns interface{} - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Isolation
Level interface{} - Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Partition
Option interface{} - The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
- Partition
Settings SqlPartition Settings - The settings that will be leveraged for Sql source partitioning.
- Produce
Additional interface{}Types - Which additional types to produce.
- Query
Timeout interface{} - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Source
Retry interface{}Count - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Wait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Sql
Reader interface{}Query - SQL reader query. Type: string (or Expression with resultType string).
- Sql
Reader interface{}Stored Procedure Name - 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).
- Stored
Procedure interface{}Parameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
- additional
Columns Object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- isolation
Level Object - Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- partition
Option Object - The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
- partition
Settings SqlPartition Settings - The settings that will be leveraged for Sql source partitioning.
- produce
Additional ObjectTypes - Which additional types to produce.
- query
Timeout Object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry ObjectCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry ObjectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- sql
Reader ObjectQuery - SQL reader query. Type: string (or Expression with resultType string).
- sql
Reader ObjectStored Procedure Name - 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).
- stored
Procedure ObjectParameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
- additional
Columns any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- isolation
Level any - Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- partition
Option any - The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
- partition
Settings SqlPartition Settings - The settings that will be leveraged for Sql source partitioning.
- produce
Additional anyTypes - Which additional types to produce.
- query
Timeout any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry anyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry anyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- sql
Reader anyQuery - SQL reader query. Type: string (or Expression with resultType string).
- sql
Reader anyStored Procedure Name - 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).
- stored
Procedure anyParameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
- additional_
columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- isolation_
level Any - Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- partition_
option Any - The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
- partition_
settings SqlPartition Settings - The settings that will be leveraged for Sql source partitioning.
- produce_
additional_ Anytypes - Which additional types to produce.
- query_
timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source_
retry_ Anycount - Source retry count. Type: integer (or Expression with resultType integer).
- source_
retry_ Anywait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- sql_
reader_ Anyquery - SQL reader query. Type: string (or Expression with resultType string).
- sql_
reader_ Anystored_ procedure_ name - 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).
- stored_
procedure_ Anyparameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
- additional
Columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- isolation
Level Any - Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- partition
Option Any - The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
- partition
Settings Property Map - The settings that will be leveraged for Sql source partitioning.
- produce
Additional AnyTypes - Which additional types to produce.
- query
Timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry AnyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry AnyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- sql
Reader AnyQuery - SQL reader query. Type: string (or Expression with resultType string).
- sql
Reader AnyStored Procedure Name - 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).
- stored
Procedure AnyParameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
AmazonRdsForSqlServerSourceResponse, AmazonRdsForSqlServerSourceResponseArgs
- Additional
Columns object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Isolation
Level object - Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Partition
Option object - The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
- Partition
Settings Pulumi.Azure Native. Data Factory. Inputs. Sql Partition Settings Response - The settings that will be leveraged for Sql source partitioning.
- Produce
Additional objectTypes - Which additional types to produce.
- Query
Timeout object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Source
Retry objectCount - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry objectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Sql
Reader objectQuery - SQL reader query. Type: string (or Expression with resultType string).
- Sql
Reader objectStored Procedure Name - 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).
- Stored
Procedure objectParameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
- Additional
Columns interface{} - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Isolation
Level interface{} - Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Partition
Option interface{} - The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
- Partition
Settings SqlPartition Settings Response - The settings that will be leveraged for Sql source partitioning.
- Produce
Additional interface{}Types - Which additional types to produce.
- Query
Timeout interface{} - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Source
Retry interface{}Count - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Wait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Sql
Reader interface{}Query - SQL reader query. Type: string (or Expression with resultType string).
- Sql
Reader interface{}Stored Procedure Name - 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).
- Stored
Procedure interface{}Parameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
- additional
Columns Object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- isolation
Level Object - Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- partition
Option Object - The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
- partition
Settings SqlPartition Settings Response - The settings that will be leveraged for Sql source partitioning.
- produce
Additional ObjectTypes - Which additional types to produce.
- query
Timeout Object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry ObjectCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry ObjectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- sql
Reader ObjectQuery - SQL reader query. Type: string (or Expression with resultType string).
- sql
Reader ObjectStored Procedure Name - 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).
- stored
Procedure ObjectParameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
- additional
Columns any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- isolation
Level any - Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- partition
Option any - The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
- partition
Settings SqlPartition Settings Response - The settings that will be leveraged for Sql source partitioning.
- produce
Additional anyTypes - Which additional types to produce.
- query
Timeout any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry anyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry anyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- sql
Reader anyQuery - SQL reader query. Type: string (or Expression with resultType string).
- sql
Reader anyStored Procedure Name - 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).
- stored
Procedure anyParameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
- additional_
columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- isolation_
level Any - Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- partition_
option Any - The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
- partition_
settings SqlPartition Settings Response - The settings that will be leveraged for Sql source partitioning.
- produce_
additional_ Anytypes - Which additional types to produce.
- query_
timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source_
retry_ Anycount - Source retry count. Type: integer (or Expression with resultType integer).
- source_
retry_ Anywait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- sql_
reader_ Anyquery - SQL reader query. Type: string (or Expression with resultType string).
- sql_
reader_ Anystored_ procedure_ name - 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).
- stored_
procedure_ Anyparameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
- additional
Columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- isolation
Level Any - Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- partition
Option Any - The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
- partition
Settings Property Map - The settings that will be leveraged for Sql source partitioning.
- produce
Additional AnyTypes - Which additional types to produce.
- query
Timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- source
Retry AnyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry AnyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- sql
Reader AnyQuery - SQL reader query. Type: string (or Expression with resultType string).
- sql
Reader AnyStored Procedure Name - 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).
- stored
Procedure AnyParameters - Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
AmazonRedshiftSource, AmazonRedshiftSourceArgs
- Additional
Columns object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Query object
- Database query. Type: string (or Expression with resultType string).
- Query
Timeout object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Redshift
Unload Pulumi.Settings Azure Native. Data Factory. Inputs. Redshift Unload Settings - 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.
- Source
Retry objectCount - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry objectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Additional
Columns interface{} - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Query interface{}
- Database query. Type: string (or Expression with resultType string).
- Query
Timeout interface{} - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Redshift
Unload RedshiftSettings Unload Settings - 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.
- Source
Retry interface{}Count - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Wait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns Object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query Object
- Database query. Type: string (or Expression with resultType string).
- query
Timeout Object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- redshift
Unload RedshiftSettings Unload Settings - 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.
- source
Retry ObjectCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry ObjectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query any
- Database query. Type: string (or Expression with resultType string).
- query
Timeout any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- redshift
Unload RedshiftSettings Unload Settings - 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.
- source
Retry anyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry anyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional_
columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query Any
- Database query. Type: string (or Expression with resultType string).
- query_
timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- redshift_
unload_ Redshiftsettings Unload Settings - 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.
- source_
retry_ Anycount - Source retry count. Type: integer (or Expression with resultType integer).
- source_
retry_ Anywait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query Any
- Database query. Type: string (or Expression with resultType string).
- query
Timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- redshift
Unload Property MapSettings - 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.
- source
Retry AnyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry AnyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
AmazonRedshiftSourceResponse, AmazonRedshiftSourceResponseArgs
- Additional
Columns object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Query object
- Database query. Type: string (or Expression with resultType string).
- Query
Timeout object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Redshift
Unload Pulumi.Settings Azure Native. Data Factory. Inputs. Redshift Unload Settings Response - 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.
- Source
Retry objectCount - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry objectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Additional
Columns interface{} - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Query interface{}
- Database query. Type: string (or Expression with resultType string).
- Query
Timeout interface{} - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Redshift
Unload RedshiftSettings Unload Settings Response - 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.
- Source
Retry interface{}Count - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Wait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns Object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query Object
- Database query. Type: string (or Expression with resultType string).
- query
Timeout Object - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- redshift
Unload RedshiftSettings Unload Settings Response - 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.
- source
Retry ObjectCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry ObjectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query any
- Database query. Type: string (or Expression with resultType string).
- query
Timeout any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- redshift
Unload RedshiftSettings Unload Settings Response - 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.
- source
Retry anyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry anyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional_
columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query Any
- Database query. Type: string (or Expression with resultType string).
- query_
timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- redshift_
unload_ Redshiftsettings Unload Settings Response - 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.
- source_
retry_ Anycount - Source retry count. Type: integer (or Expression with resultType integer).
- source_
retry_ Anywait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- additional
Columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- query Any
- Database query. Type: string (or Expression with resultType string).
- query
Timeout Any - Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- redshift
Unload Property MapSettings - 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.
- source
Retry AnyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry AnyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
AmazonS3CompatibleReadSettings, AmazonS3CompatibleReadSettingsArgs
- Delete
Files objectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition objectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List objectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime objectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root objectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Prefix object
- The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
- Recursive object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File objectName - Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder objectPath - Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
- Delete
Files interface{}After Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition interface{}Discovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List interface{}Path - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime interface{}End - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root interface{}Path - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Prefix interface{}
- The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
- Recursive interface{}
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File interface{}Name - Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder interface{}Path - Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files ObjectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition ObjectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List ObjectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime ObjectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root ObjectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Object
- The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
- recursive Object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File ObjectName - Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder ObjectPath - Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files anyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition anyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List anyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime anyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root anyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix any
- The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
- recursive any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File anyName - Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder anyPath - Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
- delete_
files_ Anyafter_ completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable_
partition_ Anydiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file_
list_ Anypath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified_
datetime_ Anyend - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition_
root_ Anypath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Any
- The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard_
file_ Anyname - Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
- wildcard_
folder_ Anypath - Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files AnyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition AnyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List AnyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime AnyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root AnyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Any
- The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File AnyName - Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder AnyPath - Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
AmazonS3CompatibleReadSettingsResponse, AmazonS3CompatibleReadSettingsResponseArgs
- Delete
Files objectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition objectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List objectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime objectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root objectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Prefix object
- The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
- Recursive object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File objectName - Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder objectPath - Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
- Delete
Files interface{}After Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition interface{}Discovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List interface{}Path - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime interface{}End - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root interface{}Path - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Prefix interface{}
- The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
- Recursive interface{}
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File interface{}Name - Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder interface{}Path - Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files ObjectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition ObjectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List ObjectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime ObjectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root ObjectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Object
- The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
- recursive Object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File ObjectName - Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder ObjectPath - Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files anyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition anyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List anyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime anyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root anyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix any
- The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
- recursive any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File anyName - Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder anyPath - Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
- delete_
files_ Anyafter_ completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable_
partition_ Anydiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file_
list_ Anypath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified_
datetime_ Anyend - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition_
root_ Anypath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Any
- The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard_
file_ Anyname - Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
- wildcard_
folder_ Anypath - Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files AnyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition AnyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List AnyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime AnyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root AnyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Any
- The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File AnyName - Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder AnyPath - Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
AmazonS3ReadSettings, AmazonS3ReadSettingsArgs
- Delete
Files objectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition objectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List objectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime objectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root objectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Prefix object
- The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- Recursive object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File objectName - AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder objectPath - AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
- Delete
Files interface{}After Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition interface{}Discovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List interface{}Path - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime interface{}End - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root interface{}Path - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Prefix interface{}
- The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- Recursive interface{}
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File interface{}Name - AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder interface{}Path - AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files ObjectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition ObjectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List ObjectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime ObjectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root ObjectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Object
- The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- recursive Object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File ObjectName - AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder ObjectPath - AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files anyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition anyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List anyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime anyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root anyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix any
- The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- recursive any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File anyName - AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder anyPath - AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
- delete_
files_ Anyafter_ completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable_
partition_ Anydiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file_
list_ Anypath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified_
datetime_ Anyend - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition_
root_ Anypath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Any
- The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard_
file_ Anyname - AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
- wildcard_
folder_ Anypath - AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files AnyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition AnyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List AnyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime AnyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root AnyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Any
- The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File AnyName - AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder AnyPath - AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
AmazonS3ReadSettingsResponse, AmazonS3ReadSettingsResponseArgs
- Delete
Files objectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition objectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List objectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime objectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root objectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Prefix object
- The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- Recursive object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File objectName - AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder objectPath - AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
- Delete
Files interface{}After Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition interface{}Discovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List interface{}Path - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime interface{}End - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root interface{}Path - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Prefix interface{}
- The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- Recursive interface{}
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File interface{}Name - AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder interface{}Path - AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files ObjectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition ObjectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List ObjectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime ObjectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root ObjectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Object
- The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- recursive Object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File ObjectName - AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder ObjectPath - AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files anyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition anyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List anyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime anyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root anyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix any
- The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- recursive any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File anyName - AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder anyPath - AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
- delete_
files_ Anyafter_ completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable_
partition_ Anydiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file_
list_ Anypath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified_
datetime_ Anyend - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition_
root_ Anypath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Any
- The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard_
file_ Anyname - AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
- wildcard_
folder_ Anypath - AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files AnyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition AnyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List AnyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime AnyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root AnyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Any
- The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File AnyName - AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder AnyPath - AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
AppendVariableActivity, AppendVariableActivityArgs
- Name string
- Activity name.
- Depends
On List<Pulumi.Azure Native. Data Factory. Inputs. Activity Dependency> - Activity depends on condition.
- Description string
- Activity description.
- On
Inactive string | Pulumi.Mark As Azure Native. Data Factory. Activity On Inactive Mark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- State
string | Pulumi.
Azure Native. Data Factory. Activity State - Activity state. This is an optional property and if not provided, the state will be Active by default.
- User
Properties List<Pulumi.Azure Native. Data Factory. Inputs. User Property> - Activity user properties.
- Value object
- Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
- Variable
Name string - Name of the variable whose value needs to be appended to.
- Name string
- Activity name.
- Depends
On []ActivityDependency - Activity depends on condition.
- Description string
- Activity description.
- On
Inactive string | ActivityMark As On Inactive Mark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- State
string | Activity
State - Activity state. This is an optional property and if not provided, the state will be Active by default.
- User
Properties []UserProperty - Activity user properties.
- Value interface{}
- Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
- Variable
Name string - Name of the variable whose value needs to be appended to.
- name String
- Activity name.
- depends
On List<ActivityDependency> - Activity depends on condition.
- description String
- Activity description.
- on
Inactive String | ActivityMark As On Inactive Mark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- state
String | Activity
State - Activity state. This is an optional property and if not provided, the state will be Active by default.
- user
Properties List<UserProperty> - Activity user properties.
- value Object
- Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
- variable
Name String - Name of the variable whose value needs to be appended to.
- name string
- Activity name.
- depends
On ActivityDependency[] - Activity depends on condition.
- description string
- Activity description.
- on
Inactive string | ActivityMark As On Inactive Mark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- state
string | Activity
State - Activity state. This is an optional property and if not provided, the state will be Active by default.
- user
Properties UserProperty[] - Activity user properties.
- value any
- Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
- variable
Name string - Name of the variable whose value needs to be appended to.
- name str
- Activity name.
- depends_
on Sequence[ActivityDependency] - Activity depends on condition.
- description str
- Activity description.
- on_
inactive_ str | Activitymark_ as On Inactive Mark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- state
str | Activity
State - Activity state. This is an optional property and if not provided, the state will be Active by default.
- user_
properties Sequence[UserProperty] - Activity user properties.
- value Any
- Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
- variable_
name str - Name of the variable whose value needs to be appended to.
- name String
- Activity name.
- depends
On List<Property Map> - Activity depends on condition.
- description String
- Activity description.
- on
Inactive String | "Succeeded" | "Failed" | "Skipped"Mark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- state String | "Active" | "Inactive"
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- user
Properties List<Property Map> - Activity user properties.
- value Any
- Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
- variable
Name String - Name of the variable whose value needs to be appended to.
AppendVariableActivityResponse, AppendVariableActivityResponseArgs
- Name string
- Activity name.
- Depends
On List<Pulumi.Azure Native. Data Factory. Inputs. Activity Dependency Response> - Activity depends on condition.
- Description string
- Activity description.
- On
Inactive stringMark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- State string
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- User
Properties List<Pulumi.Azure Native. Data Factory. Inputs. User Property Response> - Activity user properties.
- Value object
- Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
- Variable
Name string - Name of the variable whose value needs to be appended to.
- Name string
- Activity name.
- Depends
On []ActivityDependency Response - Activity depends on condition.
- Description string
- Activity description.
- On
Inactive stringMark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- State string
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- User
Properties []UserProperty Response - Activity user properties.
- Value interface{}
- Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
- Variable
Name string - Name of the variable whose value needs to be appended to.
- name String
- Activity name.
- depends
On List<ActivityDependency Response> - Activity depends on condition.
- description String
- Activity description.
- on
Inactive StringMark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- state String
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- user
Properties List<UserProperty Response> - Activity user properties.
- value Object
- Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
- variable
Name String - Name of the variable whose value needs to be appended to.
- name string
- Activity name.
- depends
On ActivityDependency Response[] - Activity depends on condition.
- description string
- Activity description.
- on
Inactive stringMark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- state string
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- user
Properties UserProperty Response[] - Activity user properties.
- value any
- Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
- variable
Name string - Name of the variable whose value needs to be appended to.
- name str
- Activity name.
- depends_
on Sequence[ActivityDependency Response] - Activity depends on condition.
- description str
- Activity description.
- on_
inactive_ strmark_ as - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- state str
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- user_
properties Sequence[UserProperty Response] - Activity user properties.
- value Any
- Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
- variable_
name str - Name of the variable whose value needs to be appended to.
- name String
- Activity name.
- depends
On List<Property Map> - Activity depends on condition.
- description String
- Activity description.
- on
Inactive StringMark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- state String
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- user
Properties List<Property Map> - Activity user properties.
- value Any
- Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
- variable
Name String - Name of the variable whose value needs to be appended to.
AvroSink, AvroSinkArgs
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Format
Settings Pulumi.Azure Native. Data Factory. Inputs. Avro Write Settings - Avro format settings.
- Max
Concurrent objectConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- Sink
Retry objectCount - Sink retry count. Type: integer (or Expression with resultType integer).
- Sink
Retry objectWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Store
Settings Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSWrite Settings Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Write Settings Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Write Settings Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Write Settings Azure | Pulumi.Native. Data Factory. Inputs. File Server Write Settings Azure | Pulumi.Native. Data Factory. Inputs. Lake House Write Settings Azure Native. Data Factory. Inputs. Sftp Write Settings - Avro store settings.
- Write
Batch objectSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- Write
Batch objectTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Format
Settings AvroWrite Settings - Avro format settings.
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- Sink
Retry interface{}Count - Sink retry count. Type: integer (or Expression with resultType integer).
- Sink
Retry interface{}Wait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Store
Settings AzureBlob | AzureFSWrite Settings Blob | AzureStorage Write Settings Data | AzureLake Store Write Settings File | FileStorage Write Settings Server | LakeWrite Settings House | SftpWrite Settings Write Settings - Avro store settings.
- Write
Batch interface{}Size - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- Write
Batch interface{}Timeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- format
Settings AvroWrite Settings - Avro format settings.
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- sink
Retry ObjectCount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink
Retry ObjectWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store
Settings AzureBlob | AzureFSWrite Settings Blob | AzureStorage Write Settings Data | AzureLake Store Write Settings File | FileStorage Write Settings Server | LakeWrite Settings House | SftpWrite Settings Write Settings - Avro store settings.
- write
Batch ObjectSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write
Batch ObjectTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- format
Settings AvroWrite Settings - Avro format settings.
- max
Concurrent anyConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- sink
Retry anyCount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink
Retry anyWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store
Settings AzureBlob | AzureFSWrite Settings Blob | AzureStorage Write Settings Data | AzureLake Store Write Settings File | FileStorage Write Settings Server | LakeWrite Settings House | SftpWrite Settings Write Settings - Avro store settings.
- write
Batch anySize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write
Batch anyTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- format_
settings AvroWrite Settings - Avro format settings.
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- sink_
retry_ Anycount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink_
retry_ Anywait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store_
settings AzureBlob | AzureFSWrite Settings Blob | AzureStorage Write Settings Data | AzureLake Store Write Settings File | FileStorage Write Settings Server | LakeWrite Settings House | SftpWrite Settings Write Settings - Avro store settings.
- write_
batch_ Anysize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write_
batch_ Anytimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- format
Settings Property Map - Avro format settings.
- max
Concurrent AnyConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- sink
Retry AnyCount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink
Retry AnyWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store
Settings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map - Avro store settings.
- write
Batch AnySize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write
Batch AnyTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
AvroSinkResponse, AvroSinkResponseArgs
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Format
Settings Pulumi.Azure Native. Data Factory. Inputs. Avro Write Settings Response - Avro format settings.
- Max
Concurrent objectConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- Sink
Retry objectCount - Sink retry count. Type: integer (or Expression with resultType integer).
- Sink
Retry objectWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Store
Settings Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSWrite Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Write Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Write Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Write Settings Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Write Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Lake House Write Settings Response Azure Native. Data Factory. Inputs. Sftp Write Settings Response - Avro store settings.
- Write
Batch objectSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- Write
Batch objectTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Format
Settings AvroWrite Settings Response - Avro format settings.
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- Sink
Retry interface{}Count - Sink retry count. Type: integer (or Expression with resultType integer).
- Sink
Retry interface{}Wait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Store
Settings AzureBlob | AzureFSWrite Settings Response Blob | AzureStorage Write Settings Response Data | AzureLake Store Write Settings Response File | FileStorage Write Settings Response Server | LakeWrite Settings Response House | SftpWrite Settings Response Write Settings Response - Avro store settings.
- Write
Batch interface{}Size - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- Write
Batch interface{}Timeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- format
Settings AvroWrite Settings Response - Avro format settings.
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- sink
Retry ObjectCount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink
Retry ObjectWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store
Settings AzureBlob | AzureFSWrite Settings Response Blob | AzureStorage Write Settings Response Data | AzureLake Store Write Settings Response File | FileStorage Write Settings Response Server | LakeWrite Settings Response House | SftpWrite Settings Response Write Settings Response - Avro store settings.
- write
Batch ObjectSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write
Batch ObjectTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- format
Settings AvroWrite Settings Response - Avro format settings.
- max
Concurrent anyConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- sink
Retry anyCount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink
Retry anyWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store
Settings AzureBlob | AzureFSWrite Settings Response Blob | AzureStorage Write Settings Response Data | AzureLake Store Write Settings Response File | FileStorage Write Settings Response Server | LakeWrite Settings Response House | SftpWrite Settings Response Write Settings Response - Avro store settings.
- write
Batch anySize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write
Batch anyTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- format_
settings AvroWrite Settings Response - Avro format settings.
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- sink_
retry_ Anycount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink_
retry_ Anywait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store_
settings AzureBlob | AzureFSWrite Settings Response Blob | AzureStorage Write Settings Response Data | AzureLake Store Write Settings Response File | FileStorage Write Settings Response Server | LakeWrite Settings Response House | SftpWrite Settings Response Write Settings Response - Avro store settings.
- write_
batch_ Anysize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write_
batch_ Anytimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- format
Settings Property Map - Avro format settings.
- max
Concurrent AnyConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- sink
Retry AnyCount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink
Retry AnyWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store
Settings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map - Avro store settings.
- write
Batch AnySize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write
Batch AnyTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
AvroSource, AvroSourceArgs
- Additional
Columns object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Source
Retry objectCount - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry objectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Store
Settings Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Read Settings Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Read Settings Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSRead Settings Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Read Settings Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Read Settings Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Read Settings Azure | Pulumi.Native. Data Factory. Inputs. File Server Read Settings Azure | Pulumi.Native. Data Factory. Inputs. Ftp Read Settings Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Read Settings Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Read Settings Azure | Pulumi.Native. Data Factory. Inputs. Http Read Settings Azure | Pulumi.Native. Data Factory. Inputs. Lake House Read Settings Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Read Settings Azure Native. Data Factory. Inputs. Sftp Read Settings - Avro store settings.
- Additional
Columns interface{} - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Count - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Wait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Store
Settings AmazonS3Compatible | AmazonRead Settings S3Read | AzureSettings Blob | AzureFSRead Settings Blob | AzureStorage Read Settings Data | AzureLake Store Read Settings File | FileStorage Read Settings Server | FtpRead Settings Read | GoogleSettings Cloud | HdfsStorage Read Settings Read | HttpSettings Read | LakeSettings House | OracleRead Settings Cloud | SftpStorage Read Settings Read Settings - Avro store settings.
- additional
Columns Object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- source
Retry ObjectCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry ObjectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store
Settings AmazonS3Compatible | AmazonRead Settings S3Read | AzureSettings Blob | AzureFSRead Settings Blob | AzureStorage Read Settings Data | AzureLake Store Read Settings File | FileStorage Read Settings Server | FtpRead Settings Read | GoogleSettings Cloud | HdfsStorage Read Settings Read | HttpSettings Read | LakeSettings House | OracleRead Settings Cloud | SftpStorage Read Settings Read Settings - Avro store settings.
- additional
Columns any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- source
Retry anyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry anyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store
Settings AmazonS3Compatible | AmazonRead Settings S3Read | AzureSettings Blob | AzureFSRead Settings Blob | AzureStorage Read Settings Data | AzureLake Store Read Settings File | FileStorage Read Settings Server | FtpRead Settings Read | GoogleSettings Cloud | HdfsStorage Read Settings Read | HttpSettings Read | LakeSettings House | OracleRead Settings Cloud | SftpStorage Read Settings Read Settings - Avro store settings.
- additional_
columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- source_
retry_ Anycount - Source retry count. Type: integer (or Expression with resultType integer).
- source_
retry_ Anywait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store_
settings AmazonS3Compatible | AmazonRead Settings S3Read | AzureSettings Blob | AzureFSRead Settings Blob | AzureStorage Read Settings Data | AzureLake Store Read Settings File | FileStorage Read Settings Server | FtpRead Settings Read | GoogleSettings Cloud | HdfsStorage Read Settings Read | HttpSettings Read | LakeSettings House | OracleRead Settings Cloud | SftpStorage Read Settings Read Settings - Avro store settings.
- additional
Columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- source
Retry AnyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry AnyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store
Settings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map - Avro store settings.
AvroSourceResponse, AvroSourceResponseArgs
- Additional
Columns object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Source
Retry objectCount - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry objectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Store
Settings Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Read Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Read Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSRead Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Read Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Read Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Read Settings Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Read Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Read Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Read Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Read Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Http Read Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Lake House Read Settings Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Read Settings Response Azure Native. Data Factory. Inputs. Sftp Read Settings Response - Avro store settings.
- Additional
Columns interface{} - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Count - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Wait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Store
Settings AmazonS3Compatible | AmazonRead Settings Response S3Read | AzureSettings Response Blob | AzureFSRead Settings Response Blob | AzureStorage Read Settings Response Data | AzureLake Store Read Settings Response File | FileStorage Read Settings Response Server | FtpRead Settings Response Read | GoogleSettings Response Cloud | HdfsStorage Read Settings Response Read | HttpSettings Response Read | LakeSettings Response House | OracleRead Settings Response Cloud | SftpStorage Read Settings Response Read Settings Response - Avro store settings.
- additional
Columns Object - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- source
Retry ObjectCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry ObjectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store
Settings AmazonS3Compatible | AmazonRead Settings Response S3Read | AzureSettings Response Blob | AzureFSRead Settings Response Blob | AzureStorage Read Settings Response Data | AzureLake Store Read Settings Response File | FileStorage Read Settings Response Server | FtpRead Settings Response Read | GoogleSettings Response Cloud | HdfsStorage Read Settings Response Read | HttpSettings Response Read | LakeSettings Response House | OracleRead Settings Response Cloud | SftpStorage Read Settings Response Read Settings Response - Avro store settings.
- additional
Columns any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- source
Retry anyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry anyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store
Settings AmazonS3Compatible | AmazonRead Settings Response S3Read | AzureSettings Response Blob | AzureFSRead Settings Response Blob | AzureStorage Read Settings Response Data | AzureLake Store Read Settings Response File | FileStorage Read Settings Response Server | FtpRead Settings Response Read | GoogleSettings Response Cloud | HdfsStorage Read Settings Response Read | HttpSettings Response Read | LakeSettings Response House | OracleRead Settings Response Cloud | SftpStorage Read Settings Response Read Settings Response - Avro store settings.
- additional_
columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- source_
retry_ Anycount - Source retry count. Type: integer (or Expression with resultType integer).
- source_
retry_ Anywait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store_
settings AmazonS3Compatible | AmazonRead Settings Response S3Read | AzureSettings Response Blob | AzureFSRead Settings Response Blob | AzureStorage Read Settings Response Data | AzureLake Store Read Settings Response File | FileStorage Read Settings Response Server | FtpRead Settings Response Read | GoogleSettings Response Cloud | HdfsStorage Read Settings Response Read | HttpSettings Response Read | LakeSettings Response House | OracleRead Settings Response Cloud | SftpStorage Read Settings Response Read Settings Response - Avro store settings.
- additional
Columns Any - Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- source
Retry AnyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry AnyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- store
Settings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map - Avro store settings.
AvroWriteSettings, AvroWriteSettingsArgs
- File
Name objectPrefix - Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
- Max
Rows objectPer File - Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- Record
Name string - Top level record name in write result, which is required in AVRO spec.
- Record
Namespace string - Record namespace in the write result.
- File
Name interface{}Prefix - Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
- Max
Rows interface{}Per File - Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- Record
Name string - Top level record name in write result, which is required in AVRO spec.
- Record
Namespace string - Record namespace in the write result.
- file
Name ObjectPrefix - Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
- max
Rows ObjectPer File - Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- record
Name String - Top level record name in write result, which is required in AVRO spec.
- record
Namespace String - Record namespace in the write result.
- file
Name anyPrefix - Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
- max
Rows anyPer File - Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- record
Name string - Top level record name in write result, which is required in AVRO spec.
- record
Namespace string - Record namespace in the write result.
- file_
name_ Anyprefix - Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
- max_
rows_ Anyper_ file - Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- record_
name str - Top level record name in write result, which is required in AVRO spec.
- record_
namespace str - Record namespace in the write result.
- file
Name AnyPrefix - Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
- max
Rows AnyPer File - Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- record
Name String - Top level record name in write result, which is required in AVRO spec.
- record
Namespace String - Record namespace in the write result.
AvroWriteSettingsResponse, AvroWriteSettingsResponseArgs
- File
Name objectPrefix - Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
- Max
Rows objectPer File - Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- Record
Name string - Top level record name in write result, which is required in AVRO spec.
- Record
Namespace string - Record namespace in the write result.
- File
Name interface{}Prefix - Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
- Max
Rows interface{}Per File - Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- Record
Name string - Top level record name in write result, which is required in AVRO spec.
- Record
Namespace string - Record namespace in the write result.
- file
Name ObjectPrefix - Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
- max
Rows ObjectPer File - Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- record
Name String - Top level record name in write result, which is required in AVRO spec.
- record
Namespace String - Record namespace in the write result.
- file
Name anyPrefix - Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
- max
Rows anyPer File - Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- record
Name string - Top level record name in write result, which is required in AVRO spec.
- record
Namespace string - Record namespace in the write result.
- file_
name_ Anyprefix - Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
- max_
rows_ Anyper_ file - Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- record_
name str - Top level record name in write result, which is required in AVRO spec.
- record_
namespace str - Record namespace in the write result.
- file
Name AnyPrefix - Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
- max
Rows AnyPer File - Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- record
Name String - Top level record name in write result, which is required in AVRO spec.
- record
Namespace String - Record namespace in the write result.
AzureBlobFSReadSettings, AzureBlobFSReadSettingsArgs
- Delete
Files objectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition objectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List objectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime objectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root objectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Recursive object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File objectName - Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder objectPath - Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
- Delete
Files interface{}After Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition interface{}Discovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List interface{}Path - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime interface{}End - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root interface{}Path - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Recursive interface{}
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File interface{}Name - Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder interface{}Path - Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files ObjectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition ObjectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List ObjectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime ObjectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root ObjectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- recursive Object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File ObjectName - Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder ObjectPath - Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files anyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition anyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List anyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime anyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root anyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- recursive any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File anyName - Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder anyPath - Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
- delete_
files_ Anyafter_ completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable_
partition_ Anydiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file_
list_ Anypath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified_
datetime_ Anyend - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition_
root_ Anypath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard_
file_ Anyname - Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
- wildcard_
folder_ Anypath - Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files AnyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition AnyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List AnyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime AnyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root AnyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File AnyName - Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder AnyPath - Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
AzureBlobFSReadSettingsResponse, AzureBlobFSReadSettingsResponseArgs
- Delete
Files objectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition objectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List objectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime objectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root objectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Recursive object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File objectName - Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder objectPath - Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
- Delete
Files interface{}After Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition interface{}Discovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List interface{}Path - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime interface{}End - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root interface{}Path - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Recursive interface{}
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File interface{}Name - Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder interface{}Path - Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files ObjectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition ObjectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List ObjectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime ObjectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root ObjectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- recursive Object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File ObjectName - Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder ObjectPath - Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files anyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition anyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List anyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime anyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root anyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- recursive any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File anyName - Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder anyPath - Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
- delete_
files_ Anyafter_ completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable_
partition_ Anydiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file_
list_ Anypath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified_
datetime_ Anyend - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition_
root_ Anypath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard_
file_ Anyname - Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
- wildcard_
folder_ Anypath - Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files AnyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition AnyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List AnyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime AnyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root AnyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File AnyName - Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder AnyPath - Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
AzureBlobFSSink, AzureBlobFSSinkArgs
- Copy
Behavior object - The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- Metadata
List<Pulumi.
Azure Native. Data Factory. Inputs. Metadata Item> - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- Sink
Retry objectCount - Sink retry count. Type: integer (or Expression with resultType integer).
- Sink
Retry objectWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Write
Batch objectSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- Write
Batch objectTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Copy
Behavior interface{} - The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- Metadata
[]Metadata
Item - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- Sink
Retry interface{}Count - Sink retry count. Type: integer (or Expression with resultType integer).
- Sink
Retry interface{}Wait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Write
Batch interface{}Size - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- Write
Batch interface{}Timeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- copy
Behavior Object - The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- metadata
List<Metadata
Item> - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- sink
Retry ObjectCount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink
Retry ObjectWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- write
Batch ObjectSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write
Batch ObjectTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- copy
Behavior any - The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- metadata
Metadata
Item[] - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- sink
Retry anyCount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink
Retry anyWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- write
Batch anySize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write
Batch anyTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- copy_
behavior Any - The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- metadata
Sequence[Metadata
Item] - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- sink_
retry_ Anycount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink_
retry_ Anywait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- write_
batch_ Anysize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write_
batch_ Anytimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- copy
Behavior Any - The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- metadata List<Property Map>
- Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- sink
Retry AnyCount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink
Retry AnyWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- write
Batch AnySize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write
Batch AnyTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
AzureBlobFSSinkResponse, AzureBlobFSSinkResponseArgs
- Copy
Behavior object - The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- Metadata
List<Pulumi.
Azure Native. Data Factory. Inputs. Metadata Item Response> - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- Sink
Retry objectCount - Sink retry count. Type: integer (or Expression with resultType integer).
- Sink
Retry objectWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Write
Batch objectSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- Write
Batch objectTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Copy
Behavior interface{} - The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- Metadata
[]Metadata
Item Response - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- Sink
Retry interface{}Count - Sink retry count. Type: integer (or Expression with resultType integer).
- Sink
Retry interface{}Wait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Write
Batch interface{}Size - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- Write
Batch interface{}Timeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- copy
Behavior Object - The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- metadata
List<Metadata
Item Response> - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- sink
Retry ObjectCount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink
Retry ObjectWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- write
Batch ObjectSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write
Batch ObjectTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- copy
Behavior any - The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- metadata
Metadata
Item Response[] - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- sink
Retry anyCount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink
Retry anyWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- write
Batch anySize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write
Batch anyTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- copy_
behavior Any - The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- metadata
Sequence[Metadata
Item Response] - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- sink_
retry_ Anycount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink_
retry_ Anywait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- write_
batch_ Anysize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write_
batch_ Anytimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- copy
Behavior Any - The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- metadata List<Property Map>
- Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- sink
Retry AnyCount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink
Retry AnyWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- write
Batch AnySize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- write
Batch AnyTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
AzureBlobFSSource, AzureBlobFSSourceArgs
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Recursive object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Skip
Header objectLine Count - Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
- Source
Retry objectCount - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry objectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Treat
Empty objectAs Null - Treat empty as null. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Recursive interface{}
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Skip
Header interface{}Line Count - Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Count - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Wait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Treat
Empty interface{}As Null - Treat empty as null. Type: boolean (or Expression with resultType boolean).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- recursive Object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- skip
Header ObjectLine Count - Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
- source
Retry ObjectCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry ObjectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- treat
Empty ObjectAs Null - Treat empty as null. Type: boolean (or Expression with resultType boolean).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- recursive any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- skip
Header anyLine Count - Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
- source
Retry anyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry anyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- treat
Empty anyAs Null - Treat empty as null. Type: boolean (or Expression with resultType boolean).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- skip_
header_ Anyline_ count - Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
- source_
retry_ Anycount - Source retry count. Type: integer (or Expression with resultType integer).
- source_
retry_ Anywait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- treat_
empty_ Anyas_ null - Treat empty as null. Type: boolean (or Expression with resultType boolean).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- skip
Header AnyLine Count - Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
- source
Retry AnyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry AnyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- treat
Empty AnyAs Null - Treat empty as null. Type: boolean (or Expression with resultType boolean).
AzureBlobFSSourceResponse, AzureBlobFSSourceResponseArgs
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Recursive object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Skip
Header objectLine Count - Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
- Source
Retry objectCount - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry objectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Treat
Empty objectAs Null - Treat empty as null. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Recursive interface{}
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Skip
Header interface{}Line Count - Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Count - Source retry count. Type: integer (or Expression with resultType integer).
- Source
Retry interface{}Wait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Treat
Empty interface{}As Null - Treat empty as null. Type: boolean (or Expression with resultType boolean).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- recursive Object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- skip
Header ObjectLine Count - Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
- source
Retry ObjectCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry ObjectWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- treat
Empty ObjectAs Null - Treat empty as null. Type: boolean (or Expression with resultType boolean).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- recursive any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- skip
Header anyLine Count - Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
- source
Retry anyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry anyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- treat
Empty anyAs Null - Treat empty as null. Type: boolean (or Expression with resultType boolean).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- skip_
header_ Anyline_ count - Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
- source_
retry_ Anycount - Source retry count. Type: integer (or Expression with resultType integer).
- source_
retry_ Anywait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- treat_
empty_ Anyas_ null - Treat empty as null. Type: boolean (or Expression with resultType boolean).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- skip
Header AnyLine Count - Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
- source
Retry AnyCount - Source retry count. Type: integer (or Expression with resultType integer).
- source
Retry AnyWait - Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- treat
Empty AnyAs Null - Treat empty as null. Type: boolean (or Expression with resultType boolean).
AzureBlobFSWriteSettings, AzureBlobFSWriteSettingsArgs
- Block
Size objectIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- Copy
Behavior object - The type of copy behavior for copy sink.
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Metadata
List<Pulumi.
Azure Native. Data Factory. Inputs. Metadata Item> - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- Block
Size interface{}In MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- Copy
Behavior interface{} - The type of copy behavior for copy sink.
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Metadata
[]Metadata
Item - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block
Size ObjectIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy
Behavior Object - The type of copy behavior for copy sink.
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata
List<Metadata
Item> - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block
Size anyIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy
Behavior any - The type of copy behavior for copy sink.
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata
Metadata
Item[] - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block_
size_ Anyin_ mb - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy_
behavior Any - The type of copy behavior for copy sink.
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata
Sequence[Metadata
Item] - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block
Size AnyIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy
Behavior Any - The type of copy behavior for copy sink.
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata List<Property Map>
- Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
AzureBlobFSWriteSettingsResponse, AzureBlobFSWriteSettingsResponseArgs
- Block
Size objectIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- Copy
Behavior object - The type of copy behavior for copy sink.
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Metadata
List<Pulumi.
Azure Native. Data Factory. Inputs. Metadata Item Response> - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- Block
Size interface{}In MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- Copy
Behavior interface{} - The type of copy behavior for copy sink.
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Metadata
[]Metadata
Item Response - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block
Size ObjectIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy
Behavior Object - The type of copy behavior for copy sink.
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata
List<Metadata
Item Response> - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block
Size anyIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy
Behavior any - The type of copy behavior for copy sink.
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata
Metadata
Item Response[] - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block_
size_ Anyin_ mb - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy_
behavior Any - The type of copy behavior for copy sink.
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata
Sequence[Metadata
Item Response] - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block
Size AnyIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy
Behavior Any - The type of copy behavior for copy sink.
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata List<Property Map>
- Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
AzureBlobStorageReadSettings, AzureBlobStorageReadSettingsArgs
- Delete
Files objectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition objectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List objectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime objectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root objectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Prefix object
- The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
- Recursive object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File objectName - Azure blob wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder objectPath - Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
- Delete
Files interface{}After Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition interface{}Discovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List interface{}Path - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime interface{}End - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root interface{}Path - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Prefix interface{}
- The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
- Recursive interface{}
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File interface{}Name - Azure blob wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder interface{}Path - Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files ObjectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition ObjectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List ObjectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime ObjectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root ObjectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Object
- The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
- recursive Object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File ObjectName - Azure blob wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder ObjectPath - Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files anyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition anyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List anyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime anyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root anyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix any
- The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
- recursive any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File anyName - Azure blob wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder anyPath - Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
- delete_
files_ Anyafter_ completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable_
partition_ Anydiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file_
list_ Anypath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified_
datetime_ Anyend - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition_
root_ Anypath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Any
- The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard_
file_ Anyname - Azure blob wildcardFileName. Type: string (or Expression with resultType string).
- wildcard_
folder_ Anypath - Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files AnyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition AnyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List AnyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime AnyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root AnyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Any
- The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File AnyName - Azure blob wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder AnyPath - Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
AzureBlobStorageReadSettingsResponse, AzureBlobStorageReadSettingsResponseArgs
- Delete
Files objectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition objectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List objectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime objectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root objectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Prefix object
- The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
- Recursive object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File objectName - Azure blob wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder objectPath - Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
- Delete
Files interface{}After Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Enable
Partition interface{}Discovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- File
List interface{}Path - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Modified
Datetime interface{}End - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Partition
Root interface{}Path - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- Prefix interface{}
- The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
- Recursive interface{}
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- Wildcard
File interface{}Name - Azure blob wildcardFileName. Type: string (or Expression with resultType string).
- Wildcard
Folder interface{}Path - Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files ObjectAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition ObjectDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List ObjectPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime ObjectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root ObjectPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Object
- The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
- recursive Object
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File ObjectName - Azure blob wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder ObjectPath - Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files anyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition anyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List anyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime anyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root anyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix any
- The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
- recursive any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File anyName - Azure blob wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder anyPath - Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
- delete_
files_ Anyafter_ completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable_
partition_ Anydiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file_
list_ Anypath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified_
datetime_ Anyend - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition_
root_ Anypath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Any
- The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard_
file_ Anyname - Azure blob wildcardFileName. Type: string (or Expression with resultType string).
- wildcard_
folder_ Anypath - Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
- delete
Files AnyAfter Completion - Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- enable
Partition AnyDiscovery - Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
- file
List AnyPath - Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- modified
Datetime AnyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- partition
Root AnyPath - Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
- prefix Any
- The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
- recursive Any
- If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
- wildcard
File AnyName - Azure blob wildcardFileName. Type: string (or Expression with resultType string).
- wildcard
Folder AnyPath - Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
AzureBlobStorageWriteSettings, AzureBlobStorageWriteSettingsArgs
- Block
Size objectIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- Copy
Behavior object - The type of copy behavior for copy sink.
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Metadata
List<Pulumi.
Azure Native. Data Factory. Inputs. Metadata Item> - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- Block
Size interface{}In MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- Copy
Behavior interface{} - The type of copy behavior for copy sink.
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Metadata
[]Metadata
Item - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block
Size ObjectIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy
Behavior Object - The type of copy behavior for copy sink.
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata
List<Metadata
Item> - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block
Size anyIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy
Behavior any - The type of copy behavior for copy sink.
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata
Metadata
Item[] - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block_
size_ Anyin_ mb - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy_
behavior Any - The type of copy behavior for copy sink.
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata
Sequence[Metadata
Item] - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block
Size AnyIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy
Behavior Any - The type of copy behavior for copy sink.
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata List<Property Map>
- Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
AzureBlobStorageWriteSettingsResponse, AzureBlobStorageWriteSettingsResponseArgs
- Block
Size objectIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- Copy
Behavior object - The type of copy behavior for copy sink.
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent objectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Metadata
List<Pulumi.
Azure Native. Data Factory. Inputs. Metadata Item Response> - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- Block
Size interface{}In MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- Copy
Behavior interface{} - The type of copy behavior for copy sink.
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- Metadata
[]Metadata
Item Response - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block
Size ObjectIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy
Behavior Object - The type of copy behavior for copy sink.
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata
List<Metadata
Item Response> - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block
Size anyIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy
Behavior any - The type of copy behavior for copy sink.
- disable
Metrics anyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent anyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata
Metadata
Item Response[] - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block_
size_ Anyin_ mb - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy_
behavior Any - The type of copy behavior for copy sink.
- disable_
metrics_ Anycollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max_
concurrent_ Anyconnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata
Sequence[Metadata
Item Response] - Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
- block
Size AnyIn MB - Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
- copy
Behavior Any - The type of copy behavior for copy sink.
- disable
Metrics AnyCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- max
Concurrent AnyConnections - The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- metadata List<Property Map>
- Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
AzureDataExplorerCommandActivity, AzureDataExplorerCommandActivityArgs
- Command object
- A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
- Name string
- Activity name.
- Command
Timeout object - Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
- Depends
On List<Pulumi.Azure Native. Data Factory. Inputs. Activity Dependency> - Activity depends on condition.
- Description string
- Activity description.
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- On
Inactive string | Pulumi.Mark As Azure Native. Data Factory. Activity On Inactive Mark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- Policy
Pulumi.
Azure Native. Data Factory. Inputs. Activity Policy - Activity policy.
- State
string | Pulumi.
Azure Native. Data Factory. Activity State - Activity state. This is an optional property and if not provided, the state will be Active by default.
- User
Properties List<Pulumi.Azure Native. Data Factory. Inputs. User Property> - Activity user properties.
- Command interface{}
- A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
- Name string
- Activity name.
- Command
Timeout interface{} - Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
- Depends
On []ActivityDependency - Activity depends on condition.
- Description string
- Activity description.
- Linked
Service LinkedName Service Reference - Linked service reference.
- On
Inactive string | ActivityMark As On Inactive Mark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- Policy
Activity
Policy - Activity policy.
- State
string | Activity
State - Activity state. This is an optional property and if not provided, the state will be Active by default.
- User
Properties []UserProperty - Activity user properties.
- command Object
- A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
- name String
- Activity name.
- command
Timeout Object - Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
- depends
On List<ActivityDependency> - Activity depends on condition.
- description String
- Activity description.
- linked
Service LinkedName Service Reference - Linked service reference.
- on
Inactive String | ActivityMark As On Inactive Mark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- policy
Activity
Policy - Activity policy.
- state
String | Activity
State - Activity state. This is an optional property and if not provided, the state will be Active by default.
- user
Properties List<UserProperty> - Activity user properties.
- command any
- A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
- name string
- Activity name.
- command
Timeout any - Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
- depends
On ActivityDependency[] - Activity depends on condition.
- description string
- Activity description.
- linked
Service LinkedName Service Reference - Linked service reference.
- on
Inactive string | ActivityMark As On Inactive Mark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- policy
Activity
Policy - Activity policy.
- state
string | Activity
State - Activity state. This is an optional property and if not provided, the state will be Active by default.
- user
Properties UserProperty[] - Activity user properties.
- command Any
- A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
- name str
- Activity name.
- command_
timeout Any - Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
- depends_
on Sequence[ActivityDependency] - Activity depends on condition.
- description str
- Activity description.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- on_
inactive_ str | Activitymark_ as On Inactive Mark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- policy
Activity
Policy - Activity policy.
- state
str | Activity
State - Activity state. This is an optional property and if not provided, the state will be Active by default.
- user_
properties Sequence[UserProperty] - Activity user properties.
- command Any
- A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
- name String
- Activity name.
- command
Timeout Any - Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
- depends
On List<Property Map> - Activity depends on condition.
- description String
- Activity description.
- linked
Service Property MapName - Linked service reference.
- on
Inactive String | "Succeeded" | "Failed" | "Skipped"Mark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- policy Property Map
- Activity policy.
- state String | "Active" | "Inactive"
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- user
Properties List<Property Map> - Activity user properties.
AzureDataExplorerCommandActivityResponse, AzureDataExplorerCommandActivityResponseArgs
- Command object
- A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
- Name string
- Activity name.
- Command
Timeout object - Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
- Depends
On List<Pulumi.Azure Native. Data Factory. Inputs. Activity Dependency Response> - Activity depends on condition.
- Description string
- Activity description.
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- On
Inactive stringMark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- Policy
Pulumi.
Azure Native. Data Factory. Inputs. Activity Policy Response - Activity policy.
- State string
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- User
Properties List<Pulumi.Azure Native. Data Factory. Inputs. User Property Response> - Activity user properties.
- Command interface{}
- A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
- Name string
- Activity name.
- Command
Timeout interface{} - Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
- Depends
On []ActivityDependency Response - Activity depends on condition.
- Description string
- Activity description.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- On
Inactive stringMark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- Policy
Activity
Policy Response - Activity policy.
- State string
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- User
Properties []UserProperty Response - Activity user properties.
- command Object
- A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
- name String
- Activity name.
- command
Timeout Object - Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
- depends
On List<ActivityDependency Response> - Activity depends on condition.
- description String
- Activity description.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- on
Inactive StringMark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- policy
Activity
Policy Response - Activity policy.
- state String
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- user
Properties List<UserProperty Response> - Activity user properties.
- command any
- A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
- name string
- Activity name.
- command
Timeout any - Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
- depends
On ActivityDependency Response[] - Activity depends on condition.
- description string
- Activity description.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- on
Inactive stringMark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- policy
Activity
Policy Response - Activity policy.
- state string
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- user
Properties UserProperty Response[] - Activity user properties.
- command Any
- A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
- name str
- Activity name.
- command_
timeout Any - Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
- depends_
on Sequence[ActivityDependency Response] - Activity depends on condition.
- description str
- Activity description.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- on_
inactive_ strmark_ as - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- policy
Activity
Policy Response - Activity policy.
- state str
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- user_
properties Sequence[UserProperty Response] - Activity user properties.
- command Any
- A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
- name String
- Activity name.
- command
Timeout Any - Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
- depends
On List<Property Map> - Activity depends on condition.
- description String
- Activity description.
- linked
Service Property MapName - Linked service reference.
- on
Inactive StringMark As - Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
- policy Property Map
- Activity policy.
- state String
- Activity state. This is an optional property and if not provided, the state will be Active by default.
- user
Properties List<Property Map> - Activity user properties.
AzureDataExplorerSink, AzureDataExplorerSinkArgs
- Disable
Metrics objectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Flush
Immediately object - If set to true, any aggregation will be skipped. Default is false. Type: boolean.
- Ingestion
Mapping objectAs Json - An explicit column mapping description provided in a json format. Type: string.
- Ingestion
Mapping objectName - A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
- Max
Concurrent objectConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- Sink
Retry objectCount - Sink retry count. Type: integer (or Expression with resultType integer).
- Sink
Retry objectWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Write
Batch objectSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- Write
Batch objectTimeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Disable
Metrics interface{}Collection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- Flush
Immediately interface{} - If set to true, any aggregation will be skipped. Default is false. Type: boolean.
- Ingestion
Mapping interface{}As Json - An explicit column mapping description provided in a json format. Type: string.
- Ingestion
Mapping interface{}Name - A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
- Max
Concurrent interface{}Connections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- Sink
Retry interface{}Count - Sink retry count. Type: integer (or Expression with resultType integer).
- Sink
Retry interface{}Wait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- Write
Batch interface{}Size - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
- Write
Batch interface{}Timeout - Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- disable
Metrics ObjectCollection - If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- flush
Immediately Object - If set to true, any aggregation will be skipped. Default is false. Type: boolean.
- ingestion
Mapping ObjectAs Json - An explicit column mapping description provided in a json format. Type: string.
- ingestion
Mapping ObjectName - A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
- max
Concurrent ObjectConnections - The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
- sink
Retry ObjectCount - Sink retry count. Type: integer (or Expression with resultType integer).
- sink
Retry ObjectWait - Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
- write
Batch ObjectSize - Write batch size. Ty