PrivateCrossConnectProperties

Properties

NameTypeDescriptionNotes

name

String

A name of that resource

[optional]

description

String

Human readable description

[optional]

peers

Read-Only attribute. Lists LAN's joined to this private cross connect

[optional][readonly]

connectable_datacenters

Read-Only attribute. Lists datacenters that can be joined to this private cross connect

[optional][readonly]

Example

require 'ionoscloud'

instance = Ionoscloud::PrivateCrossConnectProperties.new(
  name: My resource,
  description: Private Cross-Connect between datacenter 'A' and datacenter 'B' ,
  peers: { "peers": [ { "id": "<lan-id>", "name": "<lan-name>", "datacenterId": "<dc-uuid>",  "datacenterName": "<dc-name>", "location": "<de/fra>"} ] },
  connectable_datacenters: { "connectableDatacenters": [ { "id": "<dc-id>", "name": "<dc-name>", "location": "<de/fra>"} ] }
)

Last updated