INTERFACE

KubernetesCapabilityQueryProvider

link GraphQL Schema definition

  • interface KubernetesCapabilityQueryProvider {
  • # Query capabilities that are provided by k8s packages
  • #
  • # Arguments
  • # after: [Not documented]
  • # filter: [Not documented]
  • # first: [Not documented]
  • # projectName: Either project name must be provided or the
  • # x-authorization-context header which contains a project id
  • queryCapabilities(
  • after: String,
  • filter: QueryFilter,
  • first: Int,
  • projectName: String
  • ): KubernetesCapabilityConnection!
  • # Query capabilities that are provided by k8s packages, which are installed in the
  • # specified cluster group
  • #
  • # Arguments
  • # after: [Not documented]
  • # clusterGroupName: Name of the cluster group where the package
  • # installs are
  • # filter: [Not documented]
  • # first: [Not documented]
  • # projectName: Either project name must be provided or the
  • # x-authorization-context header which contains a project id
  • queryCapabilityInstalls(
  • after: String,
  • clusterGroupName: String!,
  • filter: QueryFilter,
  • first: Int,
  • projectName: String
  • ): KubernetesCapabilityInstallConnection!
  • }