ModelDeployer.DeployNew Method (Package, String, Identifier)
Creates a new model from the supplied deployment package, with new identifiers and a new name.
Namespace: Microsoft.MasterDataServices.Deployment
Assembly: Microsoft.MasterDataServices.Deployment (in Microsoft.MasterDataServices.Deployment.dll)
Syntax
public Warnings DeployNew(
Package package,
string modelName,
out Identifier newModelId
)
public:
Warnings^ DeployNew(
Package^ package,
String^ modelName,
[OutAttribute] Identifier^% newModelId
)
member DeployNew :
package:Package *
modelName:string *
newModelId:Identifier byref -> Warnings
Public Function DeployNew (
package As Package,
modelName As String,
<OutAttribute> ByRef newModelId As Identifier
) As Warnings
Parameters
package
Type: Microsoft.MasterDataServices.Deployment.PackageThe Package object to deploy.
modelName
Type: System.StringThe name of the new model.
newModelId
Type: Microsoft.MasterDataServices.Services.DataContracts.IdentifierThe identifier of the newly created model.
Return Value
Type: Microsoft.MasterDataServices.Deployment.Warnings
An instance of Warnings that contains the collections of objects to be treated as warnings.
Remarks
DeployNew throws ArgumentNullException if the package or modelName parameter is null.
DeployNew throws DeploymentException if an error occurred that was not service-related.
DeployNew throws DeploymentOperationException if errors were returned from a service call while rolling back after a failure.
DeployNew throws ServiceAdapterException if errors were returned from a service call.
See Also
ModelDeployer Class
Microsoft.MasterDataServices.Deployment Namespace
Return to top