Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
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:[email protected]:Azure/azure-libraries-for-java.git</connection>
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url>
<connection>scm:git:[email protected]: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