action appcenter_builds_list_toolsets { label: "builds_listToolsets" description: "Returns available toolsets for application" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/toolsets" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } tools: { type: "string" enum: ["xamarin", "xcode", "node"] } } required: ["app_name", "owner_name"] additionalProperties: false } output: { type: "object" description: "Set of toolsets available for app" properties: { node: { type: "array" description: "A list of Node versions" items: { description: "The Node version" properties: { current: { type: "boolean" description: "If the Node version is default for AppCenter" } name: { type: "string" description: "The version name" } } } } xamarin: { type: "array" description: "A list of Xamarin SDK bundles" items: { description: "The Xamarin SDK bundle" properties: { current: { type: "boolean" description: "If the SDK is latest stable" } monoVersion: { type: "string" description: "The Mono version" } sdkBundle: { type: "string" description: "The Xamarin SDK version" } stable: { type: "boolean" description: "If the SDK is stable" } xcodeVersions: { type: "array" description: "Specific for iOS SDK. A list of Xcode versions supported by current SDK version" items: { type: "string" } } } } } xcode: { type: "array" description: "A list of Xcode versions" items: { description: "The Xcode version" properties: { current: { type: "boolean" description: "If the Xcode is latest stable" } name: { type: "string" description: "The version name" } } } } } } }