action clever_cloud_get_organisations_id_applications_app_id_addons { label: "getOrganisationsIdApplicationsAppIdAddons" provider: clever_cloud method: GET path: "/organisations/{id}/applications/{appId}/addons" encoding: json output: { type: "array" items: { type: "object" description: "An addon" required: ["configKeys", "creationDate", "id", "name", "plan", "provider", "realId", "region"] properties: { configKeys: { type: "array" description: "Environments variables link to the addon." items: { type: "string" } } creationDate: { type: "string" format: "date" description: "The creation timestamp of the addon" } id: { type: "string" description: "`addon_${uuid}`" } name: { type: "string" } plan: { type: "object" required: ["features", "id", "name", "price", "slug"] properties: { features: { type: "array" description: "The list of the feature in the addon" items: { type: "object" required: ["name", "type", "value"] properties: { name: { type: "string" description: "The name of the properties" } type: { type: "string" description: "The type of the feature" } value: { type: "string" description: "The value of the feature" } } } } id: { type: "string" description: "`plan_${uuid}`" } name: { type: "string" description: "Name of the pan" } price: { type: "integer" format: "int32" } slug: { type: "string" } } } provider: { type: "object" description: "A provider" required: ["analyticsId", "canUpgrade", "googlePlusName", "id", "logoUrl", "longDesc", "name", "openInNewTab", "regions", "shortDesc", "status", "supportEmail", "twitterName", "website"] properties: { analyticsId: { type: "string" description: "The id of the analytics page link to this addon" } canUpgrade: { type: "boolean" description: "Can the addon be upgraded" } features: { type: "array" items: { type: "object" additionalProperties: true } } googlePlusName: { type: "string" description: "The name of the google + page link to this addon (could be empty)" } id: { type: "string" description: "The id of the provider" } logoUrl: { type: "string" description: "The url of the addon's logo" } longDesc: { type: "string" description: "A less concise description of the addon" } name: { type: "string" } openInNewTab: { type: "boolean" description: "Does the addon panel need to be open in a new tab" } plans: { type: "array" items: { type: "object" additionalProperties: true } } regions: { type: "array" description: "The differents regions where the addon is available" items: { type: "string" } } shortDesc: { type: "string" description: "A short description of the addon" } status: { type: "string" description: "The status of this addon (RELEASE, BETA, ...)" } supportEmail: { type: "string" description: "The mail to contact in case of issue with this addon" } twitterName: { type: "string" description: "The name of the user to contact on twitter for this addon (could be empty)" } website: { type: "string" description: "The website of the provider. If the addon is developped by clever-cloud, the site is \"http://www.clever-cloud.com/\"" } } } realId: { type: "string" description: "`${provider}_${uuid2}`" } region: { type: "string" } } } } }