Exemple #1
0
 /// <summary>
 /// <para>Starts the upgrade for the compose deployment identified by the deployment name, in the cluster.</para>
 /// </summary>
 public static Task UpgradeComposeDeploymentAsync(
     this FabricClient.ComposeDeploymentClient client,
     ComposeDeploymentUpgradeDescription upgradeDescription,
     TimeSpan timeout,
     CancellationToken cancellationToken)
 {
     return(client.UpgradeComposeDeploymentAsync(upgradeDescription.ToWrapper(), timeout, cancellationToken));
 }
Exemple #2
0
 /// <summary>
 /// <para>Starts the upgrade for the compose deployment identified by the deployment name, in the cluster.</para>
 /// </summary>
 public static Task UpgradeComposeDeploymentAsync(
     this FabricClient.ComposeDeploymentClient client,
     ComposeDeploymentUpgradeDescription upgradeDescription)
 {
     return(client.UpgradeComposeDeploymentAsync(upgradeDescription.ToWrapper()));
 }