OBJECT
K8sClusterPortsInfo
Description
Represents a range of ports for a Kubernetes cluster.
link GraphQL Schema definition
- type K8sClusterPortsInfo {
- #   UUID of the Kubernetes cluster.
- : UUID! 
- #   The upper bound (inclusive) of the port range.
- : Int! 
- #   The lower bound (inclusive) of the port range.
- : Int! 
- #   The type of the port range. Allowed values: 'BACKUP' and 'USER_DRIVEN'. BACKUP 
- #   type of ports are used for backup and USER_DRIVEN type of ports are used for 
- #   recovery.
- : KuprClusterPortsType! 
- }