Skip to content

Commit 0ad627c

Browse files
author
SDK Automation
committed
Update from master
1 parent 46f02c1 commit 0ad627c

18 files changed

+376
-117
lines changed

sdk/network/mgmt-v2019_07_01/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<parent>
1212
<groupId>com.microsoft.azure</groupId>
1313
<artifactId>azure-arm-parent</artifactId>
14-
<version>1.2.0</version>
15-
<relativePath>../../parents/azure-arm-parent</relativePath>
14+
<version>1.1.0</version>
15+
<relativePath>../../../pom.management.xml</relativePath>
1616
</parent>
1717
<artifactId>azure-mgmt-network</artifactId>
1818
<version>1.0.0-beta</version>

sdk/network/mgmt-v2019_07_01/src/main/java/com/microsoft/azure/management/network/v2019_07_01/PrivateLinkServiceConnectionState.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ public class PrivateLinkServiceConnectionState {
3232
* A message indicating if changes on the service provider require any
3333
* updates on the consumer.
3434
*/
35-
@JsonProperty(value = "actionRequired")
36-
private String actionRequired;
35+
@JsonProperty(value = "actionsRequired")
36+
private String actionsRequired;
3737

3838
/**
3939
* Get indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
@@ -78,20 +78,20 @@ public PrivateLinkServiceConnectionState withDescription(String description) {
7878
/**
7979
* Get a message indicating if changes on the service provider require any updates on the consumer.
8080
*
81-
* @return the actionRequired value
81+
* @return the actionsRequired value
8282
*/
83-
public String actionRequired() {
84-
return this.actionRequired;
83+
public String actionsRequired() {
84+
return this.actionsRequired;
8585
}
8686

8787
/**
8888
* Set a message indicating if changes on the service provider require any updates on the consumer.
8989
*
90-
* @param actionRequired the actionRequired value to set
90+
* @param actionsRequired the actionsRequired value to set
9191
* @return the PrivateLinkServiceConnectionState object itself.
9292
*/
93-
public PrivateLinkServiceConnectionState withActionRequired(String actionRequired) {
94-
this.actionRequired = actionRequired;
93+
public PrivateLinkServiceConnectionState withActionsRequired(String actionsRequired) {
94+
this.actionsRequired = actionsRequired;
9595
return this;
9696
}
9797

sdk/network/mgmt-v2019_07_01/src/main/java/com/microsoft/azure/management/network/v2019_07_01/implementation/ApplicationGatewaysImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,13 @@ public ApplicationGateway call(ApplicationGatewayInner inner) {
106106
@Override
107107
public PagedList<ApplicationGateway> list() {
108108
ApplicationGatewaysInner client = this.inner();
109-
return this.wrapList(client.listAll());
109+
return this.wrapList(client.list());
110110
}
111111

112112
@Override
113113
public Observable<ApplicationGateway> listAsync() {
114114
ApplicationGatewaysInner client = this.inner();
115-
return client.listAllAsync()
115+
return client.listAsync()
116116
.flatMapIterable(new Func1<Page<ApplicationGatewayInner>, Iterable<ApplicationGatewayInner>>() {
117117
@Override
118118
public Iterable<ApplicationGatewayInner> call(Page<ApplicationGatewayInner> page) {

sdk/network/mgmt-v2019_07_01/src/main/java/com/microsoft/azure/management/network/v2019_07_01/implementation/ApplicationGatewaysInner.java

Lines changed: 36 additions & 37 deletions
Large diffs are not rendered by default.

sdk/network/mgmt-v2019_07_01/src/main/java/com/microsoft/azure/management/network/v2019_07_01/implementation/ConnectionMonitorsInner.java

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@
3535
import rx.Observable;
3636
import com.microsoft.azure.LongRunningFinalState;
3737
import com.microsoft.azure.LongRunningOperationOptions;
38-
import com.microsoft.azure.LongRunningFinalState;
39-
import com.microsoft.azure.LongRunningOperationOptions;
4038

4139
/**
4240
* An instance of this class provides access to all the operations defined
@@ -195,7 +193,7 @@ public Observable<ServiceResponse<ConnectionMonitorResultInner>> createOrUpdateW
195193
throw new IllegalArgumentException("Parameter parameters is required and cannot be null.");
196194
}
197195
Validator.validate(parameters);
198-
final String apiVersion = "2019-06-01";
196+
final String apiVersion = "2019-07-01";
199197
Observable<Response<ResponseBody>> observable = service.createOrUpdate(resourceGroupName, networkWatcherName, connectionMonitorName, this.client.subscriptionId(), parameters, apiVersion, this.client.acceptLanguage(), this.client.userAgent());
200198
return client.getAzureClient().getPutOrPatchResultAsync(observable, new TypeToken<ConnectionMonitorResultInner>() { }.getType());
201199
}
@@ -277,7 +275,7 @@ public Observable<ServiceResponse<ConnectionMonitorResultInner>> beginCreateOrUp
277275
throw new IllegalArgumentException("Parameter parameters is required and cannot be null.");
278276
}
279277
Validator.validate(parameters);
280-
final String apiVersion = "2019-06-01";
278+
final String apiVersion = "2019-07-01";
281279
return service.beginCreateOrUpdate(resourceGroupName, networkWatcherName, connectionMonitorName, this.client.subscriptionId(), parameters, apiVersion, this.client.acceptLanguage(), this.client.userAgent())
282280
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<ConnectionMonitorResultInner>>>() {
283281
@Override
@@ -369,7 +367,7 @@ public Observable<ServiceResponse<ConnectionMonitorResultInner>> getWithServiceR
369367
if (this.client.subscriptionId() == null) {
370368
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
371369
}
372-
final String apiVersion = "2019-06-01";
370+
final String apiVersion = "2019-07-01";
373371
return service.get(resourceGroupName, networkWatcherName, connectionMonitorName, this.client.subscriptionId(), apiVersion, this.client.acceptLanguage(), this.client.userAgent())
374372
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<ConnectionMonitorResultInner>>>() {
375373
@Override
@@ -459,7 +457,7 @@ public Observable<ServiceResponse<Void>> deleteWithServiceResponseAsync(String r
459457
if (this.client.subscriptionId() == null) {
460458
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
461459
}
462-
final String apiVersion = "2019-06-01";
460+
final String apiVersion = "2019-07-01";
463461
Observable<Response<ResponseBody>> observable = service.delete(resourceGroupName, networkWatcherName, connectionMonitorName, this.client.subscriptionId(), apiVersion, this.client.acceptLanguage(), this.client.userAgent());
464462
return client.getAzureClient().getPostOrDeleteResultAsync(observable, new TypeToken<Void>() { }.getType());
465463
}
@@ -532,7 +530,7 @@ public Observable<ServiceResponse<Void>> beginDeleteWithServiceResponseAsync(Str
532530
if (this.client.subscriptionId() == null) {
533531
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
534532
}
535-
final String apiVersion = "2019-06-01";
533+
final String apiVersion = "2019-07-01";
536534
return service.beginDelete(resourceGroupName, networkWatcherName, connectionMonitorName, this.client.subscriptionId(), apiVersion, this.client.acceptLanguage(), this.client.userAgent())
537535
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Void>>>() {
538536
@Override
@@ -624,7 +622,7 @@ public Observable<ServiceResponse<ConnectionMonitorResultInner>> updateTagsWithS
624622
if (this.client.subscriptionId() == null) {
625623
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
626624
}
627-
final String apiVersion = "2019-06-01";
625+
final String apiVersion = "2019-07-01";
628626
final Map<String, String> tags = null;
629627
TagsObject parameters = new TagsObject();
630628
parameters.withTags(null);
@@ -716,7 +714,7 @@ public Observable<ServiceResponse<ConnectionMonitorResultInner>> updateTagsWithS
716714
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
717715
}
718716
Validator.validate(tags);
719-
final String apiVersion = "2019-06-01";
717+
final String apiVersion = "2019-07-01";
720718
TagsObject parameters = new TagsObject();
721719
parameters.withTags(tags);
722720
return service.updateTags(resourceGroupName, networkWatcherName, connectionMonitorName, this.client.subscriptionId(), apiVersion, this.client.acceptLanguage(), parameters, this.client.userAgent())
@@ -808,7 +806,7 @@ public Observable<ServiceResponse<Void>> stopWithServiceResponseAsync(String res
808806
if (this.client.subscriptionId() == null) {
809807
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
810808
}
811-
final String apiVersion = "2019-06-01";
809+
final String apiVersion = "2019-07-01";
812810
Observable<Response<ResponseBody>> observable = service.stop(resourceGroupName, networkWatcherName, connectionMonitorName, this.client.subscriptionId(), apiVersion, this.client.acceptLanguage(), this.client.userAgent());
813811
return client.getAzureClient().getPostOrDeleteResultAsync(observable, new LongRunningOperationOptions().withFinalStateVia(LongRunningFinalState.LOCATION), new TypeToken<Void>() { }.getType());
814812
}
@@ -881,7 +879,7 @@ public Observable<ServiceResponse<Void>> beginStopWithServiceResponseAsync(Strin
881879
if (this.client.subscriptionId() == null) {
882880
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
883881
}
884-
final String apiVersion = "2019-06-01";
882+
final String apiVersion = "2019-07-01";
885883
return service.beginStop(resourceGroupName, networkWatcherName, connectionMonitorName, this.client.subscriptionId(), apiVersion, this.client.acceptLanguage(), this.client.userAgent())
886884
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Void>>>() {
887885
@Override
@@ -972,7 +970,7 @@ public Observable<ServiceResponse<Void>> startWithServiceResponseAsync(String re
972970
if (this.client.subscriptionId() == null) {
973971
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
974972
}
975-
final String apiVersion = "2019-06-01";
973+
final String apiVersion = "2019-07-01";
976974
Observable<Response<ResponseBody>> observable = service.start(resourceGroupName, networkWatcherName, connectionMonitorName, this.client.subscriptionId(), apiVersion, this.client.acceptLanguage(), this.client.userAgent());
977975
return client.getAzureClient().getPostOrDeleteResultAsync(observable, new LongRunningOperationOptions().withFinalStateVia(LongRunningFinalState.LOCATION), new TypeToken<Void>() { }.getType());
978976
}
@@ -1045,7 +1043,7 @@ public Observable<ServiceResponse<Void>> beginStartWithServiceResponseAsync(Stri
10451043
if (this.client.subscriptionId() == null) {
10461044
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
10471045
}
1048-
final String apiVersion = "2019-06-01";
1046+
final String apiVersion = "2019-07-01";
10491047
return service.beginStart(resourceGroupName, networkWatcherName, connectionMonitorName, this.client.subscriptionId(), apiVersion, this.client.acceptLanguage(), this.client.userAgent())
10501048
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Void>>>() {
10511049
@Override
@@ -1137,7 +1135,7 @@ public Observable<ServiceResponse<ConnectionMonitorQueryResultInner>> queryWithS
11371135
if (this.client.subscriptionId() == null) {
11381136
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
11391137
}
1140-
final String apiVersion = "2019-06-01";
1138+
final String apiVersion = "2019-07-01";
11411139
Observable<Response<ResponseBody>> observable = service.query(resourceGroupName, networkWatcherName, connectionMonitorName, this.client.subscriptionId(), apiVersion, this.client.acceptLanguage(), this.client.userAgent());
11421140
return client.getAzureClient().getPostOrDeleteResultAsync(observable, new LongRunningOperationOptions().withFinalStateVia(LongRunningFinalState.LOCATION), new TypeToken<ConnectionMonitorQueryResultInner>() { }.getType());
11431141
}
@@ -1211,7 +1209,7 @@ public Observable<ServiceResponse<ConnectionMonitorQueryResultInner>> beginQuery
12111209
if (this.client.subscriptionId() == null) {
12121210
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
12131211
}
1214-
final String apiVersion = "2019-06-01";
1212+
final String apiVersion = "2019-07-01";
12151213
return service.beginQuery(resourceGroupName, networkWatcherName, connectionMonitorName, this.client.subscriptionId(), apiVersion, this.client.acceptLanguage(), this.client.userAgent())
12161214
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<ConnectionMonitorQueryResultInner>>>() {
12171215
@Override
@@ -1296,7 +1294,7 @@ public Observable<ServiceResponse<List<ConnectionMonitorResultInner>>> listWithS
12961294
if (this.client.subscriptionId() == null) {
12971295
throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null.");
12981296
}
1299-
final String apiVersion = "2019-06-01";
1297+
final String apiVersion = "2019-07-01";
13001298
return service.list(resourceGroupName, networkWatcherName, this.client.subscriptionId(), apiVersion, this.client.acceptLanguage(), this.client.userAgent())
13011299
.flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<List<ConnectionMonitorResultInner>>>>() {
13021300
@Override

sdk/network/mgmt-v2019_07_01/src/main/java/com/microsoft/azure/management/network/v2019_07_01/implementation/ExpressRouteCircuitsInner.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@
4343
import rx.Observable;
4444
import com.microsoft.azure.LongRunningFinalState;
4545
import com.microsoft.azure.LongRunningOperationOptions;
46-
import com.microsoft.azure.LongRunningFinalState;
47-
import com.microsoft.azure.LongRunningOperationOptions;
4846

4947
/**
5048
* An instance of this class provides access to all the operations defined

sdk/network/mgmt-v2019_07_01/src/main/java/com/microsoft/azure/management/network/v2019_07_01/implementation/ExpressRouteCrossConnectionsInner.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@
4141
import rx.Observable;
4242
import com.microsoft.azure.LongRunningFinalState;
4343
import com.microsoft.azure.LongRunningOperationOptions;
44-
import com.microsoft.azure.LongRunningFinalState;
45-
import com.microsoft.azure.LongRunningOperationOptions;
4644

4745
/**
4846
* An instance of this class provides access to all the operations defined

sdk/network/mgmt-v2019_07_01/src/main/java/com/microsoft/azure/management/network/v2019_07_01/implementation/NetworkInterfacesInner.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@
4343
import rx.Observable;
4444
import com.microsoft.azure.LongRunningFinalState;
4545
import com.microsoft.azure.LongRunningOperationOptions;
46-
import com.microsoft.azure.LongRunningFinalState;
47-
import com.microsoft.azure.LongRunningOperationOptions;
4846

4947
/**
5048
* An instance of this class provides access to all the operations defined

sdk/network/mgmt-v2019_07_01/src/main/java/com/microsoft/azure/management/network/v2019_07_01/implementation/NetworkManagementClientImpl.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
import com.microsoft.azure.AzureClient;
1313
import com.microsoft.azure.AzureServiceClient;
1414
import com.microsoft.azure.CloudException;
15+
import com.microsoft.azure.LongRunningFinalState;
16+
import com.microsoft.azure.LongRunningOperationOptions;
1517
import com.microsoft.azure.management.network.v2019_07_01.ErrorException;
1618
import com.microsoft.rest.credentials.ServiceClientCredentials;
1719
import com.microsoft.rest.RestClient;

sdk/network/mgmt-v2019_07_01/src/main/java/com/microsoft/azure/management/network/v2019_07_01/implementation/NetworkWatchersInner.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@
5151
import rx.Observable;
5252
import com.microsoft.azure.LongRunningFinalState;
5353
import com.microsoft.azure.LongRunningOperationOptions;
54-
import com.microsoft.azure.LongRunningFinalState;
55-
import com.microsoft.azure.LongRunningOperationOptions;
5654

5755
/**
5856
* An instance of this class provides access to all the operations defined

0 commit comments

Comments
 (0)