Skip to content

Commit

Permalink
fix: csp config for ibm
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaportPhilipBrowne committed Sep 23, 2024
1 parent 1a11c0a commit 8ff0c90
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions vxc_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -576,9 +576,16 @@ type CSPConnectionTransit struct {
// CSPConnectionIBM represents the configuration of a CSP connection for IBM Cloud Direct Link.
type CSPConnectionIBM struct {
CSPConnectionConfig
ConnectType string `json:"connectType"`
ResourceName string `json:"resource_name"`
ResourceType string `json:"resource_type"`
ConnectType string `json:"connectType"`
ResourceName string `json:"resource_name"`
ResourceType string `json:"resource_type"`
CSPName string `json:"csp_name"`
Bandwidth int `json:"bandwidth"`
AccountID string `json:"account_id"`
CustomerASN int `json:"customer_asn"`
ProviderIPAddress string `json:"provider_ip_address"`
CustomerIPAddress string `json:"customer_ip_address"`
Bandwidths []int `json:"bandwidths"`
}

// CSPConnectionOther represents the configuration of a CSP connection for any other CSP that is not presently defined.
Expand Down

0 comments on commit 8ff0c90

Please sign in to comment.