Skip to content

Commit

Permalink
Regenerate network with 2018-06-01 added (#2288)
Browse files Browse the repository at this point in the history
  • Loading branch information
jianghaolu authored Jul 31, 2018
1 parent c848d53 commit baffd63
Show file tree
Hide file tree
Showing 668 changed files with 20,976 additions and 3,102 deletions.
8 changes: 4 additions & 4 deletions network/resource-manager/v2017_10_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<packaging>jar</packaging>
<name>Microsoft Azure SDK for Network Management</name>
<description>This package contains Microsoft Network Management SDK.</description>
<url>https://github.com/Azure/azure-libraries-for-java</url>
<url>https://github.com/Azure/azure-sdk-for-java</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
Expand All @@ -28,8 +28,8 @@
</license>
</licenses>
<scm>
<url>scm:git:https://github.com/Azure/azure-libraries-for-java</url>
<connection>scm:git:git@github.com:Azure/azure-libraries-for-java.git</connection>
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url>
<connection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</connection>
<tag>HEAD</tag>
</scm>
<properties>
Expand Down Expand Up @@ -130,4 +130,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ interface Blank extends WithNetworkWatcher {
interface WithNetworkWatcher {
/**
* Specifies resourceGroupName, networkWatcherName.
* @param resourceGroupName The name of the resource group containing Network Watcher
* @param networkWatcherName The name of the Network Watcher resource
* @return the next definition stage
*/
WithDestination withExistingNetworkWatcher(String resourceGroupName, String networkWatcherName);
}
Expand All @@ -121,6 +124,8 @@ interface WithNetworkWatcher {
interface WithDestination {
/**
* Specifies destination.
* @param destination the destination parameter value
* @return the next definition stage
*/
WithSource withDestination(ConnectionMonitorDestination destination);
}
Expand All @@ -131,6 +136,8 @@ interface WithDestination {
interface WithSource {
/**
* Specifies source.
* @param source the source parameter value
* @return the next definition stage
*/
WithCreate withSource(ConnectionMonitorSource source);
}
Expand All @@ -141,6 +148,8 @@ interface WithSource {
interface WithAutoStart {
/**
* Specifies autoStart.
* @param autoStart Determines if the connection monitor will start automatically once created
* @return the next definition stage
*/
WithCreate withAutoStart(Boolean autoStart);
}
Expand All @@ -151,6 +160,8 @@ interface WithAutoStart {
interface WithLocation {
/**
* Specifies location.
* @param location Connection monitor location
* @return the next definition stage
*/
WithCreate withLocation(String location);
}
Expand All @@ -161,6 +172,8 @@ interface WithLocation {
interface WithMonitoringIntervalInSeconds {
/**
* Specifies monitoringIntervalInSeconds.
* @param monitoringIntervalInSeconds Monitoring interval in seconds
* @return the next definition stage
*/
WithCreate withMonitoringIntervalInSeconds(Integer monitoringIntervalInSeconds);
}
Expand All @@ -171,6 +184,8 @@ interface WithMonitoringIntervalInSeconds {
interface WithTags {
/**
* Specifies tags.
* @param tags Connection monitor tags
* @return the next definition stage
*/
WithCreate withTags(Map<String, String> tags);
}
Expand Down Expand Up @@ -199,6 +214,8 @@ interface UpdateStages {
interface WithAutoStart {
/**
* Specifies autoStart.
* @param autoStart Determines if the connection monitor will start automatically once created
* @return the next update stage
*/
Update withAutoStart(Boolean autoStart);
}
Expand All @@ -209,6 +226,8 @@ interface WithAutoStart {
interface WithLocation {
/**
* Specifies location.
* @param location Connection monitor location
* @return the next update stage
*/
Update withLocation(String location);
}
Expand All @@ -219,6 +238,8 @@ interface WithLocation {
interface WithMonitoringIntervalInSeconds {
/**
* Specifies monitoringIntervalInSeconds.
* @param monitoringIntervalInSeconds Monitoring interval in seconds
* @return the next update stage
*/
Update withMonitoringIntervalInSeconds(Integer monitoringIntervalInSeconds);
}
Expand All @@ -229,6 +250,8 @@ interface WithMonitoringIntervalInSeconds {
interface WithTags {
/**
* Specifies tags.
* @param tags Connection monitor tags
* @return the next update stage
*/
Update withTags(Map<String, String> tags);
}
Expand Down
Loading

0 comments on commit baffd63

Please sign in to comment.