We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 940e109 commit 2aa525fCopy full SHA for 2aa525f
1 file changed
scripts/download-oas.sh
@@ -58,6 +58,11 @@ EOF
58
cd ${work_dir}/${OAS_REPO_NAME} >/dev/null
59
git checkout -q $apiVersion || (echo "version ${apiVersion} does not exist, using main instead" && git checkout -q main)
60
echo "$service=$(git rev-parse HEAD)" >> oas_commits
61
+ # To support initial integrations of the IaaS API in an Alpha state, we will temporarily use it to generate an IaaS Alpha SDK module
62
+ # This check can be removed once the IaaS API moves all endpoints to Beta
63
+ if [[ ${service} == "iaas" ]]; then
64
+ echo "iaasalpha=$(git rev-parse HEAD)" >> oas_commits
65
+ fi
66
cd - >/dev/null
67
68
# Prioritize GA over Beta over Alpha versions
0 commit comments