Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@
"title": "Connection Arguments",
"$ref": "../connectionBasicType.json#/definitions/connectionArguments"
},
"containerName": {
"title": "Container Name",
"description": "Container Name of the data source.",
"type": "string",
"default": ""
},
"containerFilterPattern": {
"description": "Regex to only fetch containers that matches the pattern.",
"$ref": "../../../../type/filterPattern.json#/definitions/filterPattern",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2385,6 +2385,10 @@ export interface Connection {
* Regex to only fetch containers that matches the pattern.
*/
containerFilterPattern?: FilterPattern;
/**
* Container Name of the data source.
*/
containerName?: string;
/**
* Connection Timeout in Seconds
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ export interface Connection {
* Custom storage service type
*/
type?: StorageServiceType;
/**
* Container Name of the data source.
*/
containerName?: string;
/**
* Azure Credentials
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5403,6 +5403,10 @@ export interface Connection {
* Regex to only fetch containers that matches the pattern.
*/
containerFilterPattern?: FilterPattern;
/**
* Container Name of the data source.
*/
containerName?: string;
/**
* Connection Timeout in Seconds
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2267,6 +2267,10 @@ export interface Connection {
* Regex to only fetch containers that matches the pattern.
*/
containerFilterPattern?: FilterPattern;
/**
* Container Name of the data source.
*/
containerName?: string;
/**
* Connection Timeout in Seconds
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2949,6 +2949,10 @@ export interface Connection {
* Regex to only fetch containers that matches the pattern.
*/
containerFilterPattern?: FilterPattern;
/**
* Container Name of the data source.
*/
containerName?: string;
/**
* Connection Timeout in Seconds
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2257,6 +2257,10 @@ export interface Connection {
* Regex to only fetch containers that matches the pattern.
*/
containerFilterPattern?: FilterPattern;
/**
* Container Name of the data source.
*/
containerName?: string;
/**
* Connection Timeout in Seconds
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ export interface AdlsConnection {
* Regex to only fetch containers that matches the pattern.
*/
containerFilterPattern?: FilterPattern;
/**
* Container Name of the data source.
*/
containerName?: string;
/**
* Azure Credentials
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5933,6 +5933,10 @@ export interface Connection {
* Regex to only fetch containers that matches the pattern.
*/
containerFilterPattern?: FilterPattern;
/**
* Container Name of the data source.
*/
containerName?: string;
/**
* Connection Timeout in Seconds
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6064,6 +6064,10 @@ export interface Connection {
* Regex to only fetch containers that matches the pattern.
*/
containerFilterPattern?: FilterPattern;
/**
* Container Name of the data source.
*/
containerName?: string;
/**
* Connection Timeout in Seconds
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,10 @@ export interface Connection {
* Custom storage service type
*/
type?: StorageServiceType;
/**
* Container Name of the data source.
*/
containerName?: string;
/**
* Azure Credentials
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2355,6 +2355,10 @@ export interface Connection {
* Regex to only fetch containers that matches the pattern.
*/
containerFilterPattern?: FilterPattern;
/**
* Container Name of the data source.
*/
containerName?: string;
/**
* Connection Timeout in Seconds
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2346,6 +2346,10 @@ export interface Connection {
* Regex to only fetch containers that matches the pattern.
*/
containerFilterPattern?: FilterPattern;
/**
* Container Name of the data source.
*/
containerName?: string;
/**
* Connection Timeout in Seconds
*/
Expand Down
Loading