Skip to content

Commit

Permalink
Generated from 29f7e884c155175b8b69f17643f04a626643a519
Browse files Browse the repository at this point in the history
add network 18 11
  • Loading branch information
SDK Automation committed Oct 19, 2020
1 parent 9c1576e commit 5a91fce
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 16 deletions.
8 changes: 4 additions & 4 deletions sdk/network/arm-network/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11618,12 +11618,12 @@ export interface HubRouteTable extends SubResource {
* List of all connections associated with this route table.
* **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly associatedConnections?: SubResource[];
readonly associatedConnections?: string[];
/**
* List of all connections that advertise to this route table.
* **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly propagatingConnections?: SubResource[];
readonly propagatingConnections?: string[];
/**
* The provisioning state of the RouteTable resource. Possible values include: 'Succeeded',
* 'Updating', 'Deleting', 'Failed'
Expand Down Expand Up @@ -12169,7 +12169,7 @@ export interface VirtualHubEffectiveRoute {
/**
* EffectiveRoutes List.
*/
export interface VirtualHubEffectiveRouteEffectiveRouteList {
export interface VirtualHubEffectiveRouteList {
/**
* The list of effective routes configured on the virtual hub or the specified resource.
*/
Expand All @@ -12183,7 +12183,7 @@ export interface EffectiveRoutesParameters {
/**
* The resource whose effective routes are being requested.
*/
resourceId?: Resource;
resourceId?: string;
/**
* The type of the specified resource like RouteTable, ExpressRouteConnection,
* HubVirtualNetworkConnection, VpnConnection and P2SConnection.
Expand Down
15 changes: 6 additions & 9 deletions sdk/network/arm-network/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19656,8 +19656,7 @@ export const HubRouteTable: msRest.CompositeMapper = {
name: "Sequence",
element: {
type: {
name: "Composite",
className: "SubResource"
name: "String"
}
}
}
Expand All @@ -19669,8 +19668,7 @@ export const HubRouteTable: msRest.CompositeMapper = {
name: "Sequence",
element: {
type: {
name: "Composite",
className: "SubResource"
name: "String"
}
}
}
Expand Down Expand Up @@ -20615,11 +20613,11 @@ export const VirtualHubEffectiveRoute: msRest.CompositeMapper = {
}
};

export const VirtualHubEffectiveRouteEffectiveRouteList: msRest.CompositeMapper = {
serializedName: "VirtualHubEffectiveRouteEffectiveRouteList",
export const VirtualHubEffectiveRouteList: msRest.CompositeMapper = {
serializedName: "VirtualHubEffectiveRouteList",
type: {
name: "Composite",
className: "VirtualHubEffectiveRouteEffectiveRouteList",
className: "VirtualHubEffectiveRouteList",
modelProperties: {
value: {
serializedName: "value",
Expand All @@ -20646,8 +20644,7 @@ export const EffectiveRoutesParameters: msRest.CompositeMapper = {
resourceId: {
serializedName: "resourceId",
type: {
name: "Composite",
className: "Resource"
name: "String"
}
},
virtualWanResourceType: {
Expand Down
4 changes: 1 addition & 3 deletions sdk/network/arm-network/src/operations/natGateways.ts
Original file line number Diff line number Diff line change
Expand Up @@ -427,9 +427,7 @@ const beginCreateOrUpdateOperationSpec: msRest.OperationSpec = {
201: {
bodyMapper: Mappers.NatGateway
},
202: {
bodyMapper: Mappers.NatGateway
},
202: {},
default: {
bodyMapper: Mappers.CloudError
}
Expand Down

0 comments on commit 5a91fce

Please sign in to comment.