-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mgmt, appservice, support async deploy with deployment ID (#26375)
- Loading branch information
1 parent
ba79b1f
commit e9a73a8
Showing
8 changed files
with
258 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
...rvice/src/main/java/com/azure/resourcemanager/appservice/models/KuduDeploymentResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
package com.azure.resourcemanager.appservice.models; | ||
|
||
/** | ||
* Result of Kudu deployment. | ||
*/ | ||
public final class KuduDeploymentResult { | ||
|
||
private final String deploymentId; | ||
|
||
/** | ||
* Creates a KuduDeploymentResult instance. | ||
* | ||
* @param deploymentId the deployment ID. | ||
*/ | ||
public KuduDeploymentResult(String deploymentId) { | ||
this.deploymentId = deploymentId; | ||
} | ||
|
||
/** | ||
* @return the deployment ID. It can be {@code null} if tracking deployment is disabled. | ||
*/ | ||
public String deploymentId() { | ||
return deploymentId; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.