Resource Filters

List default values for different resource filters

get

Gets a Resource filter values filtered by product technology and clouds.

the responce form this endpoint can be used to filter the response from other endpoints as get page of:

  • /compute/instances
  • /compute/containers/kubernetes
  • /databases
  • /message-broker
  • /networking/loadbalancers

Query param:

  • *technologies* : optional list of product technologies
  • *cloudId* : Each cloud

The Response:

  • *iRules* : iRules for loadbalancer
  • *defaultPersistence* : for loadbalancer
  • *fallbackPersistence* : for loadbalancer
  • *loadBalancingMode* : for loadbalancer
  • *protocols* : for loadbalancer
  • *az* : for system instance and application servers
  • *k8sRegions* : for kubernetes
  • *versions* : for any farm of database, message brokers or storage
  • *topologies* : for any farm of database, message brokers or storage
Authorizations
Query parameters
technologiesstring[]Optional

Product technology, example: MARIADB or KUBERNETES or...

cloudsintegerOptional
Responses
200

OK

*/*
get
GET /itcare/compute/resource-filters HTTP/1.1
Host: api.cegedim.cloud
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "az": [
    "text"
  ],
  "defaultPersistence": [
    "text"
  ],
  "fallbackPersistence": [
    "text"
  ],
  "iRules": [
    "text"
  ],
  "k8sRegions": [
    "text"
  ],
  "loadBalancingMode": [
    "text"
  ],
  "protocols": [
    "text"
  ],
  "topologies": [
    {
      "topology": "text",
      "type": "text"
    }
  ],
  "versions": [
    {
      "type": "text",
      "version": "text"
    }
  ]
}

Last updated