Skip to content

Commit 66f15c1

Browse files
author
SDK Automation
committed
Generated from f623ead25fe62ba910864d808ca10c144d6ac036
Fixed prettier warning
1 parent d2dcfad commit 66f15c1

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

sdk/network/mgmt-v2020_04_01/src/main/java/com/microsoft/azure/management/network/v2020_04_01/HubRouteTable.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import com.microsoft.azure.arm.resources.models.HasManager;
1919
import com.microsoft.azure.management.network.v2020_04_01.implementation.NetworkManager;
2020
import java.util.List;
21+
import com.microsoft.azure.SubResource;
2122

2223
/**
2324
* Type representing HubRouteTable.
@@ -26,7 +27,7 @@ public interface HubRouteTable extends HasInner<HubRouteTableInner>, Indexable,
2627
/**
2728
* @return the associatedConnections value.
2829
*/
29-
List<String> associatedConnections();
30+
List<SubResource> associatedConnections();
3031

3132
/**
3233
* @return the etag value.
@@ -51,7 +52,7 @@ public interface HubRouteTable extends HasInner<HubRouteTableInner>, Indexable,
5152
/**
5253
* @return the propagatingConnections value.
5354
*/
54-
List<String> propagatingConnections();
55+
List<SubResource> propagatingConnections();
5556

5657
/**
5758
* @return the provisioningState value.

sdk/network/mgmt-v2020_04_01/src/main/java/com/microsoft/azure/management/network/v2020_04_01/implementation/HubRouteTableImpl.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import rx.Observable;
1414
import java.util.List;
1515
import com.microsoft.azure.management.network.v2020_04_01.HubRoute;
16+
import com.microsoft.azure.SubResource;
1617
import com.microsoft.azure.management.network.v2020_04_01.ProvisioningState;
1718

1819
class HubRouteTableImpl extends CreatableUpdatableImpl<HubRouteTable, HubRouteTableInner, HubRouteTableImpl> implements HubRouteTable, HubRouteTable.Definition, HubRouteTable.Update {
@@ -73,7 +74,7 @@ public boolean isInCreateMode() {
7374

7475

7576
@Override
76-
public List<String> associatedConnections() {
77+
public List<SubResource> associatedConnections() {
7778
return this.inner().associatedConnections();
7879
}
7980

@@ -98,7 +99,7 @@ public String name() {
9899
}
99100

100101
@Override
101-
public List<String> propagatingConnections() {
102+
public List<SubResource> propagatingConnections() {
102103
return this.inner().propagatingConnections();
103104
}
104105

sdk/network/mgmt-v2020_04_01/src/main/java/com/microsoft/azure/management/network/v2020_04_01/implementation/HubRouteTableInner.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010

1111
import java.util.List;
1212
import com.microsoft.azure.management.network.v2020_04_01.HubRoute;
13+
import com.microsoft.azure.SubResource;
1314
import com.microsoft.azure.management.network.v2020_04_01.ProvisioningState;
1415
import com.fasterxml.jackson.annotation.JsonProperty;
1516
import com.microsoft.rest.serializer.JsonFlatten;
16-
import com.microsoft.azure.SubResource;
1717

1818
/**
1919
* RouteTable resource in a virtual hub.
@@ -36,13 +36,13 @@ public class HubRouteTableInner extends SubResource {
3636
* List of all connections associated with this route table.
3737
*/
3838
@JsonProperty(value = "properties.associatedConnections", access = JsonProperty.Access.WRITE_ONLY)
39-
private List<String> associatedConnections;
39+
private List<SubResource> associatedConnections;
4040

4141
/**
4242
* List of all connections that advertise to this route table.
4343
*/
4444
@JsonProperty(value = "properties.propagatingConnections", access = JsonProperty.Access.WRITE_ONLY)
45-
private List<String> propagatingConnections;
45+
private List<SubResource> propagatingConnections;
4646

4747
/**
4848
* The provisioning state of the RouteTable resource. Possible values
@@ -115,7 +115,7 @@ public HubRouteTableInner withLabels(List<String> labels) {
115115
*
116116
* @return the associatedConnections value
117117
*/
118-
public List<String> associatedConnections() {
118+
public List<SubResource> associatedConnections() {
119119
return this.associatedConnections;
120120
}
121121

@@ -124,7 +124,7 @@ public List<String> associatedConnections() {
124124
*
125125
* @return the propagatingConnections value
126126
*/
127-
public List<String> propagatingConnections() {
127+
public List<SubResource> propagatingConnections() {
128128
return this.propagatingConnections;
129129
}
130130

0 commit comments

Comments
 (0)