QoveryApi - JavaScript client for qovery_api
- Qovery is the fastest way to deploy your full-stack apps on any Cloud provider.
- ℹ️ The API is stable and still in development.
This SDK is automatically generated by the OpenAPI Generator project:
- API version: 1.0.3
- Package version: $(grep 'version' _build/openapi.yaml | head -1 | tr ':' '\n' | tail -1 | tr -d ' ')
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen For more information, please visit https://www.qovery.com
For Node.js
To publish the library as a npm, please follow the procedure in "Publishing npm packages".
Then install it via:
npm install qovery_api --save
Finally, you need to build the module:
npm run build
To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json
(and this README). Let's call this JAVASCRIPT_CLIENT_DIR
. Then run:
npm install
Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR
:
npm link
To use the link you just defined in your project, switch to the directory you want to use your qovery_api from, and run:
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
Finally, you need to build the module:
npm run build
If the library is hosted at a git repository, e.g.https://github.com/qovery/qovery-client-javascript then install it via:
npm install qovery/qovery-client-javascript --save
The library also works in the browser environment via npm and browserify. After following
the above steps with Node.js and installing browserify with npm install -g browserify
,
perform the following (assuming main.js is your entry file):
browserify main.js > bundle.js
Then include bundle.js in the HTML pages.
Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:
module: {
rules: [
{
parser: {
amd: false
}
}
]
}
Please follow the installation instruction and execute the following JS code:
var QoveryApi = require('qovery_api');
var defaultClient = QoveryApi.ApiClient.instance;
// Configure API key authorization: ApiKeyAuth
var ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
ApiKeyAuth.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.apiKeyPrefix['Authorization'] = "Token"
// Configure Bearer (JWT) access token for authorization: bearerAuth
var bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
var api = new QoveryApi.AccountInfoApi()
var opts = {
'accountInfoEditRequest': new QoveryApi.AccountInfoEditRequest() // {AccountInfoEditRequest}
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.editAccountInformation(opts, callback);
All URIs are relative to https://api.qovery.com
Class | Method | HTTP request | Description |
---|---|---|---|
QoveryApi.AccountInfoApi | editAccountInformation | PUT /account | Edit account information |
QoveryApi.AccountInfoApi | getAccountInformation | GET /account | Get Account information |
QoveryApi.ApplicationActionsApi | deployApplication | POST /application/{applicationId}/deploy | Deploy application |
QoveryApi.ApplicationActionsApi | rebootApplication | POST /application/{applicationId}/restart-service | Reboot application |
QoveryApi.ApplicationActionsApi | restartApplication | POST /application/{applicationId}/restart | Deprecated - Restart application |
QoveryApi.ApplicationActionsApi | stopApplication | POST /application/{applicationId}/stop | Stop application |
QoveryApi.ApplicationConfigurationApi | editAdvancedSettings | PUT /application/{applicationId}/advancedSettings | Edit advanced settings |
QoveryApi.ApplicationConfigurationApi | editApplicationNetwork | PUT /application/{applicationId}/network | Edit Application Network |
QoveryApi.ApplicationConfigurationApi | getAdvancedSettings | GET /application/{applicationId}/advancedSettings | Get advanced settings |
QoveryApi.ApplicationConfigurationApi | getApplicationNetwork | GET /application/{applicationId}/network | Get Application Network information |
QoveryApi.ApplicationDeploymentHistoryApi | listApplicationDeploymentHistory | GET /application/{applicationId}/deploymentHistory | List application deploys |
QoveryApi.ApplicationDeploymentRestrictionApi | createApplicationDeploymentRestriction | POST /application/{applicationId}/deploymentRestriction | Create an application deployment restriction |
QoveryApi.ApplicationDeploymentRestrictionApi | deleteApplicationDeploymentRestriction | DELETE /application/{applicationId}/deploymentRestriction/{deploymentRestrictionId} | Delete an application deployment restriction |
QoveryApi.ApplicationDeploymentRestrictionApi | editApplicationDeploymentRestriction | PUT /application/{applicationId}/deploymentRestriction/{deploymentRestrictionId} | Edit an application deployment restriction |
QoveryApi.ApplicationDeploymentRestrictionApi | getApplicationDeploymentRestrictions | GET /application/{applicationId}/deploymentRestriction | Get application deployment restrictions |
QoveryApi.ApplicationEnvironmentVariableApi | createApplicationEnvironmentVariable | POST /application/{applicationId}/environmentVariable | Add an environment variable to the application |
QoveryApi.ApplicationEnvironmentVariableApi | createApplicationEnvironmentVariableAlias | POST /application/{applicationId}/environmentVariable/{environmentVariableId}/alias | Create an environment variable alias at the application level |
QoveryApi.ApplicationEnvironmentVariableApi | createApplicationEnvironmentVariableOverride | POST /application/{applicationId}/environmentVariable/{environmentVariableId}/override | Create an environment variable override at the application level |
QoveryApi.ApplicationEnvironmentVariableApi | deleteApplicationEnvironmentVariable | DELETE /application/{applicationId}/environmentVariable/{environmentVariableId} | Delete an environment variable from an application |
QoveryApi.ApplicationEnvironmentVariableApi | editApplicationEnvironmentVariable | PUT /application/{applicationId}/environmentVariable/{environmentVariableId} | Edit an environment variable belonging to the application |
QoveryApi.ApplicationEnvironmentVariableApi | importEnvironmentVariable | POST /application/{applicationId}/environmentVariable/import | Import variables |
QoveryApi.ApplicationEnvironmentVariableApi | listApplicationEnvironmentVariable | GET /application/{applicationId}/environmentVariable | List environment variables |
QoveryApi.ApplicationLogsApi | listApplicationLog | GET /application/{applicationId}/log | List logs |
QoveryApi.ApplicationMainCallsApi | deleteApplication | DELETE /application/{applicationId} | Delete application |
QoveryApi.ApplicationMainCallsApi | editApplication | PUT /application/{applicationId} | Edit application |
QoveryApi.ApplicationMainCallsApi | getApplication | GET /application/{applicationId} | Get application by ID |
QoveryApi.ApplicationMainCallsApi | getApplicationStatus | GET /application/{applicationId}/status | Get application status |
QoveryApi.ApplicationMainCallsApi | listApplicationCommit | GET /application/{applicationId}/commit | List last commits |
QoveryApi.ApplicationMainCallsApi | listApplicationContributor | GET /application/{applicationId}/contributor | List contributors |
QoveryApi.ApplicationMainCallsApi | listApplicationLinks | GET /application/{applicationId}/link | List all URLs of the application |
QoveryApi.ApplicationSecretApi | createApplicationSecret | POST /application/{applicationId}/secret | Add a secret to the application |
QoveryApi.ApplicationSecretApi | createApplicationSecretAlias | POST /application/{applicationId}/secret/{secretId}/alias | Create a secret alias at the application level |
QoveryApi.ApplicationSecretApi | createApplicationSecretOverride | POST /application/{applicationId}/secret/{secretId}/override | Create a secret override at the application level |
QoveryApi.ApplicationSecretApi | deleteApplicationSecret | DELETE /application/{applicationId}/secret/{secretId} | Delete a secret from an application |
QoveryApi.ApplicationSecretApi | editApplicationSecret | PUT /application/{applicationId}/secret/{secretId} | Edit a secret belonging to the application |
QoveryApi.ApplicationSecretApi | listApplicationSecrets | GET /application/{applicationId}/secret | List application secrets |
QoveryApi.ApplicationsApi | cloneApplication | POST /application/{applicationId}/clone | Clone application |
QoveryApi.ApplicationsApi | createApplication | POST /environment/{environmentId}/application | Create an application |
QoveryApi.ApplicationsApi | getDefaultApplicationAdvancedSettings | GET /defaultApplicationAdvancedSettings | List default application advanced settings |
QoveryApi.ApplicationsApi | getEnvironmentApplicationStatus | GET /environment/{environmentId}/application/status | List all environment applications statuses |
QoveryApi.ApplicationsApi | getEnvironmentApplicationSupportedLanguages | GET /environment/{environmentId}/application/supportedLanguage | List supported languages |
QoveryApi.ApplicationsApi | listApplication | GET /environment/{environmentId}/application | List applications |
QoveryApi.BackupsApi | addBackupDatabase | POST /database/{databaseId}/backup | Add a backup to the Database |
QoveryApi.BackupsApi | listDatabaseBackup | GET /database/{databaseId}/backup | List database backups |
QoveryApi.BackupsApi | removeDatabaseBackup | DELETE /database/{databaseId}/backup/{backupId} | Remove database backup |
QoveryApi.BillingApi | addCreditCard | POST /organization/{organizationId}/creditCard | Add credit card |
QoveryApi.BillingApi | addCreditCode | POST /organization/{organizationId}/creditCode | Add credit code |
QoveryApi.BillingApi | changePlan | POST /organization/{organizationId}/changePlan | Change organization plan |
QoveryApi.BillingApi | deleteCreditCard | DELETE /organization/{organizationId}/creditCard/{creditCardId} | Delete credit card |
QoveryApi.BillingApi | editOrganizationBillingInfo | PUT /organization/{organizationId}/billingInfo | Edit Organization Billing Info |
QoveryApi.BillingApi | generateBillingUsageReport | POST /organization/{organizationId}/billingUsageReport | Generate organization billing usage report |
QoveryApi.BillingApi | getClusterCurrentCost | GET /organization/{organizationId}/cluster/{clusterId}/currentCost | Get cluster current cost |
QoveryApi.BillingApi | getOrganizationBillingExternalId | GET /organization/{organizationId}/billingExternalId | Get organization billing external ID |
QoveryApi.BillingApi | getOrganizationBillingInfo | GET /organization/{organizationId}/billingInfo | Get organization billing info |
QoveryApi.BillingApi | getOrganizationBillingStatus | GET /organization/{organizationId}/billingStatus | Get organization billing status |
QoveryApi.BillingApi | getOrganizationCurrentCost | GET /organization/{organizationId}/currentCost | Get organization current cost |
QoveryApi.BillingApi | getOrganizationInvoice | GET /organization/{organizationId}/invoice/{invoiceId} | Get organization invoice |
QoveryApi.BillingApi | getOrganizationInvoicePDF | GET /organization/{organizationId}/invoice/{invoiceId}/download | Get invoice link |
QoveryApi.BillingApi | listOrganizationCreditCards | GET /organization/{organizationId}/creditCard | List organization credit cards |
QoveryApi.BillingApi | listOrganizationInvoice | GET /organization/{organizationId}/invoice | List organization invoices |
QoveryApi.BillingApi | organizationDownloadAllInvoices | POST /organization/{organizationId}/downloadInvoices | Download all invoices |
QoveryApi.CloudProviderApi | listAWSEKSInstanceType | GET /aws/eks/instanceType/{region} | List AWS EKS available instance types |
QoveryApi.CloudProviderApi | listAWSEc2InstanceType | GET /aws/ec2/instanceType/{region} | List AWS EC2 available instance types |
QoveryApi.CloudProviderApi | listAWSFeatures | GET /aws/clusterFeature | List AWS features available |
QoveryApi.CloudProviderApi | listAWSInstanceType | GET /aws/instanceType | List AWS available instance types |
QoveryApi.CloudProviderApi | listAWSManagedDatabaseInstanceType | GET /aws/managedDatabase/instanceType/{region}/{databaseType} | List AWS available managed database instance types |
QoveryApi.CloudProviderApi | listAWSManagedDatabaseType | GET /aws/managedDatabase/type | List AWS available managed database types |
QoveryApi.CloudProviderApi | listAWSRegions | GET /aws/region | List AWS regions |
QoveryApi.CloudProviderApi | listCloudProvider | GET /cloudProvider | List Cloud providers available |
QoveryApi.CloudProviderApi | listGcpFeatures | GET /gcp/clusterFeature | List GCP features available |
QoveryApi.CloudProviderApi | listGcpGkeInstanceType | GET /gcp/instanceType/{region} | List GCP GKE available instance types |
QoveryApi.CloudProviderApi | listGcpRegions | GET /gcp/region | List GCP regions |
QoveryApi.CloudProviderApi | listSCWManagedDatabaseInstanceType | GET /scaleway/managedDatabase/instanceType/{zone}/{databaseType} | List Scaleway available managed database instance types |
QoveryApi.CloudProviderApi | listSCWManagedDatabaseType | GET /scaleway/managedDatabase/type | List Scaleway available managed database types |
QoveryApi.CloudProviderApi | listScalewayFeatures | GET /scaleway/clusterFeature | List Scaleway features available |
QoveryApi.CloudProviderApi | listScalewayInstanceType | GET /scaleway/instanceType | List Scaleway available instance types |
QoveryApi.CloudProviderApi | listScalewayKapsuleInstanceType | GET /scaleway/instanceType/{zone} | List Scaleway Kapsule available instance types |
QoveryApi.CloudProviderApi | listScalewayRegions | GET /scaleway/region | List Scaleway regions |
QoveryApi.CloudProviderCredentialsApi | createAWSCredentials | POST /organization/{organizationId}/aws/credentials | Create AWS credentials set |
QoveryApi.CloudProviderCredentialsApi | createGcpCredentials | POST /organization/{organizationId}/gcp/credentials | Create GCP credentials set |
QoveryApi.CloudProviderCredentialsApi | createScalewayCredentials | POST /organization/{organizationId}/scaleway/credentials | Create Scaleway credentials set |
QoveryApi.CloudProviderCredentialsApi | deleteAWSCredentials | DELETE /organization/{organizationId}/aws/credentials/{credentialsId} | Delete a set of AWS credentials |
QoveryApi.CloudProviderCredentialsApi | deleteGcpCredentials | DELETE /organization/{organizationId}/gcp/credentials/{credentialsId} | Delete a set of GCP credentials |
QoveryApi.CloudProviderCredentialsApi | deleteScalewayCredentials | DELETE /organization/{organizationId}/scaleway/credentials/{credentialsId} | Delete a set of Scaleway credentials |
QoveryApi.CloudProviderCredentialsApi | editAWSCredentials | PUT /organization/{organizationId}/aws/credentials/{credentialsId} | Edit a set of AWS credentials |
QoveryApi.CloudProviderCredentialsApi | editGcpCredentials | PUT /organization/{organizationId}/gcp/credentials/{credentialsId} | Edit a set of GCP credentials |
QoveryApi.CloudProviderCredentialsApi | editScalewayCredentials | PUT /organization/{organizationId}/scaleway/credentials/{credentialsId} | Edit a set of Scaleway credentials |
QoveryApi.CloudProviderCredentialsApi | getAWSCredentials | GET /organization/{organizationId}/aws/credentials/{credentialsId} | Get a set of AWS credentials |
QoveryApi.CloudProviderCredentialsApi | getGcpCredentials | GET /organization/{organizationId}/gcp/credentials/{credentialsId} | Get a set of GCP credentials |
QoveryApi.CloudProviderCredentialsApi | getScalewayCredentials | GET /organization/{organizationId}/scaleway/credentials/{credentialsId} | Get a set of Scaleway credentials |
QoveryApi.CloudProviderCredentialsApi | listAWSCredentials | GET /organization/{organizationId}/aws/credentials | List AWS credentials |
QoveryApi.CloudProviderCredentialsApi | listGcpCredentials | GET /organization/{organizationId}/gcp/credentials | List GCP credentials |
QoveryApi.CloudProviderCredentialsApi | listScalewayCredentials | GET /organization/{organizationId}/scaleway/credentials | List Scaleway credentials |
QoveryApi.ClustersApi | createCluster | POST /organization/{organizationId}/cluster | Create a cluster |
QoveryApi.ClustersApi | deleteCluster | DELETE /organization/{organizationId}/cluster/{clusterId} | Delete a cluster |
QoveryApi.ClustersApi | deployCluster | POST /organization/{organizationId}/cluster/{clusterId}/deploy | Deploy a cluster |
QoveryApi.ClustersApi | editCluster | PUT /organization/{organizationId}/cluster/{clusterId} | Edit a cluster |
QoveryApi.ClustersApi | editClusterAdvancedSettings | PUT /organization/{organizationId}/cluster/{clusterId}/advancedSettings | Edit advanced settings |
QoveryApi.ClustersApi | editClusterKubeconfig | PUT /organization/{organizationId}/cluster/{clusterId}/kubeconfig | Edit cluster kubeconfig |
QoveryApi.ClustersApi | editRoutingTable | PUT /organization/{organizationId}/cluster/{clusterId}/routingTable | Edit routing table |
QoveryApi.ClustersApi | getClusterAdvancedSettings | GET /organization/{organizationId}/cluster/{clusterId}/advancedSettings | Get advanced settings |
QoveryApi.ClustersApi | getClusterKubeconfig | GET /organization/{organizationId}/cluster/{clusterId}/kubeconfig | Get cluster kubeconfig |
QoveryApi.ClustersApi | getClusterReadinessStatus | GET /organization/{organizationId}/cluster/{clusterId}/isReady | Know if a cluster is ready to be deployed or not |
QoveryApi.ClustersApi | getClusterStatus | GET /organization/{organizationId}/cluster/{clusterId}/status | Get cluster status |
QoveryApi.ClustersApi | getDefaultClusterAdvancedSettings | GET /defaultClusterAdvancedSettings | List default cluster advanced settings |
QoveryApi.ClustersApi | getInstallationHelmValues | GET /organization/{organizationId}/cluster/{clusterId}/installationHelmValues | Get cluster helm values for self managed installation |
QoveryApi.ClustersApi | getOrganizationCloudProviderInfo | GET /organization/{organizationId}/cluster/{clusterId}/cloudProviderInfo | Get cluster cloud provider info and credentials |
QoveryApi.ClustersApi | getOrganizationClusterStatus | GET /organization/{organizationId}/cluster/status | List all clusters statuses |
QoveryApi.ClustersApi | getRoutingTable | GET /organization/{organizationId}/cluster/{clusterId}/routingTable | Get routing table |
QoveryApi.ClustersApi | listClusterLogs | GET /organization/{organizationId}/cluster/{clusterId}/logs | List Cluster Logs |
QoveryApi.ClustersApi | listOrganizationCluster | GET /organization/{organizationId}/cluster | List organization clusters |
QoveryApi.ClustersApi | specifyClusterCloudProviderInfo | POST /organization/{organizationId}/cluster/{clusterId}/cloudProviderInfo | Specify cluster cloud provider info and credentials |
QoveryApi.ClustersApi | stopCluster | POST /organization/{organizationId}/cluster/{clusterId}/stop | Stop cluster |
QoveryApi.ContainerActionsApi | deployContainer | POST /container/{containerId}/deploy | Deploy container |
QoveryApi.ContainerActionsApi | rebootContainer | POST /container/{containerId}/restart-service | Reboot container |
QoveryApi.ContainerActionsApi | restartContainer | POST /container/{containerId}/restart | Deprecated - Restart container |
QoveryApi.ContainerActionsApi | stopContainer | POST /container/{containerId}/stop | Stop container |
QoveryApi.ContainerConfigurationApi | editContainerAdvancedSettings | PUT /container/{containerId}/advancedSettings | Edit advanced settings |
QoveryApi.ContainerConfigurationApi | editContainerNetwork | PUT /container/{containerId}/network | Edit Container Network |
QoveryApi.ContainerConfigurationApi | getContainerAdvancedSettings | GET /container/{containerId}/advancedSettings | Get advanced settings |
QoveryApi.ContainerConfigurationApi | getContainerNetwork | GET /container/{containerId}/network | Get Container Network information |
QoveryApi.ContainerCustomDomainApi | createContainerCustomDomain | POST /container/{containerId}/customDomain | Add custom domain to the container. |
QoveryApi.ContainerCustomDomainApi | deleteContainerCustomDomain | DELETE /container/{containerId}/customDomain/{customDomainId} | Delete a Custom Domain |
QoveryApi.ContainerCustomDomainApi | editContainerCustomDomain | PUT /container/{containerId}/customDomain/{customDomainId} | Edit a Custom Domain |
QoveryApi.ContainerCustomDomainApi | getContainerCustomDomainStatus | GET /container/{containerId}/customDomain/{customDomainId}/status | Get Custom Domain status |
QoveryApi.ContainerCustomDomainApi | listContainerCustomDomain | GET /container/{containerId}/customDomain | List container custom domains |
QoveryApi.ContainerDeploymentHistoryApi | listContainerDeploymentHistory | GET /container/{containerId}/deploymentHistory | List container deployments |
QoveryApi.ContainerEnvironmentVariableApi | createContainerEnvironmentVariable | POST /container/{containerId}/environmentVariable | Add an environment variable to the container |
QoveryApi.ContainerEnvironmentVariableApi | createContainerEnvironmentVariableAlias | POST /container/{containerId}/environmentVariable/{environmentVariableId}/alias | Create an environment variable alias at the container level |
QoveryApi.ContainerEnvironmentVariableApi | createContainerEnvironmentVariableOverride | POST /container/{containerId}/environmentVariable/{environmentVariableId}/override | Create an environment variable override at the container level |
QoveryApi.ContainerEnvironmentVariableApi | deleteContainerEnvironmentVariable | DELETE /container/{containerId}/environmentVariable/{environmentVariableId} | Delete an environment variable from a container |
QoveryApi.ContainerEnvironmentVariableApi | editContainerEnvironmentVariable | PUT /container/{containerId}/environmentVariable/{environmentVariableId} | Edit an environment variable belonging to the container |
QoveryApi.ContainerEnvironmentVariableApi | importContainerEnvironmentVariable | POST /container/{containerId}/environmentVariable/import | Import variables |
QoveryApi.ContainerEnvironmentVariableApi | listContainerEnvironmentVariable | GET /container/{containerId}/environmentVariable | List environment variables |
QoveryApi.ContainerLogsApi | listContainerLog | GET /container/{containerId}/log | List logs |
QoveryApi.ContainerMainCallsApi | deleteContainer | DELETE /container/{containerId} | Delete container |
QoveryApi.ContainerMainCallsApi | editContainer | PUT /container/{containerId} | Edit container |
QoveryApi.ContainerMainCallsApi | getContainer | GET /container/{containerId} | Get container by ID |
QoveryApi.ContainerMainCallsApi | getContainerStatus | GET /container/{containerId}/status | Get container status |
QoveryApi.ContainerMainCallsApi | listContainerLinks | GET /container/{containerId}/link | List all URLs of the container |
QoveryApi.ContainerRegistriesApi | createContainerRegistry | POST /organization/{organizationId}/containerRegistry | Create a container registry |
QoveryApi.ContainerRegistriesApi | deleteContainerRegistry | DELETE /organization/{organizationId}/containerRegistry/{containerRegistryId} | Delete a container registry |
QoveryApi.ContainerRegistriesApi | editContainerRegistry | PUT /organization/{organizationId}/containerRegistry/{containerRegistryId} | Edit a container registry |
QoveryApi.ContainerRegistriesApi | getContainerRegistry | GET /organization/{organizationId}/containerRegistry/{containerRegistryId} | Get a container registry |
QoveryApi.ContainerRegistriesApi | listAvailableContainerRegistry | GET /availableContainerRegistry | List supported container registries |
QoveryApi.ContainerRegistriesApi | listContainerRegistry | GET /organization/{organizationId}/containerRegistry | List organization container registries |
QoveryApi.ContainerSecretApi | createContainerSecret | POST /container/{containerId}/secret | Add a secret to the container |
QoveryApi.ContainerSecretApi | createContainerSecretAlias | POST /container/{containerId}/secret/{secretId}/alias | Create a secret alias at the container level |
QoveryApi.ContainerSecretApi | createContainerSecretOverride | POST /container/{containerId}/secret/{secretId}/override | Create a secret override at the container level |
QoveryApi.ContainerSecretApi | deleteContainerSecret | DELETE /container/{containerId}/secret/{secretId} | Delete a secret from an container |
QoveryApi.ContainerSecretApi | editContainerSecret | PUT /container/{containerId}/secret/{secretId} | Edit a secret belonging to the container |
QoveryApi.ContainerSecretApi | listContainerSecrets | GET /container/{containerId}/secret | List container secrets |
QoveryApi.ContainersApi | autoDeployContainerEnvironments | POST /organization/{organizationId}/container/deploy | Auto deploy containers |
QoveryApi.ContainersApi | cloneContainer | POST /container/{containerId}/clone | Clone container |
QoveryApi.ContainersApi | createContainer | POST /environment/{environmentId}/container | Create a container |
QoveryApi.ContainersApi | getContainerRegistryContainerStatus | GET /organization/{organizationId}/containerRegistry/{containerRegistryId}/container/status | List all container registry container statuses |
QoveryApi.ContainersApi | getDefaultContainerAdvancedSettings | GET /defaultContainerAdvancedSettings | List default container advanced settings |
QoveryApi.ContainersApi | getEnvironmentContainerStatus | GET /environment/{environmentId}/container/status | List all environment container statuses |
QoveryApi.ContainersApi | listContainer | GET /environment/{environmentId}/container | List containers |
QoveryApi.ContainersApi | previewContainerEnvironments | POST /organization/{organizationId}/container/preview | Preview container environments |
QoveryApi.CustomDomainApi | createApplicationCustomDomain | POST /application/{applicationId}/customDomain | Add custom domain to the application. |
QoveryApi.CustomDomainApi | deleteCustomDomain | DELETE /application/{applicationId}/customDomain/{customDomainId} | Delete a Custom Domain |
QoveryApi.CustomDomainApi | editCustomDomain | PUT /application/{applicationId}/customDomain/{customDomainId} | Edit a Custom Domain |
QoveryApi.CustomDomainApi | getCustomDomainStatus | GET /application/{applicationId}/customDomain/{customDomainId}/status | Get Custom Domain status |
QoveryApi.CustomDomainApi | listApplicationCustomDomain | GET /application/{applicationId}/customDomain | List application custom domains |
QoveryApi.DatabaseActionsApi | deployDatabase | POST /database/{databaseId}/deploy | Deploy database |
QoveryApi.DatabaseActionsApi | rebootDatabase | POST /database/{databaseId}/restart-service | Retart database |
QoveryApi.DatabaseActionsApi | restartDatabase | POST /database/{databaseId}/restart | Deprecated - Restart database |
QoveryApi.DatabaseActionsApi | stopDatabase | POST /database/{databaseId}/stop | Stop database |
QoveryApi.DatabaseApplicationApi | listDatabaseApplication | GET /database/{databaseId}/application | List applications using the database |
QoveryApi.DatabaseApplicationApi | removeApplicationFromDatabase | DELETE /database/{databaseId}/application/{targetApplicationId} | Remove an application from this database |
QoveryApi.DatabaseDeploymentHistoryApi | listDatabaseDeploymentHistory | GET /database/{databaseId}/deploymentHistory | List database deploys |
QoveryApi.DatabaseMainCallsApi | deleteDatabase | DELETE /database/{databaseId} | Delete a database |
QoveryApi.DatabaseMainCallsApi | editDatabase | PUT /database/{databaseId} | Edit a database |
QoveryApi.DatabaseMainCallsApi | editDatabaseCredentials | PUT /database/{databaseId}/masterCredentials | Edit database master credentials |
QoveryApi.DatabaseMainCallsApi | getDatabase | GET /database/{databaseId} | Get database by ID |
QoveryApi.DatabaseMainCallsApi | getDatabaseMasterCredentials | GET /database/{databaseId}/masterCredentials | Get master credentials of the database |
QoveryApi.DatabaseMainCallsApi | getDatabaseStatus | GET /database/{databaseId}/status | Get database status |
QoveryApi.DatabaseMainCallsApi | listDatabaseVersion | GET /database/{databaseId}/version | List eligible versions for the database |
QoveryApi.DatabasesApi | cloneDatabase | POST /database/{databaseId}/clone | Clone database |
QoveryApi.DatabasesApi | createDatabase | POST /environment/{environmentId}/database | Create a database |
QoveryApi.DatabasesApi | getEnvironmentDatabaseStatus | GET /environment/{environmentId}/database/status | List all environment databases statuses |
QoveryApi.DatabasesApi | listDatabase | GET /environment/{environmentId}/database | List environment databases |
QoveryApi.DatabasesApi | listEnvironmentDatabaseConfig | GET /environment/{environmentId}/databaseConfiguration | List eligible database types, versions and modes for the environment |
QoveryApi.DeploymentStageMainCallsApi | attachServiceToDeploymentStage | PUT /deploymentStage/{deploymentStageId}/service/{serviceId} | Attach service to deployment stage |
QoveryApi.DeploymentStageMainCallsApi | createEnvironmentDeploymentStage | POST /environment/{environmentId}/deploymentStage | Create environment deployment stage |
QoveryApi.DeploymentStageMainCallsApi | deleteDeploymentStage | DELETE /deploymentStage/{deploymentStageId} | Delete deployment stage |
QoveryApi.DeploymentStageMainCallsApi | editDeploymentStage | PUT /deploymentStage/{deploymentStageId} | Edit deployment stage |
QoveryApi.DeploymentStageMainCallsApi | getDeploymentStage | GET /deploymentStage/{deploymentStageId} | Get Deployment Stage |
QoveryApi.DeploymentStageMainCallsApi | getServiceDeploymentStage | GET /service/{serviceId}/deploymentStage | Get Service Deployment Stage |
QoveryApi.DeploymentStageMainCallsApi | listEnvironmentDeploymentStage | GET /environment/{environmentId}/deploymentStage | List environment deployment stage |
QoveryApi.DeploymentStageMainCallsApi | moveAfterDeploymentStage | PUT /deploymentStage/{deploymentStageId}/moveAfter/{stageId} | Move deployment stage after requested stage |
QoveryApi.DeploymentStageMainCallsApi | moveBeforeDeploymentStage | PUT /deploymentStage/{deploymentStageId}/moveBefore/{stageId} | Move deployment stage before requested stage |
QoveryApi.EnvironmentApi | deployAllApplications | POST /environment/{environmentId}/application/deploy | Deploy applications |
QoveryApi.EnvironmentActionsApi | cancelEnvironmentDeployment | POST /environment/{environmentId}/cancelDeployment | Cancel environment deployment |
QoveryApi.EnvironmentActionsApi | cloneEnvironment | POST /environment/{environmentId}/clone | Clone environment |
QoveryApi.EnvironmentActionsApi | deleteSelectedServices | POST /environment/{environmentId}/service/delete | Delete services |
QoveryApi.EnvironmentActionsApi | deployAllServices | POST /environment/{environmentId}/service/deploy | Deploy services |
QoveryApi.EnvironmentActionsApi | deployEnvironment | POST /environment/{environmentId}/deploy | Deploy environment |
QoveryApi.EnvironmentActionsApi | rebootServices | POST /environment/{environmentId}/service/restart-service | Reboot services |
QoveryApi.EnvironmentActionsApi | restartEnvironment | POST /environment/{environmentId}/restart | Deprecated - Restart environment |
QoveryApi.EnvironmentActionsApi | stopEnvironment | POST /environment/{environmentId}/stop | Stop environment |
QoveryApi.EnvironmentActionsApi | stopSelectedServices | POST /environment/{environmentId}/service/stop | Stop services |
QoveryApi.EnvironmentDeploymentHistoryApi | listEnvironmentDeploymentHistory | GET /environment/{environmentId}/deploymentHistory | List environment deployments |
QoveryApi.EnvironmentDeploymentRuleApi | editEnvironmentDeploymentRule | PUT /environment/{environmentId}/deploymentRule/{deploymentRuleId} | Edit an environment deployment rule |
QoveryApi.EnvironmentDeploymentRuleApi | getEnvironmentDeploymentRule | GET /environment/{environmentId}/deploymentRule | Get environment deployment rule |
QoveryApi.EnvironmentExportApi | exportEnvironmentConfigurationIntoTerraform | GET /environment/{environmentId}/terraformExport | Export full environment and its resources into Terraform manifests |
QoveryApi.EnvironmentLogsApi | listEnvironmentLog | GET /environment/{environmentId}/log | List environment deployment logs |
QoveryApi.EnvironmentLogsApi | listEnvironmentLogs | GET /environment/{environmentId}/logs | List environment deployment logs v2 |
QoveryApi.EnvironmentMainCallsApi | deleteEnvironment | DELETE /environment/{environmentId} | Delete an environment |
QoveryApi.EnvironmentMainCallsApi | editEnvironment | PUT /environment/{environmentId} | Edit an environment |
QoveryApi.EnvironmentMainCallsApi | getEnvironment | GET /environment/{environmentId} | Get environment by ID |
QoveryApi.EnvironmentMainCallsApi | getEnvironmentStatus | GET /environment/{environmentId}/status | Get environment status |
QoveryApi.EnvironmentMainCallsApi | getEnvironmentStatuses | GET /environment/{environmentId}/statuses | Get environment statuses with services status |
QoveryApi.EnvironmentMainCallsApi | getEnvironmentStatusesWithStages | GET /environment/{environmentId}/statusesWithStages | Get environment statuses with stages |
QoveryApi.EnvironmentSecretApi | createEnvironmentSecret | POST /environment/{environmentId}/secret | Add a secret to the environment |
QoveryApi.EnvironmentSecretApi | createEnvironmentSecretAlias | POST /environment/{environmentId}/secret/{secretId}/alias | Create a secret alias at the environment level |
QoveryApi.EnvironmentSecretApi | createEnvironmentSecretOverride | POST /environment/{environmentId}/secret/{secretId}/override | Create a secret override at the environment level |
QoveryApi.EnvironmentSecretApi | deleteEnvironmentSecret | DELETE /environment/{environmentId}/secret/{secretId} | Delete a secret from the environment |
QoveryApi.EnvironmentSecretApi | editEnvironmentSecret | PUT /environment/{environmentId}/secret/{secretId} | Edit a secret belonging to the environment |
QoveryApi.EnvironmentSecretApi | listEnvironmentSecrets | GET /environment/{environmentId}/secret | List environment secrets |
QoveryApi.EnvironmentVariableApi | createEnvironmentEnvironmentVariable | POST /environment/{environmentId}/environmentVariable | Add an environment variable to the environment |
QoveryApi.EnvironmentVariableApi | createEnvironmentEnvironmentVariableAlias | POST /environment/{environmentId}/environmentVariable/{environmentVariableId}/alias | Create an environment variable alias at the environment level |
QoveryApi.EnvironmentVariableApi | createEnvironmentEnvironmentVariableOverride | POST /environment/{environmentId}/environmentVariable/{environmentVariableId}/override | Create an environment variable override at the environment level |
QoveryApi.EnvironmentVariableApi | deleteEnvironmentEnvironmentVariable | DELETE /environment/{environmentId}/environmentVariable/{environmentVariableId} | Delete an environment variable from an environment |
QoveryApi.EnvironmentVariableApi | editEnvironmentEnvironmentVariable | PUT /environment/{environmentId}/environmentVariable/{environmentVariableId} | Edit an environment variable belonging to the environment |
QoveryApi.EnvironmentVariableApi | listEnvironmentEnvironmentVariable | GET /environment/{environmentId}/environmentVariable | List environment variables |
QoveryApi.EnvironmentsApi | createEnvironment | POST /project/{projectId}/environment | Create an environment |
QoveryApi.EnvironmentsApi | getProjectEnvironmentServiceNumber | GET /project/{projectId}/environment/stats | List total number of services for each environment of the project |
QoveryApi.EnvironmentsApi | getProjectEnvironmentsStatus | GET /project/{projectId}/environment/status | List environments statuses |
QoveryApi.EnvironmentsApi | listEnvironment | GET /project/{projectId}/environment | List environments |
QoveryApi.GitRepositoriesApi | getBitbucketRepositories | GET /account/bitbucket/repository | Get bitbucket repositories of the connected user |
QoveryApi.GitRepositoriesApi | getBitbucketRepositoryBranches | GET /account/bitbucket/repository/branch | Get bitbucket branches of the specified repository |
QoveryApi.GitRepositoriesApi | getGitProviderAccount | GET /account/gitAuthProvider | Get git provider accounts |
QoveryApi.GitRepositoriesApi | getGithubRepositories | GET /account/github/repository | Get github repositories of the connected user |
QoveryApi.GitRepositoriesApi | getGithubRepositoryBranches | GET /account/github/repository/branch | Get github branches of the specified repository |
QoveryApi.GitRepositoriesApi | getGitlabRepositories | GET /account/gitlab/repository | Get gitlab repositories of the connected user |
QoveryApi.GitRepositoriesApi | getGitlabRepositoryBranches | GET /account/gitlab/repository/branch | Get gitlab branches of the specified repository |
QoveryApi.GithubAppApi | organizationGithubAppConnect | POST /organization/{organizationId}/github/connect | Connect a github account to an organization |
QoveryApi.GithubAppApi | organizationGithubAppDisconnect | DELETE /organization/{organizationId}/github/disconnect | Disconnect a github account from an organization |
QoveryApi.HelmActionsApi | deployHelm | POST /helm/{helmId}/deploy | Deploy helm |
QoveryApi.HelmActionsApi | restartHelm | POST /helm/{helmId}/restart | Deprecated - Restart helm |
QoveryApi.HelmActionsApi | stopHelm | POST /helm/{helmId}/stop | Stop helm |
QoveryApi.HelmConfigurationApi | editHelmAdvancedSettings | PUT /helm/{helmId}/advancedSettings | Edit advanced settings |
QoveryApi.HelmConfigurationApi | getHelmAdvancedSettings | GET /helm/{helmId}/advancedSettings | Get advanced settings |
QoveryApi.HelmCustomDomainApi | createHelmCustomDomain | POST /helm/{helmId}/customDomain | Add custom domain to the helm. |
QoveryApi.HelmCustomDomainApi | deleteHelmCustomDomain | DELETE /helm/{helmId}/customDomain/{customDomainId} | Delete a Custom Domain |
QoveryApi.HelmCustomDomainApi | editHelmCustomDomain | PUT /helm/{helmId}/customDomain/{customDomainId} | Edit a Custom Domain |
QoveryApi.HelmCustomDomainApi | getHelmCustomDomain | GET /helm/{helmId}/customDomain/{customDomainId} | Get a Custom Domain |
QoveryApi.HelmCustomDomainApi | listHelmCustomDomain | GET /helm/{helmId}/customDomain | List helm custom domains |
QoveryApi.HelmDeploymentHistoryApi | listHelmDeploymentHistory | GET /helm/{helmId}/deploymentHistory | List helm deployments |
QoveryApi.HelmDeploymentRestrictionApi | createHelmDeploymentRestriction | POST /helm/{helmId}/deploymentRestriction | Create a helm deployment restriction |
QoveryApi.HelmDeploymentRestrictionApi | deleteHelmDeploymentRestriction | DELETE /helm/{helmId}/deploymentRestriction/{deploymentRestrictionId} | Delete a helm deployment restriction |
QoveryApi.HelmDeploymentRestrictionApi | editHelmDeploymentRestriction | PUT /helm/{helmId}/deploymentRestriction/{deploymentRestrictionId} | Edit a helm deployment restriction |
QoveryApi.HelmDeploymentRestrictionApi | getHelmDeploymentRestrictions | GET /helm/{helmId}/deploymentRestriction | Get helm deployment restrictions |
QoveryApi.HelmMainCallsApi | deleteHelm | DELETE /helm/{helmId} | Delete helm |
QoveryApi.HelmMainCallsApi | editHelm | PUT /helm/{helmId} | Edit helm |
QoveryApi.HelmMainCallsApi | getHelm | GET /helm/{helmId} | Get helm by ID |
QoveryApi.HelmMainCallsApi | getHelmStatus | GET /helm/{helmId}/status | Get helm status |
QoveryApi.HelmMainCallsApi | listHelmCommit | GET /helm/{helmId}/commit | List last helm commits |
QoveryApi.HelmMainCallsApi | listHelmLinks | GET /helm/{helmId}/link | List all URLs of the helm |
QoveryApi.HelmRepositoriesApi | createHelmRepository | POST /organization/{organizationId}/helmRepository | Create a helm repository |
QoveryApi.HelmRepositoriesApi | deleteHelmRepository | DELETE /organization/{organizationId}/helmRepository/{helmRepositoryId} | Delete a helm repository |
QoveryApi.HelmRepositoriesApi | editHelmRepository | PUT /organization/{organizationId}/helmRepository/{helmRepositoryId} | Edit a helm repository |
QoveryApi.HelmRepositoriesApi | getHelmRepository | GET /organization/{organizationId}/helmRepository/{helmRepositoryId} | Get a helm repository |
QoveryApi.HelmRepositoriesApi | listAvailableHelmRepository | GET /availableHelmRepository | List supported helm repository |
QoveryApi.HelmRepositoriesApi | listHelmRepository | GET /organization/{organizationId}/helmRepository | List organization helm repositories |
QoveryApi.HelmsApi | cloneHelm | POST /helm/{helmId}/clone | Clone helm |
QoveryApi.HelmsApi | createHelm | POST /environment/{environmentId}/helm | Create a helm |
QoveryApi.HelmsApi | createHelmDefaultValues | POST /environment/{environmentId}/helmDefaultValues | Get helm default values |
QoveryApi.HelmsApi | getDefaultHelmAdvancedSettings | GET /defaultHelmAdvancedSettings | List default helm advanced settings |
QoveryApi.HelmsApi | getEnvironmentHelmStatus | GET /environment/{environmentId}/helm/status | List all environment helm statuses |
QoveryApi.HelmsApi | listHelms | GET /environment/{environmentId}/helm | List helms |
QoveryApi.JobActionsApi | deployJob | POST /job/{jobId}/deploy | Deploy job |
QoveryApi.JobActionsApi | restartJob | POST /job/{jobId}/restart | Deprecated - Restart job |
QoveryApi.JobActionsApi | stopJob | POST /job/{jobId}/stop | Stop job |
QoveryApi.JobConfigurationApi | editJobAdvancedSettings | PUT /job/{jobId}/advancedSettings | Edit advanced settings |
QoveryApi.JobConfigurationApi | getJobAdvancedSettings | GET /job/{jobId}/advancedSettings | Get advanced settings |
QoveryApi.JobDeploymentHistoryApi | listJobDeploymentHistory | GET /job/{jobId}/deploymentHistory | List job deployments |
QoveryApi.JobDeploymentRestrictionApi | createJobDeploymentRestriction | POST /job/{jobId}/deploymentRestriction | Create a job deployment restriction |
QoveryApi.JobDeploymentRestrictionApi | deleteJobDeploymentRestriction | DELETE /job/{jobId}/deploymentRestriction/{deploymentRestrictionId} | Delete a job deployment restriction |
QoveryApi.JobDeploymentRestrictionApi | editJobDeploymentRestriction | PUT /job/{jobId}/deploymentRestriction/{deploymentRestrictionId} | Edit a job deployment restriction |
QoveryApi.JobDeploymentRestrictionApi | getJobDeploymentRestrictions | GET /job/{jobId}/deploymentRestriction | Get job deployment restrictions |
QoveryApi.JobEnvironmentVariableApi | createJobEnvironmentVariable | POST /job/{jobId}/environmentVariable | Add an environment variable to the job |
QoveryApi.JobEnvironmentVariableApi | createJobEnvironmentVariableAlias | POST /job/{jobId}/environmentVariable/{environmentVariableId}/alias | Create an environment variable alias at the job level |
QoveryApi.JobEnvironmentVariableApi | createJobEnvironmentVariableOverride | POST /job/{jobId}/environmentVariable/{environmentVariableId}/override | Create an environment variable override at the job level |
QoveryApi.JobEnvironmentVariableApi | deleteJobEnvironmentVariable | DELETE /job/{jobId}/environmentVariable/{environmentVariableId} | Delete an environment variable from a job |
QoveryApi.JobEnvironmentVariableApi | editJobEnvironmentVariable | PUT /job/{jobId}/environmentVariable/{environmentVariableId} | Edit an environment variable belonging to the job |
QoveryApi.JobEnvironmentVariableApi | importJobEnvironmentVariable | POST /job/{jobId}/environmentVariable/import | Import variables |
QoveryApi.JobEnvironmentVariableApi | listJobEnvironmentVariable | GET /job/{jobId}/environmentVariable | List environment variables |
QoveryApi.JobMainCallsApi | deleteJob | DELETE /job/{jobId} | Delete job |
QoveryApi.JobMainCallsApi | editJob | PUT /job/{jobId} | Edit job |
QoveryApi.JobMainCallsApi | getJob | GET /job/{jobId} | Get job by ID |
QoveryApi.JobMainCallsApi | getJobStatus | GET /job/{jobId}/status | Get job status |
QoveryApi.JobMainCallsApi | listJobCommit | GET /job/{jobId}/commit | List last job commits |
QoveryApi.JobSecretApi | createJobSecret | POST /job/{jobId}/secret | Add a secret to the job |
QoveryApi.JobSecretApi | createJobSecretAlias | POST /job/{jobId}/secret/{secretId}/alias | Create a secret alias at the job level |
QoveryApi.JobSecretApi | createJobSecretOverride | POST /job/{jobId}/secret/{secretId}/override | Create a secret override at the job level |
QoveryApi.JobSecretApi | deleteJobSecret | DELETE /job/{jobId}/secret/{secretId} | Delete a secret from an job |
QoveryApi.JobSecretApi | editJobSecret | PUT /job/{jobId}/secret/{secretId} | Edit a secret belonging to the job |
QoveryApi.JobSecretApi | listJobSecrets | GET /job/{jobId}/secret | List job secrets |
QoveryApi.JobsApi | autoDeployJobEnvironments | POST /organization/{organizationId}/job/deploy | Auto deploy jobs |
QoveryApi.JobsApi | cloneJob | POST /job/{jobId}/clone | Clone job |
QoveryApi.JobsApi | createJob | POST /environment/{environmentId}/job | Create a job |
QoveryApi.JobsApi | getDefaultJobAdvancedSettings | GET /defaultJobAdvancedSettings | List default job advanced settings |
QoveryApi.JobsApi | getEnvironmentJobStatus | GET /environment/{environmentId}/job/status | List all environment job statuses |
QoveryApi.JobsApi | listJobs | GET /environment/{environmentId}/job | List jobs |
QoveryApi.MembersApi | deleteInviteMember | DELETE /organization/{organizationId}/inviteMember/{inviteId} | Remove an invited member |
QoveryApi.MembersApi | deleteMember | DELETE /organization/{organizationId}/member | Remove a member |
QoveryApi.MembersApi | editOrganizationMemberRole | PUT /organization/{organizationId}/member | Edit an organization member role |
QoveryApi.MembersApi | getMemberInvitation | GET /organization/{organizationId}/inviteMember/{inviteId} | Get member invitation |
QoveryApi.MembersApi | getOrganizationInvitedMembers | GET /organization/{organizationId}/inviteMember | Get invited members |
QoveryApi.MembersApi | getOrganizationMembers | GET /organization/{organizationId}/member | Get organization members |
QoveryApi.MembersApi | postAcceptInviteMember | POST /organization/{organizationId}/inviteMember/{inviteId} | Accept Invite in the organization |
QoveryApi.MembersApi | postInviteMember | POST /organization/{organizationId}/inviteMember | Invite someone in the organization |
QoveryApi.MembersApi | postOrganizationTransferOwnership | POST /organization/{organizationId}/transferOwnership | Transfer organization ownership to another user |
QoveryApi.OrganizationAccountGitRepositoriesApi | getOrganizationBitbucketRepositories | GET /organization/{organizationId}/account/bitbucket/repository | Get bitbucket repositories of the connected user |
QoveryApi.OrganizationAccountGitRepositoriesApi | getOrganizationBitbucketRepositoryBranches | GET /organization/{organizationId}/account/bitbucket/repository/branch | Get bitbucket branches of the specified repository |
QoveryApi.OrganizationAccountGitRepositoriesApi | getOrganizationGitProviderAccount | GET /organization/{organizationId}/account/gitAuthProvider | Get git provider accounts |
QoveryApi.OrganizationAccountGitRepositoriesApi | getOrganizationGithubRepositories | GET /organization/{organizationId}/account/github/repository | Get github repositories of the connected user |
QoveryApi.OrganizationAccountGitRepositoriesApi | getOrganizationGithubRepositoryBranches | GET /organization/{organizationId}/account/github/repository/branch | Get github branches of the specified repository |
QoveryApi.OrganizationAccountGitRepositoriesApi | getOrganizationGitlabRepositories | GET /organization/{organizationId}/account/gitlab/repository | Get gitlab repositories of the connected user |
QoveryApi.OrganizationAccountGitRepositoriesApi | getOrganizationGitlabRepositoryBranches | GET /organization/{organizationId}/account/gitlab/repository/branch | Get gitlab branches of the specified repository |
QoveryApi.OrganizationApiTokenApi | createOrganizationApiToken | POST /organization/{organizationId}/apiToken | Create an organization api token |
QoveryApi.OrganizationApiTokenApi | deleteOrganizationApiToken | DELETE /organization/{organizationId}/apiToken/{apiTokenId} | Delete organization api token |
QoveryApi.OrganizationApiTokenApi | listOrganizationApiTokens | GET /organization/{organizationId}/apiToken | List organization api tokens |
QoveryApi.OrganizationCustomRoleApi | createOrganizationCustomRole | POST /organization/{organizationId}/customRole | Create an organization custom role |
QoveryApi.OrganizationCustomRoleApi | deleteOrganizationCustomRole | DELETE /organization/{organizationId}/customRole/{customRoleId} | Delete organization custom role |
QoveryApi.OrganizationCustomRoleApi | editOrganizationCustomRole | PUT /organization/{organizationId}/customRole/{customRoleId} | Edit an organization custom role |
QoveryApi.OrganizationCustomRoleApi | getOrganizationCustomRole | GET /organization/{organizationId}/customRole/{customRoleId} | Get an organization custom role |
QoveryApi.OrganizationCustomRoleApi | listOrganizationCustomRoles | GET /organization/{organizationId}/customRole | List organization custom roles |
QoveryApi.OrganizationEventApi | getOrganizationEventTargets | GET /organization/{organizationId}/targets | Get available event targets to filter events |
QoveryApi.OrganizationEventApi | getOrganizationEvents | GET /organization/{organizationId}/events | Get all events inside the organization |
QoveryApi.OrganizationMainCallsApi | createGitToken | POST /organization/{organizationId}/gitToken | Create a git token |
QoveryApi.OrganizationMainCallsApi | createOrganization | POST /organization | Create an organization |
QoveryApi.OrganizationMainCallsApi | deleteGitToken | DELETE /organization/{organizationId}/gitToken/{gitTokenId} | Delete a git token |
QoveryApi.OrganizationMainCallsApi | deleteOrganization | DELETE /organization/{organizationId} | Delete an organization |
QoveryApi.OrganizationMainCallsApi | editGitToken | PUT /organization/{organizationId}/gitToken/{gitTokenId} | Edit a git token |
QoveryApi.OrganizationMainCallsApi | editOrganization | PUT /organization/{organizationId} | Edit an organization |
QoveryApi.OrganizationMainCallsApi | getGitTokenAssociatedServices | GET /organization/{organizationId}/gitToken/{gitTokenId}/associatedServices | Get organization git token associated services |
QoveryApi.OrganizationMainCallsApi | getOrganization | GET /organization/{organizationId} | Get organization by ID |
QoveryApi.OrganizationMainCallsApi | getOrganizationGitToken | GET /organization/{organizationId}/gitToken/{gitTokenId} | Get organization git token |
QoveryApi.OrganizationMainCallsApi | listOrganization | GET /organization | List user organizations |
QoveryApi.OrganizationMainCallsApi | listOrganizationAvailableRoles | GET /organization/{organizationId}/availableRole | List organization available roles |
QoveryApi.OrganizationMainCallsApi | listOrganizationGitTokens | GET /organization/{organizationId}/gitToken | List organization git tokens |
QoveryApi.OrganizationWebhookApi | createOrganizationWebhook | POST /organization/{organizationId}/webhook | Create an organization webhook |
QoveryApi.OrganizationWebhookApi | deleteOrganizationWebhook | DELETE /organization/{organizationId}/webhook/{webhookId} | Delete organization webhook |
QoveryApi.OrganizationWebhookApi | editOrganizationWebhook | PUT /organization/{organizationId}/webhook/{webhookId} | Edit an organization webhook |
QoveryApi.OrganizationWebhookApi | getOrganizationWebhook | GET /organization/{organizationId}/webhook/{webhookId} | Get an Organization webhook |
QoveryApi.OrganizationWebhookApi | listOrganizationWebHooks | GET /organization/{organizationId}/webhook | List organization webhooks |
QoveryApi.ProjectDeploymentRuleApi | createDeploymentRule | POST /project/{projectId}/deploymentRule | Create a deployment rule |
QoveryApi.ProjectDeploymentRuleApi | deleteProjectDeploymentRule | DELETE /project/{projectId}/deploymentRule/{deploymentRuleId} | Delete a project deployment rule |
QoveryApi.ProjectDeploymentRuleApi | editProjectDeployemtnRule | PUT /project/{projectId}/deploymentRule/{deploymentRuleId} | Edit a project deployment rule |
QoveryApi.ProjectDeploymentRuleApi | getProjectDeploymentRule | GET /project/{projectId}/deploymentRule/{deploymentRuleId} | Get a project deployment rule |
QoveryApi.ProjectDeploymentRuleApi | listProjectDeploymentRules | GET /project/{projectId}/deploymentRule | List project deployment rules |
QoveryApi.ProjectDeploymentRuleApi | updateDeploymentRulesPriorityOrder | PUT /project/{projectId}/deploymentRule/order | Update deployment rules priority order |
QoveryApi.ProjectEnvironmentVariableApi | createProjectEnvironmentVariable | POST /project/{projectId}/environmentVariable | Add an environment variable to the project |
QoveryApi.ProjectEnvironmentVariableApi | createProjectEnvironmentVariableAlias | POST /project/{projectId}/environmentVariable/{environmentVariableId}/alias | Create an environment variable alias at the project level |
QoveryApi.ProjectEnvironmentVariableApi | createProjectEnvironmentVariableOverride | POST /project/{projectId}/environmentVariable/{environmentVariableId}/override | Create an environment variable override at the project level |
QoveryApi.ProjectEnvironmentVariableApi | deleteProjectEnvironmentVariable | DELETE /project/{projectId}/environmentVariable/{environmentVariableId} | Delete an environment variable from a project |
QoveryApi.ProjectEnvironmentVariableApi | editProjectEnvironmentVariable | PUT /project/{projectId}/environmentVariable/{environmentVariableId} | Edit an environment variable belonging to the project |
QoveryApi.ProjectEnvironmentVariableApi | listProjectEnvironmentVariable | GET /project/{projectId}/environmentVariable | List project environment variables |
QoveryApi.ProjectMainCallsApi | deleteProject | DELETE /project/{projectId} | Delete a project |
QoveryApi.ProjectMainCallsApi | editProject | PUT /project/{projectId} | Edit a project |
QoveryApi.ProjectMainCallsApi | getProject | GET /project/{projectId} | Get project by ID |
QoveryApi.ProjectSecretApi | createProjectSecret | POST /project/{projectId}/secret | Add a secret to the project |
QoveryApi.ProjectSecretApi | createProjectSecretAlias | POST /project/{projectId}/secret/{secretId}/alias | Create a secret alias at the project level |
QoveryApi.ProjectSecretApi | createProjectSecretOverride | POST /project/{projectId}/secret/{secretId}/override | Create a secret override at the project level |
QoveryApi.ProjectSecretApi | deleteProjectSecret | DELETE /project/{projectId}/secret/{secretId} | Delete a secret from a project |
QoveryApi.ProjectSecretApi | editProjectSecret | PUT /project/{projectId}/secret/{secretId} | Edit a secret belonging to the project |
QoveryApi.ProjectSecretApi | listProjectSecrets | GET /project/{projectId}/secret | List project secrets |
QoveryApi.ProjectsApi | createProject | POST /organization/{organizationId}/project | Create a project |
QoveryApi.ProjectsApi | getOrganizationProjectStats | GET /organization/{organizationId}/project/stats | List total number of services and environments for each project of the organization |
QoveryApi.ProjectsApi | listProject | GET /organization/{organizationId}/project | List projects |
QoveryApi.ReferralRewardsApi | getAccountReferral | GET /account/referral | Get your referral information |
QoveryApi.ReferralRewardsApi | postAccountRewardClaim | POST /account/rewardClaim | Claim a reward |
QoveryApi.UserSignUpApi | createUserSignUp | POST /admin/userSignUp | Send Sign Up request |
QoveryApi.UserSignUpApi | getUserSignUp | GET /admin/userSignUp | Get Sign up information |
QoveryApi.VariableMainCallsApi | createVariable | POST /variable | Create a variable |
QoveryApi.VariableMainCallsApi | createVariableAlias | POST /variable/{variableId}/alias | Create a variable alias |
QoveryApi.VariableMainCallsApi | createVariableOverride | POST /variable/{variableId}/override | Create a variable override |
QoveryApi.VariableMainCallsApi | deleteVariable | DELETE /variable/{variableId} | Delete a variable |
QoveryApi.VariableMainCallsApi | editVariable | PUT /variable/{variableId} | Edit a variable |
QoveryApi.VariableMainCallsApi | importEnvironmentVariables | POST /variable/import | Import variables |
QoveryApi.VariableMainCallsApi | listVariables | GET /variable | List variables |
- QoveryApi.APIVariableScopeEnum
- QoveryApi.APIVariableTypeEnum
- QoveryApi.AccountInfo
- QoveryApi.AccountInfoEditRequest
- QoveryApi.Application
- QoveryApi.ApplicationAdvancedSettings
- QoveryApi.ApplicationAllOf
- QoveryApi.ApplicationDeploymentRestriction
- QoveryApi.ApplicationDeploymentRestrictionRequest
- QoveryApi.ApplicationDeploymentRestrictionResponseList
- QoveryApi.ApplicationEditRequest
- QoveryApi.ApplicationEditRequestAllOf
- QoveryApi.ApplicationGitRepository
- QoveryApi.ApplicationGitRepositoryRequest
- QoveryApi.ApplicationNetwork
- QoveryApi.ApplicationNetworkRequest
- QoveryApi.ApplicationRequest
- QoveryApi.ApplicationRequestAllOf
- QoveryApi.ApplicationResponseList
- QoveryApi.AvailableContainerRegistryResponse
- QoveryApi.AvailableContainerRegistryResponseList
- QoveryApi.AvailableHelmRepositoryResponse
- QoveryApi.AvailableHelmRepositoryResponseList
- QoveryApi.AwsCredentialsRequest
- QoveryApi.Backup
- QoveryApi.BackupAllOf
- QoveryApi.BackupPaginatedResponseList
- QoveryApi.BackupRequest
- QoveryApi.BackupResponseList
- QoveryApi.Base
- QoveryApi.BaseJobResponse
- QoveryApi.BaseJobResponseAllOf
- QoveryApi.BillingEnd
- QoveryApi.BillingExternalId
- QoveryApi.BillingInfo
- QoveryApi.BillingInfoRequest
- QoveryApi.BillingPeriod
- QoveryApi.BillingStart
- QoveryApi.BillingStatus
- QoveryApi.Budget
- QoveryApi.BudgetThreshold
- QoveryApi.BuildModeEnum
- QoveryApi.BuildPackLanguageEnum
- QoveryApi.CloneEnvironmentRequest
- QoveryApi.CloneServiceRequest
- QoveryApi.CloudProvider
- QoveryApi.CloudProviderEnum
- QoveryApi.CloudProviderResponseList
- QoveryApi.Cluster
- QoveryApi.ClusterAdvancedSettings
- QoveryApi.ClusterAllOf
- QoveryApi.ClusterCloudProviderInfo
- QoveryApi.ClusterCloudProviderInfoCredentials
- QoveryApi.ClusterCloudProviderInfoRequest
- QoveryApi.ClusterCredentials
- QoveryApi.ClusterCredentialsResponseList
- QoveryApi.ClusterDeleteMode
- QoveryApi.ClusterDeploymentStatusEnum
- QoveryApi.ClusterFeature
- QoveryApi.ClusterFeatureAcceptedValuesInner
- QoveryApi.ClusterFeatureAwsExistingVpc
- QoveryApi.ClusterFeatureGcpExistingVpc
- QoveryApi.ClusterFeatureResponseList
- QoveryApi.ClusterFeatureValue
- QoveryApi.ClusterInstanceTypeResponseList
- QoveryApi.ClusterInstanceTypeResponseListResultsInner
- QoveryApi.ClusterLogs
- QoveryApi.ClusterLogsDetails
- QoveryApi.ClusterLogsError
- QoveryApi.ClusterLogsErrorEventDetails
- QoveryApi.ClusterLogsErrorEventDetailsTransmitter
- QoveryApi.ClusterLogsErrorUnderlyingError
- QoveryApi.ClusterLogsMessage
- QoveryApi.ClusterLogsResponseList
- QoveryApi.ClusterReadinessStatus
- QoveryApi.ClusterRegion
- QoveryApi.ClusterRegionResponseList
- QoveryApi.ClusterRequest
- QoveryApi.ClusterRequestFeaturesInner
- QoveryApi.ClusterResponseList
- QoveryApi.ClusterRoutingTable
- QoveryApi.ClusterRoutingTableRequest
- QoveryApi.ClusterRoutingTableResultsInner
- QoveryApi.ClusterStateEnum
- QoveryApi.ClusterStatus
- QoveryApi.ClusterStatusGet
- QoveryApi.ClusterStatusResponseList
- QoveryApi.Commit
- QoveryApi.CommitPaginatedResponseList
- QoveryApi.CommitPaginatedResponseListAllOf
- QoveryApi.CommitResponseList
- QoveryApi.CommunityUsage
- QoveryApi.CompanySizeEnum
- QoveryApi.ContainerAdvancedSettings
- QoveryApi.ContainerDeployRequest
- QoveryApi.ContainerNetwork
- QoveryApi.ContainerNetworkRequest
- QoveryApi.ContainerRegistryKindEnum
- QoveryApi.ContainerRegistryProviderDetailsResponse
- QoveryApi.ContainerRegistryRequest
- QoveryApi.ContainerRegistryRequestConfig
- QoveryApi.ContainerRegistryResponse
- QoveryApi.ContainerRegistryResponseAllOf
- QoveryApi.ContainerRegistryResponseList
- QoveryApi.ContainerRequest
- QoveryApi.ContainerRequestAllOf
- QoveryApi.ContainerResponse
- QoveryApi.ContainerResponseAllOf
- QoveryApi.ContainerResponseList
- QoveryApi.ContainerSource
- QoveryApi.Cost
- QoveryApi.CostRange
- QoveryApi.CreateEnvironmentModeEnum
- QoveryApi.CreateEnvironmentRequest
- QoveryApi.Credentials
- QoveryApi.CredentialsRequest
- QoveryApi.CreditCard
- QoveryApi.CreditCardRequest
- QoveryApi.CreditCardResponseList
- QoveryApi.CronJobResponse
- QoveryApi.CronJobResponseAllOf
- QoveryApi.CronJobResponseAllOfSchedule
- QoveryApi.CronJobResponseAllOfScheduleCronjob
- QoveryApi.CurrentCost
- QoveryApi.CustomDomain
- QoveryApi.CustomDomainAllOf
- QoveryApi.CustomDomainRequest
- QoveryApi.CustomDomainResponseList
- QoveryApi.CustomDomainStatusEnum
- QoveryApi.Database
- QoveryApi.DatabaseAccessibilityEnum
- QoveryApi.DatabaseAllOf
- QoveryApi.DatabaseConfiguration
- QoveryApi.DatabaseConfigurationResponseList
- QoveryApi.DatabaseEditRequest
- QoveryApi.DatabaseModeEnum
- QoveryApi.DatabaseRequest
- QoveryApi.DatabaseResponseList
- QoveryApi.DatabaseTypeEnum
- QoveryApi.DatabaseVersionMode
- QoveryApi.DeleteMemberRequest
- QoveryApi.DeployAllRequest
- QoveryApi.DeployAllRequestApplicationsInner
- QoveryApi.DeployAllRequestContainersInner
- QoveryApi.DeployAllRequestHelmsInner
- QoveryApi.DeployAllRequestJobsInner
- QoveryApi.DeployRequest
- QoveryApi.DeploymentHistory
- QoveryApi.DeploymentHistoryAllOf
- QoveryApi.DeploymentHistoryApplication
- QoveryApi.DeploymentHistoryApplicationAllOf
- QoveryApi.DeploymentHistoryContainer
- QoveryApi.DeploymentHistoryContainerAllOf
- QoveryApi.DeploymentHistoryDatabase
- QoveryApi.DeploymentHistoryDatabaseAllOf
- QoveryApi.DeploymentHistoryEnvironment
- QoveryApi.DeploymentHistoryEnvironmentAllOf
- QoveryApi.DeploymentHistoryEnvironmentPaginatedResponseList
- QoveryApi.DeploymentHistoryEnvironmentPaginatedResponseListAllOf
- QoveryApi.DeploymentHistoryHelmResponse
- QoveryApi.DeploymentHistoryHelmResponseAllOf
- QoveryApi.DeploymentHistoryHelmResponseAllOfRepository
- QoveryApi.DeploymentHistoryJobResponse
- QoveryApi.DeploymentHistoryJobResponseAllOf
- QoveryApi.DeploymentHistoryJobResponseAllOfSchedule
- QoveryApi.DeploymentHistoryPaginatedResponseList
- QoveryApi.DeploymentHistoryPaginatedResponseListAllOf
- QoveryApi.DeploymentHistoryResponseList
- QoveryApi.DeploymentHistoryStatusEnum
- QoveryApi.DeploymentRestrictionModeEnum
- QoveryApi.DeploymentRestrictionTypeEnum
- QoveryApi.DeploymentRuleRequest
- QoveryApi.DeploymentStageRequest
- QoveryApi.DeploymentStageResponse
- QoveryApi.DeploymentStageResponseAllOf
- QoveryApi.DeploymentStageResponseList
- QoveryApi.DeploymentStageServiceResponse
- QoveryApi.DeploymentStageServiceResponseAllOf
- QoveryApi.DeploymentStageWithServicesStatuses
- QoveryApi.DoCredentialsRequest
- QoveryApi.Environment
- QoveryApi.EnvironmentAllOf
- QoveryApi.EnvironmentAllOfCloudProvider
- QoveryApi.EnvironmentApplicationsSupportedLanguage
- QoveryApi.EnvironmentApplicationsSupportedLanguageList
- QoveryApi.EnvironmentDeploymentRule
- QoveryApi.EnvironmentDeploymentRuleAllOf
- QoveryApi.EnvironmentDeploymentRuleEditRequest
- QoveryApi.EnvironmentEditRequest
- QoveryApi.EnvironmentLog
- QoveryApi.EnvironmentLogPaginatedResponseList
- QoveryApi.EnvironmentLogPaginatedResponseListAllOf
- QoveryApi.EnvironmentLogResponseList
- QoveryApi.EnvironmentLogScope
- QoveryApi.EnvironmentLogTypeEnum
- QoveryApi.EnvironmentLogs
- QoveryApi.EnvironmentLogsDetails
- QoveryApi.EnvironmentLogsDetailsStage
- QoveryApi.EnvironmentLogsDetailsTransmitter
- QoveryApi.EnvironmentLogsError
- QoveryApi.EnvironmentLogsErrorUnderlyingError
- QoveryApi.EnvironmentLogsMessage
- QoveryApi.EnvironmentModeEnum
- QoveryApi.EnvironmentResponseList
- QoveryApi.EnvironmentServiceIdsAllRequest
- QoveryApi.EnvironmentStats
- QoveryApi.EnvironmentStatsResponseList
- QoveryApi.EnvironmentStatus
- QoveryApi.EnvironmentStatusEventOriginEnum
- QoveryApi.EnvironmentStatusList
- QoveryApi.EnvironmentStatuses
- QoveryApi.EnvironmentStatusesWithStages
- QoveryApi.EnvironmentTotalNumber
- QoveryApi.EnvironmentVariable
- QoveryApi.EnvironmentVariableAlias
- QoveryApi.EnvironmentVariableAllOf
- QoveryApi.EnvironmentVariableEditRequest
- QoveryApi.EnvironmentVariableOverride
- QoveryApi.EnvironmentVariableRequest
- QoveryApi.EnvironmentVariableResponseList
- QoveryApi.GcpCredentialsRequest
- QoveryApi.GenericObjectCurrentCost
- QoveryApi.GitAuthProvider
- QoveryApi.GitAuthProviderResponseList
- QoveryApi.GitProviderEnum
- QoveryApi.GitRepository
- QoveryApi.GitRepositoryBranch
- QoveryApi.GitRepositoryBranchResponseList
- QoveryApi.GitRepositoryResponseList
- QoveryApi.GitTokenAssociatedServiceResponse
- QoveryApi.GitTokenAssociatedServiceType
- QoveryApi.GitTokenAssociatedServicesResponseList
- QoveryApi.GitTokenRequest
- QoveryApi.GitTokenResponse
- QoveryApi.GitTokenResponseAllOf
- QoveryApi.GitTokenResponseList
- QoveryApi.Healthcheck
- QoveryApi.HelmAdvancedSettings
- QoveryApi.HelmDefaultValuesRequest
- QoveryApi.HelmDefaultValuesRequestAllOf
- QoveryApi.HelmDeployRequest
- QoveryApi.HelmDeploymentRestrictionRequest
- QoveryApi.HelmDeploymentRestrictionResponse
- QoveryApi.HelmDeploymentRestrictionResponseList
- QoveryApi.HelmForceEvent
- QoveryApi.HelmGitRepositoryRequest
- QoveryApi.HelmPortProtocolEnum
- QoveryApi.HelmPortRequest
- QoveryApi.HelmPortRequestPortsInner
- QoveryApi.HelmRepositoryKindEnum
- QoveryApi.HelmRepositoryRequest
- QoveryApi.HelmRepositoryRequestConfig
- QoveryApi.HelmRepositoryResponse
- QoveryApi.HelmRepositoryResponseAllOf
- QoveryApi.HelmRepositoryResponseList
- QoveryApi.HelmRequest
- QoveryApi.HelmRequestAllOf
- QoveryApi.HelmRequestAllOfValuesOverride
- QoveryApi.HelmRequestAllOfValuesOverrideFile
- QoveryApi.HelmRequestAllOfValuesOverrideFileGit
- QoveryApi.HelmRequestAllOfValuesOverrideFileRaw
- QoveryApi.HelmRequestAllOfValuesOverrideFileRawValues
- QoveryApi.HelmResponse
- QoveryApi.HelmResponseAllOf
- QoveryApi.HelmResponseAllOfPorts
- QoveryApi.HelmResponseAllOfValuesOverride
- QoveryApi.HelmResponseAllOfValuesOverrideFile
- QoveryApi.HelmResponseAllOfValuesOverrideFileGit
- QoveryApi.HelmResponseAllOfValuesOverrideFileRaw
- QoveryApi.HelmResponseAllOfValuesOverrideFileRawValues
- QoveryApi.HelmResponseList
- QoveryApi.InviteMember
- QoveryApi.InviteMemberAllOf
- QoveryApi.InviteMemberRequest
- QoveryApi.InviteMemberResponseList
- QoveryApi.InviteMemberRoleEnum
- QoveryApi.InviteStatusEnum
- QoveryApi.Invoice
- QoveryApi.InvoiceAllOf
- QoveryApi.InvoiceResponseList
- QoveryApi.InvoiceStatusEnum
- QoveryApi.JobAdvancedSettings
- QoveryApi.JobDeployRequest
- QoveryApi.JobDeploymentRestrictionRequest
- QoveryApi.JobDeploymentRestrictionResponse
- QoveryApi.JobDeploymentRestrictionResponseList
- QoveryApi.JobForceEvent
- QoveryApi.JobRequest
- QoveryApi.JobRequestAllOf
- QoveryApi.JobRequestAllOfSchedule
- QoveryApi.JobRequestAllOfScheduleCronjob
- QoveryApi.JobRequestAllOfScheduleOnStart
- QoveryApi.JobRequestAllOfSource
- QoveryApi.JobRequestAllOfSourceDocker
- QoveryApi.JobRequestAllOfSourceImage
- QoveryApi.JobResponse
- QoveryApi.JobResponseList
- QoveryApi.JobScheduleEvent
- QoveryApi.Key
- QoveryApi.KubernetesEnum
- QoveryApi.LifecycleJobResponse
- QoveryApi.LifecycleJobResponseAllOf
- QoveryApi.LifecycleJobResponseAllOfSchedule
- QoveryApi.Link
- QoveryApi.LinkResponseList
- QoveryApi.LinkedServiceTypeEnum
- QoveryApi.ListContainerDeploymentHistory200Response
- QoveryApi.ListContainerDeploymentHistory200ResponseAllOf
- QoveryApi.ListDatabaseDeploymentHistory200Response
- QoveryApi.ListDatabaseDeploymentHistory200ResponseAllOf
- QoveryApi.ListHelmDeploymentHistory200Response
- QoveryApi.ListHelmDeploymentHistory200ResponseAllOf
- QoveryApi.ListJobDeploymentHistory200Response
- QoveryApi.ListJobDeploymentHistory200ResponseAllOf
- QoveryApi.Log
- QoveryApi.LogPaginatedResponseList
- QoveryApi.LogPaginatedResponseListAllOf
- QoveryApi.LogResponseList
- QoveryApi.ManagedDatabaseInstanceTypeResponse
- QoveryApi.ManagedDatabaseInstanceTypeResponseList
- QoveryApi.ManagedDatabaseTypeResponse
- QoveryApi.ManagedDatabaseTypeResponseList
- QoveryApi.Member
- QoveryApi.MemberAllOf
- QoveryApi.MemberResponseList
- QoveryApi.MemberRoleUpdateRequest
- QoveryApi.Name
- QoveryApi.Organization
- QoveryApi.OrganizationAllOf
- QoveryApi.OrganizationApiToken
- QoveryApi.OrganizationApiTokenAllOf
- QoveryApi.OrganizationApiTokenCreate
- QoveryApi.OrganizationApiTokenCreateAllOf
- QoveryApi.OrganizationApiTokenCreateRequest
- QoveryApi.OrganizationApiTokenResponseList
- QoveryApi.OrganizationApiTokenScope
- QoveryApi.OrganizationAvailableRole
- QoveryApi.OrganizationAvailableRoleList
- QoveryApi.OrganizationBillingUsageReportRequest
- QoveryApi.OrganizationBillingUsageReportResponse
- QoveryApi.OrganizationChangePlanRequest
- QoveryApi.OrganizationContainerAutoDeployRequest
- QoveryApi.OrganizationContainerPreviewRequest
- QoveryApi.OrganizationCreditCodeRequest
- QoveryApi.OrganizationCurrentCost
- QoveryApi.OrganizationCustomRole
- QoveryApi.OrganizationCustomRoleClusterPermission
- QoveryApi.OrganizationCustomRoleClusterPermissionsInner
- QoveryApi.OrganizationCustomRoleCreateRequest
- QoveryApi.OrganizationCustomRoleList
- QoveryApi.OrganizationCustomRoleProjectPermission
- QoveryApi.OrganizationCustomRoleProjectPermissionsInner
- QoveryApi.OrganizationCustomRoleUpdateRequest
- QoveryApi.OrganizationCustomRoleUpdateRequestClusterPermissionsInner
- QoveryApi.OrganizationCustomRoleUpdateRequestProjectPermissionsInner
- QoveryApi.OrganizationCustomRoleUpdateRequestProjectPermissionsInnerPermissionsInner
- QoveryApi.OrganizationEditRequest
- QoveryApi.OrganizationEventOrigin
- QoveryApi.OrganizationEventResponse
- QoveryApi.OrganizationEventResponseList
- QoveryApi.OrganizationEventResponseListLinks
- QoveryApi.OrganizationEventSubTargetType
- QoveryApi.OrganizationEventTargetResponseList
- QoveryApi.OrganizationEventTargetType
- QoveryApi.OrganizationEventType
- QoveryApi.OrganizationGithubAppConnectRequest
- QoveryApi.OrganizationJobAutoDeployRequest
- QoveryApi.OrganizationRequest
- QoveryApi.OrganizationResponseList
- QoveryApi.OrganizationWebhookCreateRequest
- QoveryApi.OrganizationWebhookCreateResponse
- QoveryApi.OrganizationWebhookCreateResponseAllOf
- QoveryApi.OrganizationWebhookEventEnum
- QoveryApi.OrganizationWebhookKindEnum
- QoveryApi.OrganizationWebhookResponse
- QoveryApi.OrganizationWebhookResponseList
- QoveryApi.PaginationData
- QoveryApi.PlanEnum
- QoveryApi.PortProtocolEnum
- QoveryApi.Probe
- QoveryApi.ProbeType
- QoveryApi.ProbeTypeExec
- QoveryApi.ProbeTypeGrpc
- QoveryApi.ProbeTypeHttp
- QoveryApi.ProbeTypeTcp
- QoveryApi.Project
- QoveryApi.ProjectAllOf
- QoveryApi.ProjectCurrentCost
- QoveryApi.ProjectCurrentCostAllOf
- QoveryApi.ProjectCurrentCostResponseList
- QoveryApi.ProjectDeploymentRule
- QoveryApi.ProjectDeploymentRuleAllOf
- QoveryApi.ProjectDeploymentRuleRequest
- QoveryApi.ProjectDeploymentRuleResponseList
- QoveryApi.ProjectDeploymentRulesPriorityOrderRequest
- QoveryApi.ProjectRequest
- QoveryApi.ProjectResponseList
- QoveryApi.ProjectStats
- QoveryApi.ProjectStatsResponseList
- QoveryApi.RebootServicesRequest
- QoveryApi.ReferenceObject
- QoveryApi.ReferenceObjectStatus
- QoveryApi.ReferenceObjectStatusResponseList
- QoveryApi.Referral
- QoveryApi.RegistryMirroringModeEnum
- QoveryApi.RemainingCredits
- QoveryApi.RewardClaim
- QoveryApi.ScalewayCredentialsRequest
- QoveryApi.Secret
- QoveryApi.SecretAlias
- QoveryApi.SecretAllOf
- QoveryApi.SecretEditRequest
- QoveryApi.SecretOverride
- QoveryApi.SecretRequest
- QoveryApi.SecretResponseList
- QoveryApi.Service
- QoveryApi.ServiceAllOf
- QoveryApi.ServiceDeploymentStatusEnum
- QoveryApi.ServicePort
- QoveryApi.ServicePortRequest
- QoveryApi.ServicePortRequestPortsInner
- QoveryApi.ServiceResponseList
- QoveryApi.ServiceStepMetric
- QoveryApi.ServiceStepMetricNameEnum
- QoveryApi.ServiceStepMetrics
- QoveryApi.ServiceStorage
- QoveryApi.ServiceStorageRequest
- QoveryApi.ServiceStorageRequestStorageInner
- QoveryApi.ServiceStorageStorageInner
- QoveryApi.ServiceTotalNumber
- QoveryApi.ServiceTypeEnum
- QoveryApi.ServiceTypeForVariableEnum
- QoveryApi.SignUp
- QoveryApi.SignUpRequest
- QoveryApi.Stage
- QoveryApi.StageStepMetric
- QoveryApi.StageStepMetricNameEnum
- QoveryApi.StageStepMetrics
- QoveryApi.StateEnum
- QoveryApi.Status
- QoveryApi.StatusKindEnum
- QoveryApi.StepMetricStatusEnum
- QoveryApi.StorageTypeEnum
- QoveryApi.TransferOwnershipRequest
- QoveryApi.TypeOfUseEnum
- QoveryApi.UnexpectedError
- QoveryApi.User
- QoveryApi.UserResponseList
- QoveryApi.Value
- QoveryApi.VariableAlias
- QoveryApi.VariableAliasRequest
- QoveryApi.VariableEditRequest
- QoveryApi.VariableImport
- QoveryApi.VariableImportRequest
- QoveryApi.VariableImportRequestVarsInner
- QoveryApi.VariableImportSuccessfulImportedVariablesInner
- QoveryApi.VariableOverride
- QoveryApi.VariableOverrideRequest
- QoveryApi.VariableRequest
- QoveryApi.VariableResponse
- QoveryApi.VariableResponseAllOf
- QoveryApi.VariableResponseList
- QoveryApi.Version
- QoveryApi.VersionResponseList
- QoveryApi.WeekdayEnum
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
- Type: Bearer authentication (JWT)