Metodo DeployUpdate
Updates the specified model with the contents of the supplied package.
Spazio dei nomi Microsoft.MasterDataServices.Deployment
Assembly: Microsoft.MasterDataServices.Deployment (in Microsoft.MasterDataServices.Deployment.dll)
Sintassi
'Dichiarazione
Public Function DeployUpdate ( _
package As Package, _
includeData As Boolean, _
targetVersion As Identifier _
) As Warnings
'Utilizzo
Dim instance As ModelDeployer
Dim package As Package
Dim includeData As Boolean
Dim targetVersion As Identifier
Dim returnValue As Warnings
returnValue = instance.DeployUpdate(package, _
includeData, targetVersion)
public Warnings DeployUpdate(
Package package,
bool includeData,
Identifier targetVersion
)
public:
Warnings^ DeployUpdate(
Package^ package,
bool includeData,
Identifier^ targetVersion
)
member DeployUpdate :
package:Package *
includeData:bool *
targetVersion:Identifier -> Warnings
public function DeployUpdate(
package : Package,
includeData : boolean,
targetVersion : Identifier
) : Warnings
Parametri
- package
Tipo: Microsoft.MasterDataServices.Deployment. . :: . .Package
The Package object to deploy.
- includeData
Tipo: System. . :: . .Boolean
If true, deploys the master data in the package (if present); otherwise, false.
- targetVersion
Tipo: Microsoft.MasterDataServices.Services.DataContracts. . :: . .Identifier
Version into which the data is inserted (if included). Can be nullNothingnullptrunitriferimento Null (Nothing in Visual Basic). if includeData is false.
Valore restituito
Tipo: Microsoft.MasterDataServices.Deployment. . :: . .Warnings
The collection of identifiers of data batches in the staging area, if data is deployed.
Osservazioni
DeployUpdate throws ArgumentNullException if the package parameter is null Nothing nullptr unit riferimento Null (Nothing in Visual Basic). or if the targetVersion parameter is null Nothing nullptr unit riferimento Null (Nothing in Visual Basic). and the includeData parameter is true.
DeployUpdate throws DeploymentException if an error occurred that was not service-related.
DeployUpdate throws DeploymentOperationException if errors were returned from a service call while rolling back after a failure.
DeployUpdate throws ServiceAdapterException if errors were returned from a service call.
Vedere anche