forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Azure#1123 from martinsawicki/compute-2017-03-netw…
…ork-2017-08-regen moving GatewayUse enum outside NetworkPeering
- Loading branch information
Showing
4 changed files
with
42 additions
and
35 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
26 changes: 26 additions & 0 deletions
26
...etwork/src/main/java/com/microsoft/azure/management/network/NetworkPeeringGatewayUse.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,26 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
*/ | ||
package com.microsoft.azure.management.network; | ||
|
||
/** | ||
* Possible gateway use scenarios. | ||
*/ | ||
public enum NetworkPeeringGatewayUse { | ||
/** | ||
* The remote network is allowed to use this network's gateway (but not necessarily using it currently). | ||
*/ | ||
BY_REMOTE_NETWORK, | ||
|
||
/** | ||
* This network is configured to use the remote network's gateway. | ||
*/ | ||
ON_REMOTE_NETWORK, | ||
|
||
/** | ||
* No gateway use is configured. | ||
*/ | ||
NONE | ||
} |
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