Skip to content

Commit

Permalink
Generated from 5f17a1c59bce27b14512aa3b408dcf4fc7ef73bd (#2391)
Browse files Browse the repository at this point in the history
Updated NetworkConfigurationDiagnostic API + example
  • Loading branch information
AutorestCI authored Sep 14, 2018
1 parent 6de3bc5 commit 9923c2f
Show file tree
Hide file tree
Showing 114 changed files with 2,606 additions and 4,288 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 @@ -11,15 +11,15 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>0.0.3-beta</version>
<version>0.0.2-beta</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>azure-mgmt-network</artifactId>
<version>1.0.0-beta</version>
<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-sdk-for-java</url>
<url>https://github.com/Azure/azure-libraries-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-sdk-for-java</url>
<connection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</connection>
<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>
<tag>HEAD</tag>
</scm>
<properties>
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,6 @@ 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 @@ -124,8 +121,6 @@ interface WithNetworkWatcher {
interface WithDestination {
/**
* Specifies destination.
* @param destination the destination parameter value
* @return the next definition stage
*/
WithSource withDestination(ConnectionMonitorDestination destination);
}
Expand All @@ -136,8 +131,6 @@ interface WithDestination {
interface WithSource {
/**
* Specifies source.
* @param source the source parameter value
* @return the next definition stage
*/
WithCreate withSource(ConnectionMonitorSource source);
}
Expand All @@ -148,8 +141,6 @@ 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 @@ -160,8 +151,6 @@ interface WithAutoStart {
interface WithLocation {
/**
* Specifies location.
* @param location Connection monitor location
* @return the next definition stage
*/
WithCreate withLocation(String location);
}
Expand All @@ -172,8 +161,6 @@ interface WithLocation {
interface WithMonitoringIntervalInSeconds {
/**
* Specifies monitoringIntervalInSeconds.
* @param monitoringIntervalInSeconds Monitoring interval in seconds
* @return the next definition stage
*/
WithCreate withMonitoringIntervalInSeconds(Integer monitoringIntervalInSeconds);
}
Expand All @@ -184,8 +171,6 @@ 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 @@ -214,8 +199,6 @@ 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 @@ -226,8 +209,6 @@ interface WithAutoStart {
interface WithLocation {
/**
* Specifies location.
* @param location Connection monitor location
* @return the next update stage
*/
Update withLocation(String location);
}
Expand All @@ -238,8 +219,6 @@ interface WithLocation {
interface WithMonitoringIntervalInSeconds {
/**
* Specifies monitoringIntervalInSeconds.
* @param monitoringIntervalInSeconds Monitoring interval in seconds
* @return the next update stage
*/
Update withMonitoringIntervalInSeconds(Integer monitoringIntervalInSeconds);
}
Expand All @@ -250,8 +229,6 @@ 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 9923c2f

Please sign in to comment.