Sha256: d054404c63bf12817e93650e83103889452469d927d61fac5e16257a614eb7a3
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
# PrivateCrossConnectProperties ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **connectable_datacenters** | [**Array<ConnectableDatacenter>**](ConnectableDatacenter.md) | Read-Only attribute. Lists data centers that can be joined to this private Cross-Connect. | [optional][readonly] | | **description** | **String** | Human-readable description. | [optional] | | **name** | **String** | The name of the resource. | [optional] | | **peers** | [**Array<Peer>**](Peer.md) | Read-Only attribute. Lists LAN's joined to this private Cross-Connect. | [optional][readonly] | ## Example ```ruby require 'ionoscloud' instance = Ionoscloud::PrivateCrossConnectProperties.new( connectable_datacenters: { "connectableDatacenters": [ { "id": "<dc-id>", "name": "<dc-name>", "location": "<de/fra>"} ] }, description: Private Cross-Connect between datacenter 'A' and datacenter 'B' , name: My resource, peers: { "peers": [ { "id": "<lan-id>", "name": "<lan-name>", "datacenterId": "<dc-uuid>", "datacenterName": "<dc-name>", "location": "<de/fra>"} ] } ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ionoscloud-6.1.2 | docs/models/PrivateCrossConnectProperties.md |