File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
packages_generated/interlink/src/v1beta1 Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ export const unmarshalPop = (data: unknown): Pop => {
164164 address : data . address ,
165165 availableLinkBandwidthsMbps : data . available_link_bandwidths_mbps ,
166166 city : data . city ,
167+ displayName : data . display_name ,
167168 hostingProviderName : data . hosting_provider_name ,
168169 id : data . id ,
169170 logoUrl : data . logo_url ,
Original file line number Diff line number Diff line change @@ -311,6 +311,10 @@ export interface Pop {
311311 * Available bandwidth in Mbits/s for future hosted links from available connections in this PoP.
312312 */
313313 availableLinkBandwidthsMbps : number [ ]
314+ /**
315+ * Pretty name of the PoP. Includes name, hosting provider and location information (ex: Paris - TeleHouse TH2).
316+ */
317+ displayName : string
314318 /**
315319 * Region of the PoP.
316320 */
Original file line number Diff line number Diff line change @@ -99,6 +99,9 @@ export const Pop = {
9999 city : {
100100 minLength : 1 ,
101101 } ,
102+ displayName : {
103+ minLength : 1 ,
104+ } ,
102105 hostingProviderName : {
103106 minLength : 1 ,
104107 } ,
You can’t perform that action at this time.
0 commit comments