OBJECT

_CatalogFederated

link GraphQL Schema definition

  • type _CatalogFederated implements Catalog, Node {
  • # domain-specific catalog instance identifier
  • catalogId: String!
  • # service providing and managing the catalog
  • catalogQueryProvider: _CatalogQueryProviderFederated!
  • # Enumeration of features supported by this catalog.
  • # This can be used by clients to adapt their usage of this catalog.
  • #
  • # DISCOVER_DEPLOYMENTS
  • # DEPLOY
  • # UPGRADE
  • # PROJECT_SCOPING
  • featureSet: [String!]
  • # global opaque identifier to meet Node contract
  • id: ID!
  • # catalog name
  • name: String!
  • # This catalog can have permissions scoped by VMW.CSP.Projects - provide links to
  • # those project scopes
  • projectScopes: [Entity!]
  • # Arguments
  • # after: [Not documented]
  • # catalogItemId: Optionally filter by catalogItemIds
  • # depreciationStatus: filter catalog items by depreciation status
  • # filter: filter applying only to first-level catalog item fields
  • # first: [Not documented]
  • queryCatalogItems(
  • after: String,
  • catalogItemId: [String!],
  • depreciationStatus: [CatalogItemDepreciationStatus!],
  • filter: QueryFilter,
  • first: Int
  • ): _CatalogItemConnectionFederated
  • # itemType supported by this catalog.
  • #
  • # This is not an enum since new service may provide new types
  • # Examples of core types are:
  • #
  • # CONTAINER_IMAGE - OCI-compatible container image
  • # HELM_CHART
  • # CARVEL - carvel package
  • supportedCatalogItemTypes: [String!]
  • }