Sha256: 31e91d7cc9d5a4a4345215470cddedd579ee2281475f7001bf322b9a21c3ecff
Contents?: true
Size: 1.09 KB
Versions: 7
Compression:
Stored size: 1.09 KB
Contents
# PrivateCrossConnectProperties ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **name** | **String** | A name of that resource | [optional] | | **description** | **String** | Human readable description | [optional] | | **peers** | [**Array<Peer>**](Peer.md) | Read-Only attribute. Lists LAN's joined to this private cross connect | [optional][readonly] | | **connectable_datacenters** | [**Array<ConnectableDatacenter>**](ConnectableDatacenter.md) | Read-Only attribute. Lists datacenters that can be joined to this private cross connect | [optional][readonly] | ## Example ```ruby 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>"} ] } ) ```
Version data entries
7 entries across 7 versions & 1 rubygems