Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ export const unmarshalPop = (data: unknown): Pop => {
address: data.address,
availableLinkBandwidthsMbps: data.available_link_bandwidths_mbps,
city: data.city,
displayName: data.display_name,
hostingProviderName: data.hosting_provider_name,
id: data.id,
logoUrl: data.logo_url,
Expand Down
4 changes: 4 additions & 0 deletions packages_generated/interlink/src/v1beta1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,10 @@ export interface Pop {
* Available bandwidth in Mbits/s for future hosted links from available connections in this PoP.
*/
availableLinkBandwidthsMbps: number[]
/**
* Pretty name of the PoP. Includes name, hosting provider and location information (ex: Paris - TeleHouse TH2).
*/
displayName: string
/**
* Region of the PoP.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ export const Pop = {
city: {
minLength: 1,
},
displayName: {
minLength: 1,
},
hostingProviderName: {
minLength: 1,
},
Expand Down
Loading