Transactions: Data source selection¶
This page mirrors the Data source selection section from Transactions.
CreateDataSource¶
Source file, signature, and docstring
Member
TransactionBuilder.CreateDataSource(string dataSourceName)
Kind function
Declaring Type TransactionBuilder
Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs
Signature
Docstring
Creates or adds the configured data source entry on the current Runner transaction builder instance.
Use this method when working with the documented Runner transaction builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
CreateDataSourcePattern¶
Source file, signature, and docstring
Member
TransactionBuilder.CreateDataSourcePattern(string dataSourcePattern)
Kind function
Declaring Type TransactionBuilder
Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs
Signature
Docstring
Creates or adds the configured data source pattern entry on the current Runner transaction builder instance.
Use this method when working with the documented Runner transaction builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
ReadDataSources¶
Source file, signature, and docstring
Member
TransactionBuilder.ReadDataSources()
Kind function
Declaring Type TransactionBuilder
Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs
Signature
Docstring
Returns the configured data sources currently stored on the Runner transaction builder instance.
Use this method when working with the documented Runner transaction builder API surface in code. Use it to inspect the current configured state without rebuilding the surrounding collection or runtime object graph.
UpdateDataSource¶
Source file, signature, and docstring
Member
TransactionBuilder.UpdateDataSource(string existingValue, string newValue)
Kind function
Declaring Type TransactionBuilder
Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs
Signature
Docstring
Updates the configured data source stored on the current Runner transaction builder instance.
Use this method when working with the documented Runner transaction builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
DeleteDataSource¶
Source file, signature, and docstring
Member
TransactionBuilder.DeleteDataSource(string dataSourceName)
Kind function
Declaring Type TransactionBuilder
Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs
Signature
Docstring
Removes the configured data source from the current Runner transaction builder instance.
Use this method when working with the documented Runner transaction builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
ReadDataSourcePatterns¶
Source file, signature, and docstring
Member
TransactionBuilder.ReadDataSourcePatterns()
Kind function
Declaring Type TransactionBuilder
Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs
Signature
Docstring
Returns the configured data source patterns currently stored on the Runner transaction builder instance.
Use this method when working with the documented Runner transaction builder API surface in code. Use it to inspect the current configured state without rebuilding the surrounding collection or runtime object graph.
UpdateDataSourcePattern¶
Source file, signature, and docstring
Member
TransactionBuilder.UpdateDataSourcePattern(string existingValue, string newValue)
Kind function
Declaring Type TransactionBuilder
Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs
Signature
Docstring
Updates the configured data source pattern stored on the current Runner transaction builder instance.
Use this method when working with the documented Runner transaction builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
DeleteDataSourcePattern¶
Source file, signature, and docstring
Member
TransactionBuilder.DeleteDataSourcePattern(string dataSourcePattern)
Kind function
Declaring Type TransactionBuilder
Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs
Signature
Docstring
Removes the configured data source pattern from the current Runner transaction builder instance.
Use this method when working with the documented Runner transaction builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.