Skip to content

Commit

Permalink
Release 1.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Azure-Fluent committed Jan 14, 2020
1 parent 1c09ea9 commit d1bf8af
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 20 deletions.
39 changes: 21 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@ languages:
- java
products:
- azure
description: "Getting Started with Network - Manage Network Peering In Same Subscription - in Java"
urlFragment: network-java-manage-network-peering
extensions:
- services: virtual-network
- platforms: java
---

# Manage Network Peering In Same Subscription (Java)
# Getting Started with Network - Manage Network Peering In Same Subscription - in Java #

Azure Network sample for enabling and updating network peering between two virtual networks.

## Summary

Azure Network sample for enabling and updating network peering between two virtual networks

Summary ...

- This sample creates two virtual networks in the same subscription and then peers them, modifying various options on the peering.

## Details
Details ...

1. Create two virtual networks, network "A" and network "B"...
- network A with two subnets
Expand All @@ -37,8 +39,7 @@ Azure Network sample for enabling and updating network peering between two virtu
4. Delete the peering
- the removal of the peering takes place on both networks, as long as they are in the same subscription

## Notes

Notes:
- Once a peering is created, it cannot be pointed at another remote network later.
- The address spaces of the peered networks cannot be changed as long as the networks are peered.
- Gateway transit scenarios as well as peering networks in different subscriptions are possible but beyond the scope of this sample.
Expand All @@ -49,22 +50,24 @@ Azure Network sample for enabling and updating network peering between two virtu
to modify each peering separately, which becomes required when working with networks in different subscriptions.


## Running this sample
## Running this Sample ##

To run this sample:

Set the environment variable `AZURE_AUTH_LOCATION` with the full path for an auth file. See [how to create an auth file](https://github.com/Azure/azure-libraries-for-java/blob/master/AUTH.md).

```bash
git clone https://github.com/Azure-Samples/network-java-manage-network-peering.git
cd network-java-manage-network-peering
mvn clean compile exec:java
```
git clone https://github.com/Azure-Samples/network-java-manage-network-peering.git

## More information
cd network-java-manage-network-peering

mvn clean compile exec:java

## More information ##

[http://azure.com/java](http://azure.com/java)

If you don't have a Microsoft Azure subscription you can get a FREE trial account [here](http://go.microsoft.com/fwlink/?LinkId=330212).
If you don't have a Microsoft Azure subscription you can get a FREE trial account [here](http://go.microsoft.com/fwlink/?LinkId=330212)

---

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.
12 changes: 11 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,22 @@
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure</artifactId>
<version>1.24.1</version>
<version>1.30.0</version>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.3</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.7</version>
</dependency>
</dependencies>
</project>
21 changes: 20 additions & 1 deletion src/main/java/com/microsoft/azure/management/samples/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -739,6 +739,24 @@ public static void print(LoadBalancer resource) {
}
}

// Show HTTPS probes
info.append("\n\tHTTPS probes: ")
.append(resource.httpsProbes().size());
for (LoadBalancerHttpProbe probe : resource.httpsProbes().values()) {
info.append("\n\t\tProbe name: ").append(probe.name())
.append("\n\t\t\tPort: ").append(probe.port())
.append("\n\t\t\tInterval in seconds: ").append(probe.intervalInSeconds())
.append("\n\t\t\tRetries before unhealthy: ").append(probe.numberOfProbes())
.append("\n\t\t\tHTTPS request path: ").append(probe.requestPath());

// Show associated load balancing rules
info.append("\n\t\t\tReferenced from load balancing rules: ")
.append(probe.loadBalancingRules().size());
for (LoadBalancingRule rule : probe.loadBalancingRules().values()) {
info.append("\n\t\t\t\tName: ").append(rule.name());
}
}

// Show load balancing rules
info.append("\n\tLoad balancing rules: ")
.append(resource.loadBalancingRules().size());
Expand Down Expand Up @@ -994,7 +1012,7 @@ public static void print(AppServicePlan resource) {
*/
public static void print(WebAppBase resource) {
StringBuilder builder = new StringBuilder().append("Web app: ").append(resource.id())
.append("Name: ").append(resource.name())
.append("\n\tName: ").append(resource.name())
.append("\n\tState: ").append(resource.state())
.append("\n\tResource group: ").append(resource.resourceGroupName())
.append("\n\tRegion: ").append(resource.region())
Expand Down Expand Up @@ -1377,6 +1395,7 @@ public static String createRandomName(String namePrefix) {
*/
public static void createCertificate(String certPath, String pfxPath,
String alias, String password, String cnName) throws Exception {
SdkContext.prepareFileLocation(new File(pfxPath), new File(certPath));
if (new File(pfxPath).exists()) {
return;
}
Expand Down

0 comments on commit d1bf8af

Please sign in to comment.