Skip to content

Commit 027c46d

Browse files
author
SDK Automation
committed
Generated from aec204648b387c3a8adcba28e1516149b5dcca7c
added x-ms-client-flatten to HopLink.properties.properties
1 parent 467e279 commit 027c46d

File tree

5 files changed

+199
-1
lines changed

5 files changed

+199
-1
lines changed

sdk/network/arm-network/src/models/connectionMonitorsMappers.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ export {
145145
FlowLog,
146146
FlowLogFormatParameters,
147147
FrontendIPConfiguration,
148+
HopLink,
148149
HTTPHeader,
149150
HubIPAddresses,
150151
HubRoute,

sdk/network/arm-network/src/models/index.ts

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7013,6 +7013,52 @@ export interface ConnectivityIssue {
70137013
readonly context?: { [propertyName: string]: string }[];
70147014
}
70157015

7016+
/**
7017+
* Hop link.
7018+
*/
7019+
export interface HopLink {
7020+
/**
7021+
* The ID of the next hop.
7022+
* **NOTE: This property will not be serialized. It can only be populated by the server.**
7023+
*/
7024+
readonly nextHopId?: string;
7025+
/**
7026+
* Link type.
7027+
* **NOTE: This property will not be serialized. It can only be populated by the server.**
7028+
*/
7029+
readonly linkType?: string;
7030+
/**
7031+
* Minimum roundtrip time in milliseconds.
7032+
* **NOTE: This property will not be serialized. It can only be populated by the server.**
7033+
*/
7034+
readonly roundTripTimeMin?: number;
7035+
/**
7036+
* Average roundtrip time in milliseconds.
7037+
* **NOTE: This property will not be serialized. It can only be populated by the server.**
7038+
*/
7039+
readonly roundTripTimeAvg?: number;
7040+
/**
7041+
* Maximum roundtrip time in milliseconds.
7042+
* **NOTE: This property will not be serialized. It can only be populated by the server.**
7043+
*/
7044+
readonly roundTripTimeMax?: number;
7045+
/**
7046+
* List of issues.
7047+
* **NOTE: This property will not be serialized. It can only be populated by the server.**
7048+
*/
7049+
readonly issues?: ConnectivityIssue[];
7050+
/**
7051+
* Provides additional context on the issue.
7052+
* **NOTE: This property will not be serialized. It can only be populated by the server.**
7053+
*/
7054+
readonly context?: { [propertyName: string]: string }[];
7055+
/**
7056+
* Resource ID.
7057+
* **NOTE: This property will not be serialized. It can only be populated by the server.**
7058+
*/
7059+
readonly resourceId?: string;
7060+
}
7061+
70167062
/**
70177063
* Information about a hop between the source and the destination.
70187064
*/
@@ -7042,6 +7088,21 @@ export interface ConnectivityHop {
70427088
* **NOTE: This property will not be serialized. It can only be populated by the server.**
70437089
*/
70447090
readonly nextHopIds?: string[];
7091+
/**
7092+
* List of previous hop identifiers.
7093+
* **NOTE: This property will not be serialized. It can only be populated by the server.**
7094+
*/
7095+
readonly previousHopIds?: string[];
7096+
/**
7097+
* List of hop links.
7098+
* **NOTE: This property will not be serialized. It can only be populated by the server.**
7099+
*/
7100+
readonly links?: HopLink[];
7101+
/**
7102+
* List of previous hop links.
7103+
* **NOTE: This property will not be serialized. It can only be populated by the server.**
7104+
*/
7105+
readonly previousLinks?: HopLink[];
70457106
/**
70467107
* List of issues.
70477108
* **NOTE: This property will not be serialized. It can only be populated by the server.**
@@ -10921,6 +10982,10 @@ export interface P2SVpnGateway extends Resource {
1092110982
* **NOTE: This property will not be serialized. It can only be populated by the server.**
1092210983
*/
1092310984
readonly vpnClientConnectionHealth?: VpnClientConnectionHealth;
10985+
/**
10986+
* List of all customer specified DNS servers IP addresses.
10987+
*/
10988+
customDnsServers?: string[];
1092410989
/**
1092510990
* A unique read-only string that changes whenever the resource is updated.
1092610991
* **NOTE: This property will not be serialized. It can only be populated by the server.**

sdk/network/arm-network/src/models/mappers.ts

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11753,6 +11753,88 @@ export const ConnectivityIssue: msRest.CompositeMapper = {
1175311753
}
1175411754
};
1175511755

11756+
export const HopLink: msRest.CompositeMapper = {
11757+
serializedName: "HopLink",
11758+
type: {
11759+
name: "Composite",
11760+
className: "HopLink",
11761+
modelProperties: {
11762+
nextHopId: {
11763+
readOnly: true,
11764+
serializedName: "nextHopId",
11765+
type: {
11766+
name: "String"
11767+
}
11768+
},
11769+
linkType: {
11770+
readOnly: true,
11771+
serializedName: "linkType",
11772+
type: {
11773+
name: "String"
11774+
}
11775+
},
11776+
roundTripTimeMin: {
11777+
readOnly: true,
11778+
serializedName: "properties.roundTripTimeMin",
11779+
type: {
11780+
name: "Number"
11781+
}
11782+
},
11783+
roundTripTimeAvg: {
11784+
readOnly: true,
11785+
serializedName: "properties.roundTripTimeAvg",
11786+
type: {
11787+
name: "Number"
11788+
}
11789+
},
11790+
roundTripTimeMax: {
11791+
readOnly: true,
11792+
serializedName: "properties.roundTripTimeMax",
11793+
type: {
11794+
name: "Number"
11795+
}
11796+
},
11797+
issues: {
11798+
readOnly: true,
11799+
serializedName: "issues",
11800+
type: {
11801+
name: "Sequence",
11802+
element: {
11803+
type: {
11804+
name: "Composite",
11805+
className: "ConnectivityIssue"
11806+
}
11807+
}
11808+
}
11809+
},
11810+
context: {
11811+
readOnly: true,
11812+
serializedName: "context",
11813+
type: {
11814+
name: "Sequence",
11815+
element: {
11816+
type: {
11817+
name: "Dictionary",
11818+
value: {
11819+
type: {
11820+
name: "String"
11821+
}
11822+
}
11823+
}
11824+
}
11825+
}
11826+
},
11827+
resourceId: {
11828+
readOnly: true,
11829+
serializedName: "resourceId",
11830+
type: {
11831+
name: "String"
11832+
}
11833+
}
11834+
}
11835+
}
11836+
};
11837+
1175611838
export const ConnectivityHop: msRest.CompositeMapper = {
1175711839
serializedName: "ConnectivityHop",
1175811840
type: {
@@ -11799,6 +11881,44 @@ export const ConnectivityHop: msRest.CompositeMapper = {
1179911881
}
1180011882
}
1180111883
},
11884+
previousHopIds: {
11885+
readOnly: true,
11886+
serializedName: "previousHopIds",
11887+
type: {
11888+
name: "Sequence",
11889+
element: {
11890+
type: {
11891+
name: "String"
11892+
}
11893+
}
11894+
}
11895+
},
11896+
links: {
11897+
readOnly: true,
11898+
serializedName: "links",
11899+
type: {
11900+
name: "Sequence",
11901+
element: {
11902+
type: {
11903+
name: "Composite",
11904+
className: "HopLink"
11905+
}
11906+
}
11907+
}
11908+
},
11909+
previousLinks: {
11910+
readOnly: true,
11911+
serializedName: "previousLinks",
11912+
type: {
11913+
name: "Sequence",
11914+
element: {
11915+
type: {
11916+
name: "Composite",
11917+
className: "HopLink"
11918+
}
11919+
}
11920+
}
11921+
},
1180211922
issues: {
1180311923
readOnly: true,
1180411924
serializedName: "issues",
@@ -18445,6 +18565,17 @@ export const P2SVpnGateway: msRest.CompositeMapper = {
1844518565
className: "VpnClientConnectionHealth"
1844618566
}
1844718567
},
18568+
customDnsServers: {
18569+
serializedName: "properties.customDnsServers",
18570+
type: {
18571+
name: "Sequence",
18572+
element: {
18573+
type: {
18574+
name: "String"
18575+
}
18576+
}
18577+
}
18578+
},
1844818579
etag: {
1844918580
readOnly: true,
1845018581
serializedName: "etag",

sdk/network/arm-network/src/models/networkWatchersMappers.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ export {
159159
FlowLogInformation,
160160
FlowLogStatusParameters,
161161
FrontendIPConfiguration,
162+
HopLink,
162163
HTTPConfiguration,
163164
HTTPHeader,
164165
HubIPAddresses,

sdk/network/arm-network/src/models/parameters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const apiVersion0: msRest.OperationQueryParameter = {
2626
required: true,
2727
isConstant: true,
2828
serializedName: "api-version",
29-
defaultValue: '2020-04-01',
29+
defaultValue: '2020-05-01',
3030
type: {
3131
name: "String"
3232
}

0 commit comments

Comments
 (0)