action appcenter_builds_list_xamarin_sdkbundles { label: "builds_listXamarinSDKBundles" description: "Gets the Xamarin SDK bundles available to this app" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/xamarin_sdk_bundles" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { 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" } } } } } }