diff --git a/eng/common/testproxy/rotate.sh b/eng/common/testproxy/rotate.sh new file mode 100755 index 000000000000..08ed28116a33 --- /dev/null +++ b/eng/common/testproxy/rotate.sh @@ -0,0 +1,49 @@ +#!/bin/bash +# ============================================================================= +# rotate.sh — Regenerate dotnet-devcert.crt and dotnet-devcert.pfx +# +# Dependencies: +# - openssl (apt install openssl / already present on most WSL distros) +# +# Usage (from WSL, standing in the repo root): +# cd eng/common/testproxy +# bash rotate.sh +# +# The script overwrites dotnet-devcert.crt and dotnet-devcert.pfx in-place +# using the localhost.conf that lives alongside it. +# +# After running: +# 1. Verify the new cert: openssl x509 -in dotnet-devcert.crt -noout -dates -subject +# 2. Commit both files and open a PR against azure-sdk-tools. +# ============================================================================= +set -euo pipefail + +SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" + +KEYFILE=$(mktemp) +trap 'rm -f "$KEYFILE"' EXIT + +CONF_PATH="$SCRIPT_DIR/localhost.conf" +CRTFILE="$SCRIPT_DIR/dotnet-devcert.crt" +PFXFILE="$SCRIPT_DIR/dotnet-devcert.pfx" + +# Generate a new 2048-bit self-signed cert valid for 365 days +openssl req -x509 -nodes -days 365 \ + -newkey rsa:2048 \ + -keyout "$KEYFILE" \ + -out "$CRTFILE" \ + -config "$CONF_PATH" + +# Bundle into a PKCS#12 archive (password: "password") +openssl pkcs12 -export \ + -out "$PFXFILE" \ + -inkey "$KEYFILE" \ + -in "$CRTFILE" \ + -passout pass:password + +echo "" +echo "✓ Regenerated:" +echo " $CRTFILE" +echo " $PFXFILE" +echo "" +openssl x509 -in "$CRTFILE" -noout -dates -subject diff --git a/eng/emitter-package-lock.json b/eng/emitter-package-lock.json index 47aa70df9b52..24becb74aca5 100644 --- a/eng/emitter-package-lock.json +++ b/eng/emitter-package-lock.json @@ -5,23 +5,23 @@ "packages": { "": { "dependencies": { - "@azure-tools/typespec-java": "0.44.6" + "@azure-tools/typespec-java": "0.45.0" }, "devDependencies": { "@azure-tools/openai-typespec": "1.11.0", - "@azure-tools/typespec-autorest": "0.67.0", - "@azure-tools/typespec-azure-core": "0.67.1", - "@azure-tools/typespec-azure-resource-manager": "0.67.1", - "@azure-tools/typespec-azure-rulesets": "0.67.0", - "@azure-tools/typespec-client-generator-core": "0.67.3", - "@azure-tools/typespec-liftr-base": "0.13.0", - "@typespec/compiler": "1.11.0", - "@typespec/http": "1.11.0", - "@typespec/openapi": "1.11.0", - "@typespec/openapi3": "1.11.0", - "@typespec/rest": "0.81.0", - "@typespec/versioning": "0.81.0", - "@typespec/xml": "0.81.0" + "@azure-tools/typespec-autorest": "0.68.0", + "@azure-tools/typespec-azure-core": "0.68.0", + "@azure-tools/typespec-azure-resource-manager": "0.68.0", + "@azure-tools/typespec-azure-rulesets": "0.68.0", + "@azure-tools/typespec-client-generator-core": "0.68.0", + "@azure-tools/typespec-liftr-base": "0.14.0", + "@typespec/compiler": "1.12.0", + "@typespec/http": "1.12.0", + "@typespec/openapi": "1.12.0", + "@typespec/openapi3": "1.12.0", + "@typespec/rest": "0.82.0", + "@typespec/versioning": "0.82.0", + "@typespec/xml": "0.82.0" } }, "node_modules/@autorest/codemodel": { @@ -69,7 +69,6 @@ "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/openai-typespec/-/openai-typespec-1.11.0.tgz", "integrity": "sha1-TYi0Rd6+Y3VqLHxs/rN/FcpJ/JY=", "license": "MIT", - "peer": true, "peerDependencies": { "@typespec/http": "*", "@typespec/openapi": "*" @@ -85,24 +84,23 @@ } }, "node_modules/@azure-tools/typespec-autorest": { - "version": "0.67.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-autorest/-/typespec-autorest-0.67.0.tgz", - "integrity": "sha1-O4a009P0+dIrw6yCFTc8a11FW+o=", + "version": "0.68.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-autorest/-/typespec-autorest-0.68.0.tgz", + "integrity": "sha1-OuTi55CRuZkJklLLHsXeIW1/aSA=", "license": "MIT", - "peer": true, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@azure-tools/typespec-azure-core": "^0.67.0", - "@azure-tools/typespec-azure-resource-manager": "^0.67.0", - "@azure-tools/typespec-client-generator-core": "^0.67.0", - "@typespec/compiler": "^1.11.0", - "@typespec/http": "^1.11.0", - "@typespec/openapi": "^1.11.0", - "@typespec/rest": "^0.81.0", - "@typespec/versioning": "^0.81.0", - "@typespec/xml": "^0.81.0" + "@azure-tools/typespec-azure-core": "^0.68.0", + "@azure-tools/typespec-azure-resource-manager": "^0.68.0", + "@azure-tools/typespec-client-generator-core": "^0.68.0", + "@typespec/compiler": "^1.12.0", + "@typespec/http": "^1.12.0", + "@typespec/openapi": "^1.12.0", + "@typespec/rest": "^0.82.0", + "@typespec/versioning": "^0.82.0", + "@typespec/xml": "^0.82.0" }, "peerDependenciesMeta": { "@typespec/xml": { @@ -111,89 +109,85 @@ } }, "node_modules/@azure-tools/typespec-azure-core": { - "version": "0.67.1", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-azure-core/-/typespec-azure-core-0.67.1.tgz", - "integrity": "sha1-u5r9+sqtjHLkjejB1J/q2NEuDdk=", + "version": "0.68.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-azure-core/-/typespec-azure-core-0.68.0.tgz", + "integrity": "sha1-XAWZ7yHrdW8bZq7ooA8QMpxT9pY=", "license": "MIT", - "peer": true, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.11.0", - "@typespec/http": "^1.11.0", - "@typespec/rest": "^0.81.0" + "@typespec/compiler": "^1.12.0", + "@typespec/http": "^1.12.0", + "@typespec/rest": "^0.82.0" } }, "node_modules/@azure-tools/typespec-azure-resource-manager": { - "version": "0.67.1", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-azure-resource-manager/-/typespec-azure-resource-manager-0.67.1.tgz", - "integrity": "sha1-oakpA2uIVzcI7T8PAfTY5urDjRI=", + "version": "0.68.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-azure-resource-manager/-/typespec-azure-resource-manager-0.68.0.tgz", + "integrity": "sha1-nbM+E4pghsnXx8NyTeY9HPSSFGM=", "license": "MIT", - "peer": true, "dependencies": { - "change-case": "~5.4.4", + "change-case": "^5.4.4", "pluralize": "^8.0.0" }, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@azure-tools/typespec-azure-core": "^0.67.0", - "@typespec/compiler": "^1.11.0", - "@typespec/http": "^1.11.0", - "@typespec/openapi": "^1.11.0", - "@typespec/rest": "^0.81.0", - "@typespec/versioning": "^0.81.0" + "@azure-tools/typespec-azure-core": "^0.68.0", + "@typespec/compiler": "^1.12.0", + "@typespec/http": "^1.12.0", + "@typespec/openapi": "^1.12.0", + "@typespec/rest": "^0.82.0", + "@typespec/versioning": "^0.82.0" } }, "node_modules/@azure-tools/typespec-azure-rulesets": { - "version": "0.67.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-azure-rulesets/-/typespec-azure-rulesets-0.67.0.tgz", - "integrity": "sha1-uxG5wAxk4dsL2ZWHcmgvOgzZiKQ=", + "version": "0.68.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-azure-rulesets/-/typespec-azure-rulesets-0.68.0.tgz", + "integrity": "sha1-rxQaIS910fMLm+CkO8QJlDfTXzY=", "license": "MIT", - "peer": true, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@azure-tools/typespec-azure-core": "^0.67.0", - "@azure-tools/typespec-azure-resource-manager": "^0.67.0", - "@azure-tools/typespec-client-generator-core": "^0.67.0", - "@typespec/compiler": "^1.11.0" + "@azure-tools/typespec-azure-core": "^0.68.0", + "@azure-tools/typespec-azure-resource-manager": "^0.68.0", + "@azure-tools/typespec-client-generator-core": "^0.68.0", + "@typespec/compiler": "^1.12.0" } }, "node_modules/@azure-tools/typespec-client-generator-core": { - "version": "0.67.3", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-client-generator-core/-/typespec-client-generator-core-0.67.3.tgz", - "integrity": "sha1-ZetnvWRfZ5BNwmCLymSXKzpGEgw=", + "version": "0.68.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-client-generator-core/-/typespec-client-generator-core-0.68.0.tgz", + "integrity": "sha1-4Lzanpy01Hw8SfOKQcDTrvUzMwg=", "license": "MIT", - "peer": true, "dependencies": { - "change-case": "~5.4.4", + "change-case": "^5.4.4", "pluralize": "^8.0.0", - "yaml": "~2.8.2" + "yaml": "^2.8.3" }, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@azure-tools/typespec-azure-core": "^0.67.1", - "@typespec/compiler": "^1.11.0", - "@typespec/events": "^0.81.0", - "@typespec/http": "^1.11.0", - "@typespec/openapi": "^1.11.0", - "@typespec/rest": "^0.81.0", - "@typespec/sse": "^0.81.0", - "@typespec/streams": "^0.81.0", - "@typespec/versioning": "^0.81.0", - "@typespec/xml": "^0.81.0" + "@azure-tools/typespec-azure-core": "^0.68.0", + "@typespec/compiler": "^1.12.0", + "@typespec/events": "^0.82.0", + "@typespec/http": "^1.12.0", + "@typespec/openapi": "^1.12.0", + "@typespec/rest": "^0.82.0", + "@typespec/sse": "^0.82.0", + "@typespec/streams": "^0.82.0", + "@typespec/versioning": "^0.82.0", + "@typespec/xml": "^0.82.0" } }, "node_modules/@azure-tools/typespec-java": { - "version": "0.44.6", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-java/-/typespec-java-0.44.6.tgz", - "integrity": "sha1-pVo5db61uGmbEBPL2SRMIoGbw6Y=", + "version": "0.45.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-java/-/typespec-java-0.45.0.tgz", + "integrity": "sha1-yDL50mT5ivwVTKBfI7N7ffmHMI4=", "license": "MIT", "dependencies": { "@autorest/codemodel": "~4.20.1", @@ -205,26 +199,25 @@ }, "peerDependencies": { "@azure-tools/openai-typespec": "^1.11.0", - "@azure-tools/typespec-autorest": ">=0.67.0 <1.0.0", - "@azure-tools/typespec-azure-core": ">=0.67.1 <1.0.0", - "@azure-tools/typespec-azure-resource-manager": ">=0.67.1 <1.0.0", - "@azure-tools/typespec-azure-rulesets": ">=0.67.0 <1.0.0", - "@azure-tools/typespec-client-generator-core": ">=0.67.3 <1.0.0", - "@azure-tools/typespec-liftr-base": ">=0.13.0 <1.0.0", - "@typespec/compiler": "^1.11.0", - "@typespec/http": "^1.11.0", - "@typespec/openapi": "^1.11.0", - "@typespec/openapi3": "^1.11.0", - "@typespec/rest": ">=0.81.0 <1.0.0", - "@typespec/versioning": ">=0.81.0 <1.0.0", - "@typespec/xml": ">=0.81.0 <1.0.0" + "@azure-tools/typespec-autorest": ">=0.68.0 <1.0.0", + "@azure-tools/typespec-azure-core": ">=0.68.0 <1.0.0", + "@azure-tools/typespec-azure-resource-manager": ">=0.68.0 <1.0.0", + "@azure-tools/typespec-azure-rulesets": ">=0.68.0 <1.0.0", + "@azure-tools/typespec-client-generator-core": ">=0.68.0 <1.0.0", + "@azure-tools/typespec-liftr-base": ">=0.14.0 <1.0.0", + "@typespec/compiler": "^1.12.0", + "@typespec/http": "^1.12.0", + "@typespec/openapi": "^1.12.0", + "@typespec/openapi3": "^1.12.0", + "@typespec/rest": ">=0.82.0 <1.0.0", + "@typespec/versioning": ">=0.82.0 <1.0.0", + "@typespec/xml": ">=0.82.0 <1.0.0" } }, "node_modules/@azure-tools/typespec-liftr-base": { - "version": "0.13.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-liftr-base/-/typespec-liftr-base-0.13.0.tgz", - "integrity": "sha1-vSGud1SYlpiPGU7ybeXyWL/Zxw8=", - "peer": true + "version": "0.14.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@azure-tools/typespec-liftr-base/-/typespec-liftr-base-0.14.0.tgz", + "integrity": "sha1-vZWLRgDrWTvDqGM/7VyT5X82nU4=" }, "node_modules/@babel/code-frame": { "version": "7.29.0", @@ -259,13 +252,13 @@ } }, "node_modules/@inquirer/checkbox": { - "version": "5.1.4", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/checkbox/-/checkbox-5.1.4.tgz", - "integrity": "sha1-3SCa7Bo3yy4L+h7iFrMQF208bb8=", + "version": "5.1.5", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/checkbox/-/checkbox-5.1.5.tgz", + "integrity": "sha1-NiRyudv43e6Gm2HkzMaxmLl1yVU=", "license": "MIT", "dependencies": { "@inquirer/ansi": "^2.0.5", - "@inquirer/core": "^11.1.9", + "@inquirer/core": "^11.1.10", "@inquirer/figures": "^2.0.5", "@inquirer/type": "^4.0.5" }, @@ -282,12 +275,12 @@ } }, "node_modules/@inquirer/confirm": { - "version": "6.0.12", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/confirm/-/confirm-6.0.12.tgz", - "integrity": "sha1-ejF67IEyFM7C9TObn6CSbCC/Db4=", + "version": "6.0.13", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/confirm/-/confirm-6.0.13.tgz", + "integrity": "sha1-immMo4uqtkrkaPufBOfogA70Nnw=", "license": "MIT", "dependencies": { - "@inquirer/core": "^11.1.9", + "@inquirer/core": "^11.1.10", "@inquirer/type": "^4.0.5" }, "engines": { @@ -303,9 +296,9 @@ } }, "node_modules/@inquirer/core": { - "version": "11.1.9", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/core/-/core-11.1.9.tgz", - "integrity": "sha1-l/CZ9SF/UPFowS2wCsB/UatVD7s=", + "version": "11.1.10", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/core/-/core-11.1.10.tgz", + "integrity": "sha1-urV4yxuQjdcvq3nuddUSMScMt60=", "license": "MIT", "dependencies": { "@inquirer/ansi": "^2.0.5", @@ -329,12 +322,12 @@ } }, "node_modules/@inquirer/editor": { - "version": "5.1.1", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/editor/-/editor-5.1.1.tgz", - "integrity": "sha1-3TYQXuZVwZUfMwD4Si7QuxiOOxs=", + "version": "5.1.2", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/editor/-/editor-5.1.2.tgz", + "integrity": "sha1-NdPDeMorRCxFrThofx/9BRo2jXc=", "license": "MIT", "dependencies": { - "@inquirer/core": "^11.1.9", + "@inquirer/core": "^11.1.10", "@inquirer/external-editor": "^3.0.0", "@inquirer/type": "^4.0.5" }, @@ -351,12 +344,12 @@ } }, "node_modules/@inquirer/expand": { - "version": "5.0.13", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/expand/-/expand-5.0.13.tgz", - "integrity": "sha1-hvExDW3Tiej5Svh4G4ymLtjlPw0=", + "version": "5.0.14", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/expand/-/expand-5.0.14.tgz", + "integrity": "sha1-l4q/ByvRJwSEptMkwI5J6eCljqk=", "license": "MIT", "dependencies": { - "@inquirer/core": "^11.1.9", + "@inquirer/core": "^11.1.10", "@inquirer/type": "^4.0.5" }, "engines": { @@ -402,12 +395,12 @@ } }, "node_modules/@inquirer/input": { - "version": "5.0.12", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/input/-/input-5.0.12.tgz", - "integrity": "sha1-PaIpFbiIZ7BHTSymMGYW44ujlC0=", + "version": "5.0.13", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/input/-/input-5.0.13.tgz", + "integrity": "sha1-5Vy9Zv997m2VjFK751Z15l1mRwc=", "license": "MIT", "dependencies": { - "@inquirer/core": "^11.1.9", + "@inquirer/core": "^11.1.10", "@inquirer/type": "^4.0.5" }, "engines": { @@ -423,12 +416,12 @@ } }, "node_modules/@inquirer/number": { - "version": "4.0.12", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/number/-/number-4.0.12.tgz", - "integrity": "sha1-lkpoeDxV/CqaC85aDr1vF4GKeaY=", + "version": "4.0.13", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/number/-/number-4.0.13.tgz", + "integrity": "sha1-NOnkolb9LGZiUeCC3G4s+gEEjWU=", "license": "MIT", "dependencies": { - "@inquirer/core": "^11.1.9", + "@inquirer/core": "^11.1.10", "@inquirer/type": "^4.0.5" }, "engines": { @@ -444,13 +437,13 @@ } }, "node_modules/@inquirer/password": { - "version": "5.0.12", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/password/-/password-5.0.12.tgz", - "integrity": "sha1-wdzxlyWKjPuoADJbeCh/pVpaPvg=", + "version": "5.0.13", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/password/-/password-5.0.13.tgz", + "integrity": "sha1-cnEJnBIUgUFHveYVwDgqvAu+yNE=", "license": "MIT", "dependencies": { "@inquirer/ansi": "^2.0.5", - "@inquirer/core": "^11.1.9", + "@inquirer/core": "^11.1.10", "@inquirer/type": "^4.0.5" }, "engines": { @@ -466,21 +459,21 @@ } }, "node_modules/@inquirer/prompts": { - "version": "8.4.2", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/prompts/-/prompts-8.4.2.tgz", - "integrity": "sha1-clEx2VhTsq/mEL29lFyhDwk6Heg=", + "version": "8.4.3", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/prompts/-/prompts-8.4.3.tgz", + "integrity": "sha1-g4fNbCuaDAGJVWbnNWTvjn6GTF8=", "license": "MIT", "dependencies": { - "@inquirer/checkbox": "^5.1.4", - "@inquirer/confirm": "^6.0.12", - "@inquirer/editor": "^5.1.1", - "@inquirer/expand": "^5.0.13", - "@inquirer/input": "^5.0.12", - "@inquirer/number": "^4.0.12", - "@inquirer/password": "^5.0.12", - "@inquirer/rawlist": "^5.2.8", - "@inquirer/search": "^4.1.8", - "@inquirer/select": "^5.1.4" + "@inquirer/checkbox": "^5.1.5", + "@inquirer/confirm": "^6.0.13", + "@inquirer/editor": "^5.1.2", + "@inquirer/expand": "^5.0.14", + "@inquirer/input": "^5.0.13", + "@inquirer/number": "^4.0.13", + "@inquirer/password": "^5.0.13", + "@inquirer/rawlist": "^5.2.9", + "@inquirer/search": "^4.1.9", + "@inquirer/select": "^5.1.5" }, "engines": { "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0" @@ -495,12 +488,12 @@ } }, "node_modules/@inquirer/rawlist": { - "version": "5.2.8", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/rawlist/-/rawlist-5.2.8.tgz", - "integrity": "sha1-OOF9OWfL4DVVqL//QF0B/mv+5to=", + "version": "5.2.9", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/rawlist/-/rawlist-5.2.9.tgz", + "integrity": "sha1-8ONyQIEMHdPY5qD34eBKzKjoQIU=", "license": "MIT", "dependencies": { - "@inquirer/core": "^11.1.9", + "@inquirer/core": "^11.1.10", "@inquirer/type": "^4.0.5" }, "engines": { @@ -516,12 +509,12 @@ } }, "node_modules/@inquirer/search": { - "version": "4.1.8", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/search/-/search-4.1.8.tgz", - "integrity": "sha1-H/MtgKwIWXcr2cOPvMyCgYhi7oU=", + "version": "4.1.9", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/search/-/search-4.1.9.tgz", + "integrity": "sha1-GoBygS9SRLeHxj+TiKbXrCbVfko=", "license": "MIT", "dependencies": { - "@inquirer/core": "^11.1.9", + "@inquirer/core": "^11.1.10", "@inquirer/figures": "^2.0.5", "@inquirer/type": "^4.0.5" }, @@ -538,13 +531,13 @@ } }, "node_modules/@inquirer/select": { - "version": "5.1.4", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/select/-/select-5.1.4.tgz", - "integrity": "sha1-ZRN0t2aow4FXl1JX8jcy6LxolFI=", + "version": "5.1.5", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@inquirer/select/-/select-5.1.5.tgz", + "integrity": "sha1-PwtMWt1ALmy5WKE1oqhTrk1C0yM=", "license": "MIT", "dependencies": { "@inquirer/ansi": "^2.0.5", - "@inquirer/core": "^11.1.9", + "@inquirer/core": "^11.1.10", "@inquirer/figures": "^2.0.5", "@inquirer/type": "^4.0.5" }, @@ -589,119 +582,110 @@ "node": ">=18.0.0" } }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=", + "node_modules/@scalar/helpers": { + "version": "0.6.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/helpers/-/helpers-0.6.0.tgz", + "integrity": "sha1-/MTXfM7XipaytKUkZJynoTsMVhw=", "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, "engines": { - "node": ">= 8" + "node": ">=22" } }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=", + "node_modules/@scalar/json-magic": { + "version": "0.12.12", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/json-magic/-/json-magic-0.12.12.tgz", + "integrity": "sha1-qz6DMh6kQpGjUMY+HuFo1uNgcXk=", "license": "MIT", + "dependencies": { + "@scalar/helpers": "0.6.0", + "pathe": "^2.0.3", + "yaml": "^2.8.3" + }, "engines": { - "node": ">= 8" + "node": ">=22" } }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=", + "node_modules/@scalar/openapi-parser": { + "version": "0.25.12", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/openapi-parser/-/openapi-parser-0.25.12.tgz", + "integrity": "sha1-gCtqmPEn+FnpRKcBnIQa1YtTw8w=", "license": "MIT", "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "@scalar/helpers": "0.5.2", + "@scalar/json-magic": "0.12.8", + "@scalar/openapi-types": "0.8.0", + "@scalar/openapi-upgrader": "0.2.6", + "ajv": "^8.17.1", + "ajv-draft-04": "^1.0.0", + "ajv-formats": "^3.0.1", + "jsonpointer": "^5.0.1", + "leven": "^4.0.0", + "yaml": "^2.8.0" }, "engines": { - "node": ">= 8" + "node": ">=22" } }, - "node_modules/@scalar/helpers": { - "version": "0.2.18", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/helpers/-/helpers-0.2.18.tgz", - "integrity": "sha1-TVdaUcEfMS+KKYDYfmoUR5XHeuQ=", + "node_modules/@scalar/openapi-parser/node_modules/@scalar/helpers": { + "version": "0.5.2", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/helpers/-/helpers-0.5.2.tgz", + "integrity": "sha1-d3HF8D3UsBQHHZ0yEGkRP+1DhyA=", "license": "MIT", "engines": { - "node": ">=20" + "node": ">=22" } }, - "node_modules/@scalar/json-magic": { - "version": "0.11.7", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/json-magic/-/json-magic-0.11.7.tgz", - "integrity": "sha1-aWUVmzjQ3PJBtEhfZzOSMTm5SDo=", + "node_modules/@scalar/openapi-parser/node_modules/@scalar/json-magic": { + "version": "0.12.8", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/json-magic/-/json-magic-0.12.8.tgz", + "integrity": "sha1-UpZ+hwj016cgNAM3kKQ0643xtck=", "license": "MIT", "dependencies": { - "@scalar/helpers": "0.2.18", + "@scalar/helpers": "0.5.2", "pathe": "^2.0.3", "yaml": "^2.8.0" }, "engines": { - "node": ">=20" + "node": ">=22" } }, - "node_modules/@scalar/openapi-parser": { - "version": "0.24.17", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/openapi-parser/-/openapi-parser-0.24.17.tgz", - "integrity": "sha1-ZKbpp96fY0K/o5GsFomi7JXfhxs=", + "node_modules/@scalar/openapi-parser/node_modules/@scalar/openapi-types": { + "version": "0.8.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/openapi-types/-/openapi-types-0.8.0.tgz", + "integrity": "sha1-FV8wOAKkQhWtt/KdaSp4VWG5PZQ=", "license": "MIT", - "dependencies": { - "@scalar/helpers": "0.2.18", - "@scalar/json-magic": "0.11.7", - "@scalar/openapi-types": "0.5.4", - "@scalar/openapi-upgrader": "0.1.11", - "ajv": "^8.17.1", - "ajv-draft-04": "^1.0.0", - "ajv-formats": "^3.0.1", - "jsonpointer": "^5.0.1", - "leven": "^4.0.0", - "yaml": "^2.8.0" - }, "engines": { - "node": ">=20" + "node": ">=22" } }, "node_modules/@scalar/openapi-types": { - "version": "0.5.4", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/openapi-types/-/openapi-types-0.5.4.tgz", - "integrity": "sha1-EK0BansC6fRp4UjDJTyutfDfMGY=", + "version": "0.7.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/openapi-types/-/openapi-types-0.7.0.tgz", + "integrity": "sha1-5FQOWctwvQqXUHutNhdVqbgj+mg=", "license": "MIT", - "dependencies": { - "zod": "^4.3.5" - }, "engines": { - "node": ">=20" + "node": ">=22" } }, "node_modules/@scalar/openapi-upgrader": { - "version": "0.1.11", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/openapi-upgrader/-/openapi-upgrader-0.1.11.tgz", - "integrity": "sha1-uu2g7u9PQLQemhX7HpPUj7Ss6OE=", + "version": "0.2.6", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/openapi-upgrader/-/openapi-upgrader-0.2.6.tgz", + "integrity": "sha1-oK5FeLWofb2lrli5UExmYwtgIbE=", "license": "MIT", "dependencies": { - "@scalar/openapi-types": "0.5.4" + "@scalar/openapi-types": "0.8.0" }, "engines": { - "node": ">=20" + "node": ">=22" } }, - "node_modules/@sindresorhus/merge-streams": { - "version": "4.0.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", - "integrity": "sha1-q7Edma620n8bVjw4FHpy1QBY4zk=", + "node_modules/@scalar/openapi-upgrader/node_modules/@scalar/openapi-types": { + "version": "0.8.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@scalar/openapi-types/-/openapi-types-0.8.0.tgz", + "integrity": "sha1-FV8wOAKkQhWtt/KdaSp4VWG5PZQ=", "license": "MIT", "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=22" } }, "node_modules/@typespec/asset-emitter": { @@ -717,63 +701,60 @@ } }, "node_modules/@typespec/compiler": { - "version": "1.11.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/compiler/-/compiler-1.11.0.tgz", - "integrity": "sha1-hPcuoVSS30TNgo/tKDdwFdnYZGU=", + "version": "1.12.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/compiler/-/compiler-1.12.0.tgz", + "integrity": "sha1-alDLomdJb5FTFhmFzGUf8RMlwJU=", "license": "MIT", - "peer": true, "dependencies": { - "@babel/code-frame": "~7.29.0", - "@inquirer/prompts": "^8.3.0", - "ajv": "~8.18.0", - "change-case": "~5.4.4", + "@babel/code-frame": "^7.29.0", + "@inquirer/prompts": "^8.4.1", + "ajv": "^8.18.0", + "change-case": "^5.4.4", "env-paths": "^4.0.0", - "globby": "~16.1.1", "is-unicode-supported": "^2.1.0", - "mustache": "~4.2.0", - "picocolors": "~1.1.1", - "prettier": "~3.8.1", + "mustache": "^4.2.0", + "picocolors": "^1.1.1", + "prettier": "^3.8.1", "semver": "^7.7.4", - "tar": "^7.5.11", + "tar": "^7.5.13", "temporal-polyfill": "^0.3.2", - "vscode-languageserver": "~9.0.1", - "vscode-languageserver-textdocument": "~1.0.12", - "yaml": "~2.8.2", - "yargs": "~18.0.0" + "vscode-languageserver": "^9.0.1", + "vscode-languageserver-textdocument": "^1.0.12", + "yaml": "^2.8.3", + "yargs": "^18.0.0" }, "bin": { "tsp": "cmd/tsp.js", "tsp-server": "cmd/tsp-server.js" }, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" } }, "node_modules/@typespec/events": { - "version": "0.81.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/events/-/events-0.81.0.tgz", - "integrity": "sha1-OM9Nd5O9Nszh3WuI2J1aTLz7vs4=", + "version": "0.82.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/events/-/events-0.82.0.tgz", + "integrity": "sha1-ZTt4ALonDKvu5JutGYRK8pYtkOk=", "license": "MIT", "peer": true, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.11.0" + "@typespec/compiler": "^1.12.0" } }, "node_modules/@typespec/http": { - "version": "1.11.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/http/-/http-1.11.0.tgz", - "integrity": "sha1-2DDcIQwFrW3kFM8mgCSsoblHHgU=", + "version": "1.12.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/http/-/http-1.12.0.tgz", + "integrity": "sha1-PV0vF1PBcFIi5Yfomy+/NoVTS9I=", "license": "MIT", - "peer": true, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.11.0", - "@typespec/streams": "^0.81.0" + "@typespec/compiler": "^1.12.0", + "@typespec/streams": "^0.82.0" }, "peerDependenciesMeta": { "@typespec/streams": { @@ -782,47 +763,45 @@ } }, "node_modules/@typespec/openapi": { - "version": "1.11.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/openapi/-/openapi-1.11.0.tgz", - "integrity": "sha1-beMMH7RG0EiDN19Yxu5oMHzF46E=", + "version": "1.12.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/openapi/-/openapi-1.12.0.tgz", + "integrity": "sha1-i4M5YNDq7Cl8mXGpeuQqO1jHvzo=", "license": "MIT", - "peer": true, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.11.0", - "@typespec/http": "^1.11.0" + "@typespec/compiler": "^1.12.0", + "@typespec/http": "^1.12.0" } }, "node_modules/@typespec/openapi3": { - "version": "1.11.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/openapi3/-/openapi3-1.11.0.tgz", - "integrity": "sha1-gboH53qZkoiuqLSH9Lwq6caXvm0=", + "version": "1.12.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/openapi3/-/openapi3-1.12.0.tgz", + "integrity": "sha1-3somjjBYUoWaeDKdiSBGAkt4FSI=", "license": "MIT", - "peer": true, "dependencies": { - "@scalar/json-magic": "^0.11.5", - "@scalar/openapi-parser": "^0.24.1", - "@scalar/openapi-types": "^0.5.0", + "@scalar/json-magic": "^0.12.5", + "@scalar/openapi-parser": "^0.25.8", + "@scalar/openapi-types": "^0.7.0", "@typespec/asset-emitter": "^0.79.1", - "yaml": "~2.8.2" + "yaml": "^2.8.3" }, "bin": { "tsp-openapi3": "cmd/tsp-openapi3.js" }, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.11.0", - "@typespec/events": "^0.81.0", - "@typespec/http": "^1.11.0", - "@typespec/json-schema": "^1.11.0", - "@typespec/openapi": "^1.11.0", - "@typespec/sse": "^0.81.0", - "@typespec/streams": "^0.81.0", - "@typespec/versioning": "^0.81.0" + "@typespec/compiler": "^1.12.0", + "@typespec/events": "^0.82.0", + "@typespec/http": "^1.12.0", + "@typespec/json-schema": "^1.12.0", + "@typespec/openapi": "^1.12.0", + "@typespec/sse": "^0.82.0", + "@typespec/streams": "^0.82.0", + "@typespec/versioning": "^0.82.0" }, "peerDependenciesMeta": { "@typespec/events": { @@ -846,80 +825,76 @@ } }, "node_modules/@typespec/rest": { - "version": "0.81.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/rest/-/rest-0.81.0.tgz", - "integrity": "sha1-VZzPWa89cJC65WBcHsXOo41lg1o=", + "version": "0.82.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/rest/-/rest-0.82.0.tgz", + "integrity": "sha1-7Evi46ksdf0XRaesYO1JBLLqhLo=", "license": "MIT", - "peer": true, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.11.0", - "@typespec/http": "^1.11.0" + "@typespec/compiler": "^1.12.0", + "@typespec/http": "^1.12.0" } }, "node_modules/@typespec/sse": { - "version": "0.81.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/sse/-/sse-0.81.0.tgz", - "integrity": "sha1-dX+xLoc7DjQr9hNoXkoO2ucOxzI=", + "version": "0.82.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/sse/-/sse-0.82.0.tgz", + "integrity": "sha1-/WonW5tvodZ2VmvwPyLHFSAI/6o=", "license": "MIT", "peer": true, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.11.0", - "@typespec/events": "^0.81.0", - "@typespec/http": "^1.11.0", - "@typespec/streams": "^0.81.0" + "@typespec/compiler": "^1.12.0", + "@typespec/events": "^0.82.0", + "@typespec/http": "^1.12.0", + "@typespec/streams": "^0.82.0" } }, "node_modules/@typespec/streams": { - "version": "0.81.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/streams/-/streams-0.81.0.tgz", - "integrity": "sha1-1chGvw1R3pC07KM7Yt2ng/A76GQ=", + "version": "0.82.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/streams/-/streams-0.82.0.tgz", + "integrity": "sha1-f293NC8fHaogrIjETdg8jgkeyK4=", "license": "MIT", "peer": true, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.11.0" + "@typespec/compiler": "^1.12.0" } }, "node_modules/@typespec/versioning": { - "version": "0.81.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/versioning/-/versioning-0.81.0.tgz", - "integrity": "sha1-iTMEF5iZ1J+xRVx+1ZehbpB16Ts=", + "version": "0.82.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/versioning/-/versioning-0.82.0.tgz", + "integrity": "sha1-S+Aa6s4LLgS93IkSl513AY6uqRc=", "license": "MIT", - "peer": true, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.11.0" + "@typespec/compiler": "^1.12.0" } }, "node_modules/@typespec/xml": { - "version": "0.81.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/xml/-/xml-0.81.0.tgz", - "integrity": "sha1-xVtj9FqTPpoCLNp7OUpsPQ8ULK0=", + "version": "0.82.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/@typespec/xml/-/xml-0.82.0.tgz", + "integrity": "sha1-vCRBYe0CRzqtqNWvu8pR8PvmhWQ=", "license": "MIT", - "peer": true, "engines": { - "node": ">=20.0.0" + "node": ">=22.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.11.0" + "@typespec/compiler": "^1.12.0" } }, "node_modules/ajv": { - "version": "8.18.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/ajv/-/ajv-8.18.0.tgz", - "integrity": "sha1-iGQYa2c40APrOpMxcrs4M+EM77w=", + "version": "8.20.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/ajv/-/ajv-8.20.0.tgz", + "integrity": "sha1-MEs2Nq3Yi6fZNnYN1Q7OAG3qlfk=", "license": "MIT", - "peer": true, "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", @@ -992,18 +967,6 @@ "integrity": "sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=", "license": "Python-2.0" }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/braces/-/braces-3.0.3.tgz", - "integrity": "sha1-SQMy9AkZRSJy1VqEgK3AxEE1h4k=", - "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/change-case": { "version": "5.4.4", "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/change-case/-/change-case-5.4.4.tgz", @@ -1084,22 +1047,6 @@ "integrity": "sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=", "license": "MIT" }, - "node_modules/fast-glob": { - "version": "3.3.3", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/fast-glob/-/fast-glob-3.3.3.tgz", - "integrity": "sha1-0G1YXOjbqQoWsFBcVDw8z7OuuBg=", - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.8" - }, - "engines": { - "node": ">=8.6.0" - } - }, "node_modules/fast-string-truncated-width": { "version": "3.0.3", "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/fast-string-truncated-width/-/fast-string-truncated-width-3.0.3.tgz", @@ -1116,9 +1063,9 @@ } }, "node_modules/fast-uri": { - "version": "3.1.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/fast-uri/-/fast-uri-3.1.0.tgz", - "integrity": "sha1-Zu7P9sdkwN+bdi5iyn7c+1O07fo=", + "version": "3.1.2", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/fast-uri/-/fast-uri-3.1.2.tgz", + "integrity": "sha1-ivPU/J0+cbEVcswmc7UUp9GoyOw=", "funding": [ { "type": "github", @@ -1140,27 +1087,6 @@ "fast-string-width": "^3.0.2" } }, - "node_modules/fastq": { - "version": "1.20.1", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/fastq/-/fastq-1.20.1.tgz", - "integrity": "sha1-ynUKENySW8ixiDn9ID4+9LPO1nU=", - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha1-RCZdPKwH4+p9wkdRY4BkN1SgUpI=", - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -1171,9 +1097,9 @@ } }, "node_modules/get-east-asian-width": { - "version": "1.5.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/get-east-asian-width/-/get-east-asian-width-1.5.0.tgz", - "integrity": "sha1-znAI/jRe3PVJem9VfPpUvDGKnOc=", + "version": "1.6.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz", + "integrity": "sha1-IWkA+R3xGossGYw+HZPWwDWndrk=", "license": "MIT", "engines": { "node": ">=18" @@ -1182,38 +1108,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=", - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/globby": { - "version": "16.1.1", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/globby/-/globby-16.1.1.tgz", - "integrity": "sha1-omAS9XuBnwSRyDTb8J+JsM5roQQ=", - "license": "MIT", - "dependencies": { - "@sindresorhus/merge-streams": "^4.0.0", - "fast-glob": "^3.3.3", - "ignore": "^7.0.5", - "is-path-inside": "^4.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.4.0" - }, - "engines": { - "node": ">=20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/graceful-fs/-/graceful-fs-4.2.11.tgz", @@ -1236,57 +1130,6 @@ "url": "https://opencollective.com/express" } }, - "node_modules/ignore": { - "version": "7.0.5", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/ignore/-/ignore-7.0.5.tgz", - "integrity": "sha1-TLX2zX1MerA2VzjHrqiIuqbX79k=", - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha1-ZPYeQsu7LuwgcanawLKLoeZdUIQ=", - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=", - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-path-inside": { - "version": "4.0.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/is-path-inside/-/is-path-inside-4.0.0.tgz", - "integrity": "sha1-gFrrYsR8GxL8P9E7+z7R50MAcds=", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-safe-filename": { "version": "0.1.1", "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/is-safe-filename/-/is-safe-filename-0.1.1.tgz", @@ -1362,28 +1205,6 @@ "integrity": "sha1-/ytmwfYybVlRPeJAe/iBQ5gSdxw=", "license": "MIT" }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=", - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha1-1m+hjzpHB2eJMgubGvMr2G2fogI=", - "license": "MIT", - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, "node_modules/minipass": { "version": "7.1.3", "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/minipass/-/minipass-7.1.3.tgz", @@ -1435,18 +1256,6 @@ "integrity": "sha1-PTIa8+q5ObCDyPkpodEs2oHCa2s=", "license": "ISC" }, - "node_modules/picomatch": { - "version": "2.3.2", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/picomatch/-/picomatch-2.3.2.tgz", - "integrity": "sha1-WpQpFeJrNy3A8OZ1MUmhbmscVgE=", - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, "node_modules/pluralize": { "version": "8.0.0", "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/pluralize/-/pluralize-8.0.0.tgz", @@ -1484,26 +1293,6 @@ "node": ">=4.0.0" } }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha1-SSkii7xyTfrEPg77BYyve2z7YkM=", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, "node_modules/require-from-string": { "version": "2.0.2", "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/require-from-string/-/require-from-string-2.0.2.tgz", @@ -1522,39 +1311,6 @@ "node": "*" } }, - "node_modules/reusify": { - "version": "1.1.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/reusify/-/reusify-1.1.0.tgz", - "integrity": "sha1-D+E7lSLhRz9RtVjueW4I8R+bSJ8=", - "license": "MIT", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/safer-buffer/-/safer-buffer-2.1.2.tgz", @@ -1562,9 +1318,9 @@ "license": "MIT" }, "node_modules/semver": { - "version": "7.7.4", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/semver/-/semver-7.7.4.tgz", - "integrity": "sha1-KEZONgYOmR+noR0CedLT87V6foo=", + "version": "7.8.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/semver/-/semver-7.8.0.tgz", + "integrity": "sha1-7QZhA5/LzaLOcfAfpq2++qdwQN8=", "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -1585,18 +1341,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/slash": { - "version": "5.1.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/slash/-/slash-5.1.0.tgz", - "integrity": "sha1-vjrd3N8JrDjuvo3Nx7GlenWwlc4=", - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/string-width": { "version": "7.2.0", "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/string-width/-/string-width-7.2.0.tgz", @@ -1630,9 +1374,9 @@ } }, "node_modules/tar": { - "version": "7.5.13", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/tar/-/tar-7.5.13.tgz", - "integrity": "sha1-DSFO1WeBom7cMTWBwOLZKc7rhm0=", + "version": "7.5.15", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/tar/-/tar-7.5.15.tgz", + "integrity": "sha1-r+bRMWzd9hSlZuOBPkL+Aa7Ub+4=", "license": "BlueOak-1.0.0", "dependencies": { "@isaacs/fs-minipass": "^4.0.0", @@ -1660,30 +1404,6 @@ "integrity": "sha1-CILPKVSqxoOiSEIItfXMc2a/3RQ=", "license": "ISC" }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=", - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/unicorn-magic": { - "version": "0.4.0", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/unicorn-magic/-/unicorn-magic-0.4.0.tgz", - "integrity": "sha1-eMagkP1tB6vSRouDs4VgPgDf2yQ=", - "license": "MIT", - "engines": { - "node": ">=20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/vscode-jsonrpc": { "version": "8.2.0", "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz", @@ -1763,9 +1483,9 @@ } }, "node_modules/yaml": { - "version": "2.8.3", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/yaml/-/yaml-2.8.3.tgz", - "integrity": "sha1-oNa9Lvs90DxZNwIjcBg05gQJvX0=", + "version": "2.9.0", + "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/yaml/-/yaml-2.9.0.tgz", + "integrity": "sha1-eCdK/ZNZih391hMN9qVm3vy/mqQ=", "license": "ISC", "bin": { "yaml": "bin.mjs" @@ -1802,15 +1522,6 @@ "engines": { "node": "^20.19.0 || ^22.12.0 || >=23" } - }, - "node_modules/zod": { - "version": "4.3.6", - "resolved": "https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js/npm/registry/zod/-/zod-4.3.6.tgz", - "integrity": "sha1-icVuCqfSsFEH2JRBIicIeIWrESo=", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/colinhacks" - } } } } diff --git a/eng/emitter-package.json b/eng/emitter-package.json index 0ecf18db2d9f..f73e209d51f7 100644 --- a/eng/emitter-package.json +++ b/eng/emitter-package.json @@ -1,22 +1,22 @@ { "main": "dist/src/index.js", "dependencies": { - "@azure-tools/typespec-java": "0.44.6" + "@azure-tools/typespec-java": "0.45.0" }, "devDependencies": { "@azure-tools/openai-typespec": "1.11.0", - "@azure-tools/typespec-autorest": "0.67.0", - "@azure-tools/typespec-azure-core": "0.67.1", - "@azure-tools/typespec-azure-resource-manager": "0.67.1", - "@azure-tools/typespec-azure-rulesets": "0.67.0", - "@azure-tools/typespec-client-generator-core": "0.67.3", - "@azure-tools/typespec-liftr-base": "0.13.0", - "@typespec/compiler": "1.11.0", - "@typespec/http": "1.11.0", - "@typespec/openapi": "1.11.0", - "@typespec/rest": "0.81.0", - "@typespec/versioning": "0.81.0", - "@typespec/xml": "0.81.0", - "@typespec/openapi3": "1.11.0" + "@azure-tools/typespec-autorest": "0.68.0", + "@azure-tools/typespec-azure-core": "0.68.0", + "@azure-tools/typespec-azure-resource-manager": "0.68.0", + "@azure-tools/typespec-azure-rulesets": "0.68.0", + "@azure-tools/typespec-client-generator-core": "0.68.0", + "@azure-tools/typespec-liftr-base": "0.14.0", + "@typespec/compiler": "1.12.0", + "@typespec/http": "1.12.0", + "@typespec/openapi": "1.12.0", + "@typespec/rest": "0.82.0", + "@typespec/versioning": "0.82.0", + "@typespec/xml": "0.82.0", + "@typespec/openapi3": "1.12.0" } } \ No newline at end of file diff --git a/eng/lintingconfigs/revapi/track2/revapi.json b/eng/lintingconfigs/revapi/track2/revapi.json index 2a4bdca5978d..4bf3cceba77c 100644 --- a/eng/lintingconfigs/revapi/track2/revapi.json +++ b/eng/lintingconfigs/revapi/track2/revapi.json @@ -974,6 +974,32 @@ "old": "field com.azure.resourcemanager.network.models.FirewallPolicyIntrusionDetectionProfileType.STANDARD", "justification": "Service no longer defines this intrusion detection profile type; enum values were removed during TypeSpec/Swagger alignment and are not supported by the backend." }, + { + "ignore": true, + "code": "java.class.removed", + "old": "class com.azure.resourcemanager.network.models.CreatedByType", + "justification": "CreatedByType was a duplicate of com.azure.core.management.CreatedByType; removed during codegen alignment." + }, + { + "ignore": true, + "code": "java.class.removed", + "old": "class com.azure.resourcemanager.network.models.SecurityPerimeterSystemData", + "justification": "SecurityPerimeterSystemData was a duplicate of com.azure.core.management.SystemData; removed during codegen alignment." + }, + { + "ignore": true, + "code": "java.method.returnTypeChanged", + "old": "method com.azure.resourcemanager.network.models.SecurityPerimeterSystemData com.azure.resourcemanager.network.models.SecurityPerimeterProxyResource::systemData()", + "new": "method com.azure.core.management.SystemData com.azure.resourcemanager.network.models.SecurityPerimeterProxyResource::systemData()", + "justification": "Return type changed from duplicate SecurityPerimeterSystemData to com.azure.core.management.SystemData during codegen alignment." + }, + { + "ignore": true, + "code": "java.method.returnTypeChanged", + "old": "method com.azure.resourcemanager.network.models.SecurityPerimeterSystemData com.azure.resourcemanager.network.models.SecurityPerimeterResource::systemData()", + "new": "method com.azure.core.management.SystemData com.azure.resourcemanager.network.models.SecurityPerimeterResource::systemData()", + "justification": "Return type changed from duplicate SecurityPerimeterSystemData to com.azure.core.management.SystemData during codegen alignment." + }, { "code": "java.method.removed", "old": "method com.azure.resourcemanager.compute.models.ExecutedValidation com.azure.resourcemanager.compute.models.ExecutedValidation::withStatus(com.azure.resourcemanager.compute.models.ValidationStatus)", diff --git a/eng/scripts/Compare-CurrentToCodegeneration.ps1 b/eng/scripts/Compare-CurrentToCodegeneration.ps1 index 459d99d31b06..37a2d833935f 100644 --- a/eng/scripts/Compare-CurrentToCodegeneration.ps1 +++ b/eng/scripts/Compare-CurrentToCodegeneration.ps1 @@ -176,9 +176,17 @@ $generateScript = { throw } } finally { - Get-ChildItem -Path $directory -Filter TempTypeSpecFiles -Recurse -Directory | ForEach-Object { - Remove-Item -Path $_.FullName -Recurse -Force | Out-Null - } + # Sort by descending path length so deepest TempTypeSpecFiles copies are + # removed first. An outer TempTypeSpecFiles can contain nested copies inside + # node_modules/@azure-tools//TempTypeSpecFiles; without sorting, + # the recursive removal of an outer match can wipe a path that a later + # iteration still expects to exist. SilentlyContinue covers the residual + # cross-root race where deletion order alone is not enough. + Get-ChildItem -Path $directory -Filter TempTypeSpecFiles -Recurse -Directory | + Sort-Object -Property { $_.FullName.Length } -Descending | + ForEach-Object { + Remove-Item -Path $_.FullName -Recurse -Force -ErrorAction SilentlyContinue | Out-Null + } } # Update code snippets before comparing the diff diff --git a/eng/versioning/external_dependencies.txt b/eng/versioning/external_dependencies.txt index bd40c705e6d1..1b8a1ece419d 100644 --- a/eng/versioning/external_dependencies.txt +++ b/eng/versioning/external_dependencies.txt @@ -280,6 +280,9 @@ cosmos_org.testcontainers:kafka;1.21.4 cosmos_org.sourcelab:kafka-connect-client;4.0.4 cosmos_io.confluent:kafka-avro-serializer;7.6.0 cosmos_org.apache.avro:avro;1.11.4 +cosmos_org.apache.logging.log4j:log4j-api;2.25.3 +cosmos_org.apache.logging.log4j:log4j-core;2.25.3 +cosmos_org.apache.logging.log4j:log4j-slf4j-impl;2.25.3 # Maven Tools for Cosmos Kafka connector only # sdk\resourcemanager\azure-resourcemanager\pom.xml diff --git a/eng/versioning/version_client.txt b/eng/versioning/version_client.txt index 47133613dc9b..7e7bcee7d741 100644 --- a/eng/versioning/version_client.txt +++ b/eng/versioning/version_client.txt @@ -197,17 +197,17 @@ com.azure:azure-sdk-template-three;1.0.0-beta.1;1.0.0-beta.1 com.azure.v2:azure-sdk-template;1.0.1-beta.1;1.0.1-beta.1 com.azure.v2:azure-sdk-template-two;1.0.0-beta.1;1.0.0-beta.1 com.azure.v2:azure-sdk-template-three;1.0.0-beta.1;1.0.0-beta.1 -com.azure:azure-storage-blob;12.33.4;12.34.0 -com.azure:azure-storage-blob-batch;12.29.4;12.30.0 +com.azure:azure-storage-blob;12.33.4;12.35.0-beta.2 +com.azure:azure-storage-blob-batch;12.29.4;12.31.0-beta.2 com.azure:azure-storage-blob-changefeed;12.0.0-beta.36;12.0.0-beta.37 -com.azure:azure-storage-blob-cryptography;12.32.4;12.33.0 +com.azure:azure-storage-blob-cryptography;12.32.4;12.34.0-beta.2 com.azure:azure-storage-blob-nio;12.0.0-beta.37;12.0.0-beta.38 -com.azure:azure-storage-common;12.32.3;12.33.0 -com.azure:azure-storage-file-share;12.29.3;12.30.0 -com.azure:azure-storage-file-datalake;12.26.4;12.27.0 -com.azure:azure-storage-internal-avro;12.18.3;12.19.0 +com.azure:azure-storage-common;12.32.3;12.34.0-beta.2 +com.azure:azure-storage-file-share;12.29.3;12.31.0-beta.2 +com.azure:azure-storage-file-datalake;12.26.4;12.28.0-beta.2 +com.azure:azure-storage-internal-avro;12.18.3;12.20.0-beta.2 com.azure:azure-storage-perf;1.0.0-beta.1;1.0.0-beta.1 -com.azure:azure-storage-queue;12.28.3;12.29.0 +com.azure:azure-storage-queue;12.28.3;12.30.0-beta.2 com.azure:azure-template-perf;1.0.0-beta.1;1.0.0-beta.1 com.azure:azure-template-stress;1.0.0-beta.1;1.0.0-beta.1 com.azure:azure-xml;1.2.1;1.3.0-beta.1 diff --git a/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java b/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java index 625261bd4060..9460a984a8fc 100644 --- a/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java +++ b/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java @@ -1,10 +1,13 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) TypeSpec Code Generator. -package com.azure.ai.agents.implementation.models; +package com.azure.ai.projects.implementation.models; +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/CreateSkillRequest.java +======== import com.azure.ai.agents.models.AgentBlueprintReference; import com.azure.ai.agents.models.AgentDefinition; +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java import com.azure.core.annotation.Fluent; import com.azure.core.annotation.Generated; import com.azure.json.JsonReader; @@ -15,26 +18,35 @@ import java.util.Map; /** -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/CreateAgentRequest.java - * The CreateAgentRequest model. +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/CreateSkillRequest.java + * The CreateSkillRequest model. */ @Fluent -public final class CreateAgentRequest implements JsonSerializable { +public final class CreateSkillRequest implements JsonSerializable { /* - * The unique name that identifies the agent. Name can be used to retrieve/update/delete the agent. - * - Must start and end with alphanumeric characters, - * - Can contain hyphens in the middle - * - Must not exceed 63 characters. + * The unique name of the skill. */ @Generated - private final String agentName; + private final String name; ======== * The UpdateAgentRequest model. */ @Fluent public final class UpdateAgentRequest implements JsonSerializable { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java + + /* + * A human-readable description of the skill. + */ + @Generated + private String description; + + /* + * Instructions that define the behavior of the skill. + */ + @Generated + private String instructions; /* * Set of 16 key-value pairs that can be attached to an object. This can be @@ -47,57 +59,84 @@ public final class UpdateAgentRequest implements JsonSerializable metadata; - /* - * A human-readable description of the agent. + /** +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/CreateSkillRequest.java + * Creates an instance of CreateSkillRequest class. + * + * @param name the name value to set. */ @Generated - private String description; + public CreateSkillRequest(String name) { + this.name = name; + } - /* - * The agent definition. This can be a workflow, hosted agent, or a simple agent definition. + /** + * Get the name property: The unique name of the skill. + * + * @return the name value. */ @Generated - private final AgentDefinition definition; + public String getName() { + return this.name; + } /** -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/CreateAgentRequest.java - * Creates an instance of CreateAgentRequest class. + * Get the description property: A human-readable description of the skill. * - * @param agentName the agentName value to set. - * @param definition the definition value to set. + * @return the description value. */ @Generated - public CreateAgentRequest(String agentName, AgentDefinition definition) { - this.agentName = agentName; -======== - * Creates an instance of UpdateAgentRequest class. + public String getDescription() { + return this.description; + } + + /** + * Set the description property: A human-readable description of the skill. * - * @param definition the definition value to set. + * @param description the description value to set. + * @return the CreateSkillRequest object itself. */ @Generated - public UpdateAgentRequest(AgentDefinition definition) { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java - this.definition = definition; + public CreateSkillRequest setDescription(String description) { + this.description = description; + return this; } /** -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/CreateAgentRequest.java - * Get the agentName property: The unique name that identifies the agent. Name can be used to retrieve/update/delete - * the agent. - * - Must start and end with alphanumeric characters, - * - Can contain hyphens in the middle - * - Must not exceed 63 characters. + * Get the instructions property: Instructions that define the behavior of the skill. * - * @return the agentName value. + * @return the instructions value. */ @Generated - public String getAgentName() { - return this.agentName; + public String getInstructions() { + return this.instructions; + } + + /** + * Set the instructions property: Instructions that define the behavior of the skill. + * + * @param instructions the instructions value to set. + * @return the CreateSkillRequest object itself. + */ + @Generated + public CreateSkillRequest setInstructions(String instructions) { + this.instructions = instructions; + return this; } /** ======== ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java + * Creates an instance of UpdateAgentRequest class. + * + * @param definition the definition value to set. + */ + @Generated + public UpdateAgentRequest(AgentDefinition definition) { + this.definition = definition; + } + + /** +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java * Get the metadata property: Set of 16 key-value pairs that can be attached to an object. This can be * useful for storing additional information about the object in a structured * format, and querying for objects via API or the dashboard. @@ -121,22 +160,24 @@ public Map getMetadata() { * with a maximum length of 512 characters. * * @param metadata the metadata value to set. -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/CreateAgentRequest.java - * @return the CreateAgentRequest object itself. +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/CreateSkillRequest.java + * @return the CreateSkillRequest object itself. */ @Generated - public CreateAgentRequest setMetadata(Map metadata) { + public CreateSkillRequest setMetadata(Map metadata) { ======== * @return the UpdateAgentRequest object itself. */ @Generated public UpdateAgentRequest setMetadata(Map metadata) { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java this.metadata = metadata; return this; } /** +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/CreateSkillRequest.java +======== * Get the description property: A human-readable description of the agent. * * @return the description value. @@ -150,17 +191,10 @@ public String getDescription() { * Set the description property: A human-readable description of the agent. * * @param description the description value to set. -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/CreateAgentRequest.java - * @return the CreateAgentRequest object itself. - */ - @Generated - public CreateAgentRequest setDescription(String description) { -======== * @return the UpdateAgentRequest object itself. */ @Generated public UpdateAgentRequest setDescription(String description) { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java this.description = description; return this; } @@ -177,37 +211,55 @@ public AgentDefinition getDefinition() { } /** +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java * {@inheritDoc} */ @Generated @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/CreateAgentRequest.java - jsonWriter.writeStringField("name", this.agentName); +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/CreateSkillRequest.java + jsonWriter.writeStringField("name", this.name); + jsonWriter.writeStringField("description", this.description); + jsonWriter.writeStringField("instructions", this.instructions); + jsonWriter.writeMapField("metadata", this.metadata, (writer, element) -> writer.writeString(element)); ======== ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java jsonWriter.writeJsonField("definition", this.definition); jsonWriter.writeMapField("metadata", this.metadata, (writer, element) -> writer.writeString(element)); jsonWriter.writeStringField("description", this.description); jsonWriter.writeJsonField("blueprint_reference", this.blueprintReference); +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java return jsonWriter.writeEndObject(); } /** -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/CreateAgentRequest.java - * Reads an instance of CreateAgentRequest from the JsonReader. +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/CreateSkillRequest.java + * Reads an instance of CreateSkillRequest from the JsonReader. * * @param jsonReader The JsonReader being read. - * @return An instance of CreateAgentRequest if the JsonReader was pointing to an instance of it, or null if it was + * @return An instance of CreateSkillRequest if the JsonReader was pointing to an instance of it, or null if it was * pointing to JSON null. * @throws IllegalStateException If the deserialized JSON object was missing any required properties. - * @throws IOException If an error occurs while reading the CreateAgentRequest. + * @throws IOException If an error occurs while reading the CreateSkillRequest. */ @Generated - public static CreateAgentRequest fromJson(JsonReader jsonReader) throws IOException { + public static CreateSkillRequest fromJson(JsonReader jsonReader) throws IOException { return jsonReader.readObject(reader -> { - String agentName = null; + String name = null; + String description = null; + String instructions = null; + Map metadata = null; + while (reader.nextToken() != JsonToken.END_OBJECT) { + String fieldName = reader.getFieldName(); + reader.nextToken(); + if ("name".equals(fieldName)) { + name = reader.getString(); + } else if ("description".equals(fieldName)) { + description = reader.getString(); + } else if ("instructions".equals(fieldName)) { + instructions = reader.getString(); + } else if ("metadata".equals(fieldName)) { + metadata = reader.readMap(reader1 -> reader1.getString()); ======== * Reads an instance of UpdateAgentRequest from the JsonReader. * @@ -220,7 +272,6 @@ public static CreateAgentRequest fromJson(JsonReader jsonReader) throws IOExcept @Generated public static UpdateAgentRequest fromJson(JsonReader jsonReader) throws IOException { return jsonReader.readObject(reader -> { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java AgentDefinition definition = null; Map metadata = null; String description = null; @@ -228,13 +279,7 @@ public static UpdateAgentRequest fromJson(JsonReader jsonReader) throws IOExcept while (reader.nextToken() != JsonToken.END_OBJECT) { String fieldName = reader.getFieldName(); reader.nextToken(); -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/CreateAgentRequest.java - if ("name".equals(fieldName)) { - agentName = reader.getString(); - } else if ("definition".equals(fieldName)) { -======== if ("definition".equals(fieldName)) { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java definition = AgentDefinition.fromJson(reader); } else if ("metadata".equals(fieldName)) { metadata = reader.readMap(reader1 -> reader1.getString()); @@ -242,22 +287,24 @@ public static UpdateAgentRequest fromJson(JsonReader jsonReader) throws IOExcept description = reader.getString(); } else if ("blueprint_reference".equals(fieldName)) { blueprintReference = AgentBlueprintReference.fromJson(reader); +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java } else { reader.skipChildren(); } } -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/CreateAgentRequest.java - CreateAgentRequest deserializedCreateAgentRequest = new CreateAgentRequest(agentName, definition); - deserializedCreateAgentRequest.metadata = metadata; - deserializedCreateAgentRequest.description = description; - return deserializedCreateAgentRequest; +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/CreateSkillRequest.java + CreateSkillRequest deserializedCreateSkillRequest = new CreateSkillRequest(name); + deserializedCreateSkillRequest.description = description; + deserializedCreateSkillRequest.instructions = instructions; + deserializedCreateSkillRequest.metadata = metadata; + return deserializedCreateSkillRequest; ======== UpdateAgentRequest deserializedUpdateAgentRequest = new UpdateAgentRequest(definition); deserializedUpdateAgentRequest.metadata = metadata; deserializedUpdateAgentRequest.description = description; deserializedUpdateAgentRequest.blueprintReference = blueprintReference; return deserializedUpdateAgentRequest; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java }); } diff --git a/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateToolboxInput.java b/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateToolboxInput.java index 3b4480715cd9..88755762645b 100644 --- a/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateToolboxInput.java +++ b/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateToolboxInput.java @@ -74,7 +74,7 @@ public UpdateToolboxInput(String defaultVersion) { @Generated public String getDefaultVersion() { return this.defaultVersion; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateToolboxInput.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateToolboxInput.java } /** @@ -88,7 +88,7 @@ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStringField("url", this.url); ======== jsonWriter.writeStringField("default_version", this.defaultVersion); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateToolboxInput.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateToolboxInput.java return jsonWriter.writeEndObject(); } @@ -130,7 +130,7 @@ public static UpdateToolboxInput fromJson(JsonReader jsonReader) throws IOExcept reader.nextToken(); if ("default_version".equals(fieldName)) { defaultVersion = reader.getString(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateToolboxInput.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateToolboxInput.java } else { reader.skipChildren(); } @@ -139,7 +139,7 @@ public static UpdateToolboxInput fromJson(JsonReader jsonReader) throws IOExcept return new ImageResponse(url); ======== return new UpdateToolboxInput(defaultVersion); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateToolboxInput.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateToolboxInput.java }); } } diff --git a/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java b/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java index fcb26eef132d..a339de759159 100644 --- a/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java +++ b/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java @@ -22,7 +22,7 @@ public class InputContent implements JsonSerializable { */ @Immutable public class AgentBlueprintReference implements JsonSerializable { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java /* * The type property. @@ -44,7 +44,7 @@ public InputContent() { */ @Generated public AgentBlueprintReference() { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java } /** @@ -57,7 +57,7 @@ public AgentBlueprintReference() { public InputContentType getType() { ======== public AgentBlueprintReferenceType getType() { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java return this.type; } @@ -93,7 +93,7 @@ public static InputContent fromJson(JsonReader jsonReader) throws IOException { */ @Generated public static AgentBlueprintReference fromJson(JsonReader jsonReader) throws IOException { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java return jsonReader.readObject(reader -> { String discriminatorValue = null; try (JsonReader readerToUse = reader.bufferObject()) { @@ -120,7 +120,7 @@ public static AgentBlueprintReference fromJson(JsonReader jsonReader) throws IOE ======== if ("ManagedAgentIdentityBlueprint".equals(discriminatorValue)) { return ManagedAgentIdentityBlueprintReference.fromJson(readerToUse.reset()); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java } else { return fromJsonKnownDiscriminator(readerToUse.reset()); } @@ -137,7 +137,7 @@ static InputContent fromJsonKnownDiscriminator(JsonReader jsonReader) throws IOE static AgentBlueprintReference fromJsonKnownDiscriminator(JsonReader jsonReader) throws IOException { return jsonReader.readObject(reader -> { AgentBlueprintReference deserializedAgentBlueprintReference = new AgentBlueprintReference(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java while (reader.nextToken() != JsonToken.END_OBJECT) { String fieldName = reader.getFieldName(); reader.nextToken(); @@ -147,7 +147,7 @@ static AgentBlueprintReference fromJsonKnownDiscriminator(JsonReader jsonReader) ======== deserializedAgentBlueprintReference.type = AgentBlueprintReferenceType.fromString(reader.getString()); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java } else { reader.skipChildren(); } @@ -156,7 +156,7 @@ static AgentBlueprintReference fromJsonKnownDiscriminator(JsonReader jsonReader) return deserializedInputContent; ======== return deserializedAgentBlueprintReference; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/AgentBlueprintReference.java }); } } diff --git a/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java b/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java index 710f04e1af62..759029583321 100644 --- a/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java +++ b/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java @@ -11,13 +11,13 @@ import java.io.IOException; /** -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/LocalShellToolParameter.java - * Local shell tool +<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CustomTextFormatParameter.java + * Text format * - * A tool that allows the model to execute shell commands in a local environment. + * Unconstrained free-form text. */ @Immutable -public final class LocalShellToolParameter extends Tool { +public final class CustomTextFormatParameter extends CustomToolParamFormat { ======== * Apply patch tool * @@ -25,26 +25,29 @@ public final class LocalShellToolParameter extends Tool { */ @Immutable public final class ApplyPatchToolParameter extends Tool { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java /* * The type property. */ @Generated - private ToolType type = ToolType.APPLY_PATCH; +<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CustomTextFormatParameter.java + private CustomToolParamFormatType type = CustomToolParamFormatType.TEXT; /** -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/LocalShellToolParameter.java - * Creates an instance of LocalShellToolParameter class. + * Creates an instance of CustomTextFormatParameter class. */ @Generated - public LocalShellToolParameter() { + public CustomTextFormatParameter() { ======== + private ToolType type = ToolType.APPLY_PATCH; + + /** * Creates an instance of ApplyPatchToolParameter class. */ @Generated public ApplyPatchToolParameter() { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java } /** @@ -54,7 +57,7 @@ public ApplyPatchToolParameter() { */ @Generated @Override - public ToolType getType() { + public CustomToolParamFormatType getType() { return this.type; } @@ -70,18 +73,18 @@ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { } /** -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/LocalShellToolParameter.java - * Reads an instance of LocalShellToolParameter from the JsonReader. +<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CustomTextFormatParameter.java + * Reads an instance of CustomTextFormatParameter from the JsonReader. * * @param jsonReader The JsonReader being read. - * @return An instance of LocalShellToolParameter if the JsonReader was pointing to an instance of it, or null if it - * was pointing to JSON null. - * @throws IOException If an error occurs while reading the LocalShellToolParameter. + * @return An instance of CustomTextFormatParameter if the JsonReader was pointing to an instance of it, or null if + * it was pointing to JSON null. + * @throws IOException If an error occurs while reading the CustomTextFormatParameter. */ @Generated - public static LocalShellToolParameter fromJson(JsonReader jsonReader) throws IOException { + public static CustomTextFormatParameter fromJson(JsonReader jsonReader) throws IOException { return jsonReader.readObject(reader -> { - LocalShellToolParameter deserializedLocalShellToolParameter = new LocalShellToolParameter(); + CustomTextFormatParameter deserializedCustomTextFormatParameter = new CustomTextFormatParameter(); ======== * Reads an instance of ApplyPatchToolParameter from the JsonReader. * @@ -94,25 +97,26 @@ public static LocalShellToolParameter fromJson(JsonReader jsonReader) throws IOE public static ApplyPatchToolParameter fromJson(JsonReader jsonReader) throws IOException { return jsonReader.readObject(reader -> { ApplyPatchToolParameter deserializedApplyPatchToolParameter = new ApplyPatchToolParameter(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java while (reader.nextToken() != JsonToken.END_OBJECT) { String fieldName = reader.getFieldName(); reader.nextToken(); if ("type".equals(fieldName)) { -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/LocalShellToolParameter.java - deserializedLocalShellToolParameter.type = ToolType.fromString(reader.getString()); +<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CustomTextFormatParameter.java + deserializedCustomTextFormatParameter.type + = CustomToolParamFormatType.fromString(reader.getString()); ======== deserializedApplyPatchToolParameter.type = ToolType.fromString(reader.getString()); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java } else { reader.skipChildren(); } } -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/LocalShellToolParameter.java - return deserializedLocalShellToolParameter; +<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CustomTextFormatParameter.java + return deserializedCustomTextFormatParameter; ======== return deserializedApplyPatchToolParameter; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/ApplyPatchToolParameter.java }); } } diff --git a/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java b/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java index 5232248b77d0..4359cbddc2dc 100644 --- a/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java +++ b/sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java @@ -1,7 +1,11 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) TypeSpec Code Generator. +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/UpdateSkillRequest.java +package com.azure.ai.projects.implementation.models; +======== package com.azure.ai.agents.models; +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java import com.azure.core.annotation.Fluent; import com.azure.core.annotation.Generated; @@ -13,17 +17,29 @@ import java.util.Map; /** -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java - * The UpdateAgentRequest model. +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/UpdateSkillRequest.java + * The UpdateSkillRequest model. */ @Fluent -public final class UpdateAgentRequest implements JsonSerializable { +public final class UpdateSkillRequest implements JsonSerializable { + + /* + * A human-readable description of the skill. + */ + @Generated + private String description; + + /* + * Instructions that define the behavior of the skill. + */ + @Generated + private String instructions; ======== * The CreateAgentVersionInput model. */ @Fluent public final class CreateAgentVersionInput implements JsonSerializable { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java /* * Set of 16 key-value pairs that can be attached to an object. This can be @@ -36,17 +52,12 @@ public final class CreateAgentVersionInput implements JsonSerializable metadata; - /* - * A human-readable description of the agent. - */ - @Generated - private String description; - - /* - * The agent definition. This can be a workflow, hosted agent, or a simple agent definition. + /** + * Creates an instance of UpdateSkillRequest class. */ @Generated - private final AgentDefinition definition; + public UpdateSkillRequest() { + } /* * The blueprint reference for the agent. @@ -55,21 +66,56 @@ public final class CreateAgentVersionInput implements JsonSerializable>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java * - * @param definition the definition value to set. + * @return the description value. */ @Generated -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java - public UpdateAgentRequest(AgentDefinition definition) { +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/UpdateSkillRequest.java + public String getDescription() { + return this.description; + } + + /** + * Set the description property: A human-readable description of the skill. + * + * @param description the description value to set. + * @return the UpdateSkillRequest object itself. + */ + @Generated + public UpdateSkillRequest setDescription(String description) { + this.description = description; + return this; + } + + /** + * Get the instructions property: Instructions that define the behavior of the skill. + * + * @return the instructions value. + */ + @Generated + public String getInstructions() { + return this.instructions; + } + + /** + * Set the instructions property: Instructions that define the behavior of the skill. + * + * @param instructions the instructions value to set. + * @return the UpdateSkillRequest object itself. + */ + @Generated + public UpdateSkillRequest setInstructions(String instructions) { + this.instructions = instructions; + return this; ======== public CreateAgentVersionInput(AgentDefinition definition) { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java this.definition = definition; +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java } /** @@ -96,22 +142,24 @@ public Map getMetadata() { * with a maximum length of 512 characters. * * @param metadata the metadata value to set. -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java - * @return the UpdateAgentRequest object itself. +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/UpdateSkillRequest.java + * @return the UpdateSkillRequest object itself. */ @Generated - public UpdateAgentRequest setMetadata(Map metadata) { + public UpdateSkillRequest setMetadata(Map metadata) { ======== * @return the CreateAgentVersionInput object itself. */ @Generated public CreateAgentVersionInput setMetadata(Map metadata) { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java this.metadata = metadata; return this; } /** +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/UpdateSkillRequest.java +======== * Get the description property: A human-readable description of the agent. * * @return the description value. @@ -125,17 +173,10 @@ public String getDescription() { * Set the description property: A human-readable description of the agent. * * @param description the description value to set. -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java - * @return the UpdateAgentRequest object itself. - */ - @Generated - public UpdateAgentRequest setDescription(String description) { -======== * @return the CreateAgentVersionInput object itself. */ @Generated public CreateAgentVersionInput setDescription(String description) { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java this.description = description; return this; } @@ -174,31 +215,36 @@ public CreateAgentVersionInput setBlueprintReference(AgentBlueprintReference blu } /** +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java * {@inheritDoc} */ @Generated @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); - jsonWriter.writeJsonField("definition", this.definition); - jsonWriter.writeMapField("metadata", this.metadata, (writer, element) -> writer.writeString(element)); jsonWriter.writeStringField("description", this.description); +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/UpdateSkillRequest.java + jsonWriter.writeStringField("instructions", this.instructions); + jsonWriter.writeMapField("metadata", this.metadata, (writer, element) -> writer.writeString(element)); +======== jsonWriter.writeJsonField("blueprint_reference", this.blueprintReference); +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java return jsonWriter.writeEndObject(); } /** -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java - * Reads an instance of UpdateAgentRequest from the JsonReader. +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/UpdateSkillRequest.java + * Reads an instance of UpdateSkillRequest from the JsonReader. * * @param jsonReader The JsonReader being read. - * @return An instance of UpdateAgentRequest if the JsonReader was pointing to an instance of it, or null if it was + * @return An instance of UpdateSkillRequest if the JsonReader was pointing to an instance of it, or null if it was * pointing to JSON null. - * @throws IllegalStateException If the deserialized JSON object was missing any required properties. - * @throws IOException If an error occurs while reading the UpdateAgentRequest. + * @throws IOException If an error occurs while reading the UpdateSkillRequest. */ @Generated - public static UpdateAgentRequest fromJson(JsonReader jsonReader) throws IOException { + public static UpdateSkillRequest fromJson(JsonReader jsonReader) throws IOException { + return jsonReader.readObject(reader -> { + UpdateSkillRequest deserializedUpdateSkillRequest = new UpdateSkillRequest(); ======== * Reads an instance of CreateAgentVersionInput from the JsonReader. * @@ -210,39 +256,43 @@ public static UpdateAgentRequest fromJson(JsonReader jsonReader) throws IOExcept */ @Generated public static CreateAgentVersionInput fromJson(JsonReader jsonReader) throws IOException { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java return jsonReader.readObject(reader -> { AgentDefinition definition = null; Map metadata = null; String description = null; AgentBlueprintReference blueprintReference = null; +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java while (reader.nextToken() != JsonToken.END_OBJECT) { String fieldName = reader.getFieldName(); reader.nextToken(); - if ("definition".equals(fieldName)) { - definition = AgentDefinition.fromJson(reader); + if ("description".equals(fieldName)) { + deserializedUpdateSkillRequest.description = reader.getString(); + } else if ("instructions".equals(fieldName)) { + deserializedUpdateSkillRequest.instructions = reader.getString(); } else if ("metadata".equals(fieldName)) { +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/UpdateSkillRequest.java + Map metadata = reader.readMap(reader1 -> reader1.getString()); + deserializedUpdateSkillRequest.metadata = metadata; +======== metadata = reader.readMap(reader1 -> reader1.getString()); } else if ("description".equals(fieldName)) { description = reader.getString(); } else if ("blueprint_reference".equals(fieldName)) { blueprintReference = AgentBlueprintReference.fromJson(reader); +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java } else { reader.skipChildren(); } } -<<<<<<<< HEAD:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/implementation/models/UpdateAgentRequest.java - UpdateAgentRequest deserializedUpdateAgentRequest = new UpdateAgentRequest(definition); - deserializedUpdateAgentRequest.metadata = metadata; - deserializedUpdateAgentRequest.description = description; - return deserializedUpdateAgentRequest; +<<<<<<<< HEAD:sdk/ai/azure-ai-projects/src/main/java/com/azure/ai/projects/implementation/models/UpdateSkillRequest.java + return deserializedUpdateSkillRequest; ======== CreateAgentVersionInput deserializedCreateAgentVersionInput = new CreateAgentVersionInput(definition); deserializedCreateAgentVersionInput.metadata = metadata; deserializedCreateAgentVersionInput.description = description; deserializedCreateAgentVersionInput.blueprintReference = blueprintReference; return deserializedCreateAgentVersionInput; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/ai/azure-ai-agents/src/main/java/com/azure/ai/agents/models/CreateAgentVersionInput.java }); } } diff --git a/sdk/appconfiguration/azure-resourcemanager-appconfiguration/src/main/java/com/azure/resourcemanager/appconfiguration/fluent/NetworkSecurityPerimeterConfigurationsClient.java b/sdk/appconfiguration/azure-resourcemanager-appconfiguration/src/main/java/com/azure/resourcemanager/appconfiguration/fluent/NetworkSecurityPerimeterConfigurationsClient.java index 0b658c4e1f02..d6aa2dbe6136 100644 --- a/sdk/appconfiguration/azure-resourcemanager-appconfiguration/src/main/java/com/azure/resourcemanager/appconfiguration/fluent/NetworkSecurityPerimeterConfigurationsClient.java +++ b/sdk/appconfiguration/azure-resourcemanager-appconfiguration/src/main/java/com/azure/resourcemanager/appconfiguration/fluent/NetworkSecurityPerimeterConfigurationsClient.java @@ -90,7 +90,7 @@ PagedIterable listByConfigurationSto * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of network security perimeter (NSP) configuration resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginReconcile(String resourceGroupName, String configStoreName, @@ -106,7 +106,7 @@ SyncPoller, Void> beginReconcile(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of network security perimeter (NSP) configuration resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginReconcile(String resourceGroupName, String configStoreName, diff --git a/sdk/appconfiguration/azure-resourcemanager-appconfiguration/src/main/java/com/azure/resourcemanager/appconfiguration/implementation/NetworkSecurityPerimeterConfigurationsClientImpl.java b/sdk/appconfiguration/azure-resourcemanager-appconfiguration/src/main/java/com/azure/resourcemanager/appconfiguration/implementation/NetworkSecurityPerimeterConfigurationsClientImpl.java index 3ae55c10bc01..345f2f9fe180 100644 --- a/sdk/appconfiguration/azure-resourcemanager-appconfiguration/src/main/java/com/azure/resourcemanager/appconfiguration/implementation/NetworkSecurityPerimeterConfigurationsClientImpl.java +++ b/sdk/appconfiguration/azure-resourcemanager-appconfiguration/src/main/java/com/azure/resourcemanager/appconfiguration/implementation/NetworkSecurityPerimeterConfigurationsClientImpl.java @@ -368,7 +368,8 @@ public PagedIterable listByConfigura * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return network security perimeter (NSP) configuration resource along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> reconcileWithResponseAsync(String resourceGroupName, @@ -390,7 +391,7 @@ private Mono>> reconcileWithResponseAsync(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return network security perimeter (NSP) configuration resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response reconcileWithResponse(String resourceGroupName, String configStoreName, @@ -411,7 +412,7 @@ private Response reconcileWithResponse(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return network security perimeter (NSP) configuration resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response reconcileWithResponse(String resourceGroupName, String configStoreName, @@ -431,7 +432,7 @@ private Response reconcileWithResponse(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of network security perimeter (NSP) configuration resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, Void> beginReconcileAsync(String resourceGroupName, String configStoreName, @@ -451,7 +452,7 @@ private PollerFlux, Void> beginReconcileAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of network security perimeter (NSP) configuration resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginReconcile(String resourceGroupName, String configStoreName, @@ -471,7 +472,7 @@ public SyncPoller, Void> beginReconcile(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of network security perimeter (NSP) configuration resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginReconcile(String resourceGroupName, String configStoreName, @@ -490,7 +491,7 @@ public SyncPoller, Void> beginReconcile(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return A {@link Mono} that completes when a successful response is received. + * @return network security perimeter (NSP) configuration resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono reconcileAsync(String resourceGroupName, String configStoreName, diff --git a/sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/AppLinkMembersClient.java b/sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/AppLinkMembersClient.java index fe4410cd30b1..b0e662481187 100644 --- a/sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/AppLinkMembersClient.java +++ b/sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/AppLinkMembersClient.java @@ -2,7 +2,11 @@ // Licensed under the MIT License. // Code generated by Microsoft (R) TypeSpec Code Generator. +<<<<<<<< HEAD:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileShareSnapshotsClient.java +package com.azure.resourcemanager.fileshares.fluent; +======== package com.azure.resourcemanager.appnetwork.fluent; +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/AppLinkMembersClient.java import com.azure.core.annotation.ReturnType; import com.azure.core.annotation.ServiceMethod; @@ -11,6 +15,22 @@ import com.azure.core.management.polling.PollResult; import com.azure.core.util.Context; import com.azure.core.util.polling.SyncPoller; +<<<<<<<< HEAD:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileShareSnapshotsClient.java +import com.azure.resourcemanager.fileshares.fluent.models.FileShareSnapshotInner; +import com.azure.resourcemanager.fileshares.models.FileShareSnapshotUpdate; + +/** + * An instance of this class provides access to all the operations defined in FileShareSnapshotsClient. + */ +public interface FileShareSnapshotsClient { + /** + * Get a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. +======== import com.azure.resourcemanager.appnetwork.fluent.models.AppLinkMemberInner; import com.azure.resourcemanager.appnetwork.models.AppLinkMemberUpdate; @@ -24,10 +44,182 @@ public interface AppLinkMembersClient { * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param appLinkName The name of the AppLink. * @param appLinkMemberName The name of the AppLinkMember. +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/AppLinkMembersClient.java + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. +<<<<<<<< HEAD:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileShareSnapshotsClient.java + * @return a FileShareSnapshot along with {@link Response}. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + Response getFileShareSnapshotWithResponse(String resourceGroupName, String resourceName, + String name, Context context); + + /** + * Get a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return a FileShareSnapshot. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + FileShareSnapshotInner getFileShareSnapshot(String resourceGroupName, String resourceName, String name); + + /** + * Create a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. + * @param resource Resource create parameters. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the {@link SyncPoller} for polling of long-running operation. + */ + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) + SyncPoller, FileShareSnapshotInner> beginCreateOrUpdateFileShareSnapshot( + String resourceGroupName, String resourceName, String name, FileShareSnapshotInner resource); + + /** + * Create a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. + * @param resource Resource create parameters. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the {@link SyncPoller} for polling of long-running operation. + */ + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) + SyncPoller, FileShareSnapshotInner> beginCreateOrUpdateFileShareSnapshot( + String resourceGroupName, String resourceName, String name, FileShareSnapshotInner resource, Context context); + + /** + * Create a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. + * @param resource Resource create parameters. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the response. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + FileShareSnapshotInner createOrUpdateFileShareSnapshot(String resourceGroupName, String resourceName, String name, + FileShareSnapshotInner resource); + + /** + * Create a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. + * @param resource Resource create parameters. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the response. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + FileShareSnapshotInner createOrUpdateFileShareSnapshot(String resourceGroupName, String resourceName, String name, + FileShareSnapshotInner resource, Context context); + + /** + * Update a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. + * @param properties The resource properties to be updated. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the {@link SyncPoller} for polling of fileShareSnapshot resource. + */ + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) + SyncPoller, FileShareSnapshotInner> beginUpdateFileShareSnapshot( + String resourceGroupName, String resourceName, String name, FileShareSnapshotUpdate properties); + + /** + * Update a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. + * @param properties The resource properties to be updated. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the {@link SyncPoller} for polling of fileShareSnapshot resource. + */ + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) + SyncPoller, FileShareSnapshotInner> beginUpdateFileShareSnapshot( + String resourceGroupName, String resourceName, String name, FileShareSnapshotUpdate properties, + Context context); + + /** + * Update a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. + * @param properties The resource properties to be updated. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return fileShareSnapshot resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + FileShareSnapshotInner updateFileShareSnapshot(String resourceGroupName, String resourceName, String name, + FileShareSnapshotUpdate properties); + + /** + * Update a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. + * @param properties The resource properties to be updated. * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return fileShareSnapshot resource. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + FileShareSnapshotInner updateFileShareSnapshot(String resourceGroupName, String resourceName, String name, + FileShareSnapshotUpdate properties, Context context); + + /** + * Delete a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. +======== * @return an AppLinkMember along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) @@ -186,12 +378,25 @@ AppLinkMemberInner update(String resourceGroupName, String appLinkName, String a * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param appLinkName The name of the AppLink. * @param appLinkMemberName The name of the AppLinkMember. +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/AppLinkMembersClient.java * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return the {@link SyncPoller} for polling of long-running operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) +<<<<<<<< HEAD:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileShareSnapshotsClient.java + SyncPoller, Void> beginDeleteFileShareSnapshot(String resourceGroupName, String resourceName, + String name); + + /** + * Delete a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. +======== SyncPoller, Void> beginDelete(String resourceGroupName, String appLinkName, String appLinkMemberName); @@ -201,6 +406,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param appLinkName The name of the AppLink. * @param appLinkMemberName The name of the AppLinkMember. +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/AppLinkMembersClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -208,6 +414,18 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @return the {@link SyncPoller} for polling of long-running operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) +<<<<<<<< HEAD:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileShareSnapshotsClient.java + SyncPoller, Void> beginDeleteFileShareSnapshot(String resourceGroupName, String resourceName, + String name, Context context); + + /** + * Delete a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. +======== SyncPoller, Void> beginDelete(String resourceGroupName, String appLinkName, String appLinkMemberName, Context context); @@ -217,11 +435,23 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param appLinkName The name of the AppLink. * @param appLinkMemberName The name of the AppLinkMember. +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/AppLinkMembersClient.java * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. */ @ServiceMethod(returns = ReturnType.SINGLE) +<<<<<<<< HEAD:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileShareSnapshotsClient.java + void deleteFileShareSnapshot(String resourceGroupName, String resourceName, String name); + + /** + * Delete a FileShareSnapshot. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @param name The name of the FileShareSnapshot. +======== void delete(String resourceGroupName, String appLinkName, String appLinkMemberName); /** @@ -230,12 +460,37 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param appLinkName The name of the AppLink. * @param appLinkMemberName The name of the AppLinkMember. +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/AppLinkMembersClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. */ @ServiceMethod(returns = ReturnType.SINGLE) +<<<<<<<< HEAD:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileShareSnapshotsClient.java + void deleteFileShareSnapshot(String resourceGroupName, String resourceName, String name, Context context); + + /** + * List FileShareSnapshot by FileShare. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return the response of a FileShareSnapshot list operation as paginated response with {@link PagedIterable}. + */ + @ServiceMethod(returns = ReturnType.COLLECTION) + PagedIterable listByFileShare(String resourceGroupName, String resourceName); + + /** + * List FileShareSnapshot by FileShare. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource + * Manager. +======== void delete(String resourceGroupName, String appLinkName, String appLinkMemberName, Context context); /** @@ -256,12 +511,21 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param appLinkName The name of the AppLink. +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/AppLinkMembersClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. +<<<<<<<< HEAD:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileShareSnapshotsClient.java + * @return the response of a FileShareSnapshot list operation as paginated response with {@link PagedIterable}. + */ + @ServiceMethod(returns = ReturnType.COLLECTION) + PagedIterable listByFileShare(String resourceGroupName, String resourceName, + Context context); +======== * @return the response of a AppLinkMember list operation as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable listByAppLink(String resourceGroupName, String appLinkName, Context context); +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/AppLinkMembersClient.java } diff --git a/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/fluent/VirtualHardDisksClient.java b/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/fluent/VirtualHardDisksClient.java index b12052011e7c..a797d7d53132 100644 --- a/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/fluent/VirtualHardDisksClient.java +++ b/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/fluent/VirtualHardDisksClient.java @@ -289,7 +289,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response for uploading virtual hard disk. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, VirtualHardDiskUploadResponseInner> @@ -305,7 +305,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response for uploading virtual hard disk. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, VirtualHardDiskUploadResponseInner> beginUpload( @@ -320,7 +320,7 @@ SyncPoller, VirtualHardDiskUpload * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response for uploading virtual hard disk. */ @ServiceMethod(returns = ReturnType.SINGLE) VirtualHardDiskUploadResponseInner upload(String resourceGroupName, String virtualHardDiskName, @@ -336,7 +336,7 @@ VirtualHardDiskUploadResponseInner upload(String resourceGroupName, String virtu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response for uploading virtual hard disk. */ @ServiceMethod(returns = ReturnType.SINGLE) VirtualHardDiskUploadResponseInner upload(String resourceGroupName, String virtualHardDiskName, diff --git a/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/implementation/VirtualHardDisksClientImpl.java b/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/implementation/VirtualHardDisksClientImpl.java index b2ad7a2e48ed..0712090067e8 100644 --- a/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/implementation/VirtualHardDisksClientImpl.java +++ b/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/implementation/VirtualHardDisksClientImpl.java @@ -1045,7 +1045,8 @@ public PagedIterable list(Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return response for uploading virtual hard disk along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> uploadWithResponseAsync(String resourceGroupName, @@ -1068,7 +1069,7 @@ private Mono>> uploadWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response for uploading virtual hard disk along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response uploadWithResponse(String resourceGroupName, String virtualHardDiskName, @@ -1090,7 +1091,7 @@ private Response uploadWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response for uploading virtual hard disk along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response uploadWithResponse(String resourceGroupName, String virtualHardDiskName, @@ -1111,7 +1112,7 @@ private Response uploadWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of response for uploading virtual hard disk. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, VirtualHardDiskUploadResponseInner> @@ -1131,7 +1132,7 @@ private Response uploadWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response for uploading virtual hard disk. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, VirtualHardDiskUploadResponseInner> @@ -1151,7 +1152,7 @@ private Response uploadWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response for uploading virtual hard disk. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, VirtualHardDiskUploadResponseInner> beginUpload( @@ -1170,7 +1171,7 @@ public SyncPoller, VirtualHardDis * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return response for uploading virtual hard disk on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono uploadAsync(String resourceGroupName, String virtualHardDiskName, @@ -1188,7 +1189,7 @@ private Mono uploadAsync(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response for uploading virtual hard disk. */ @ServiceMethod(returns = ReturnType.SINGLE) public VirtualHardDiskUploadResponseInner upload(String resourceGroupName, String virtualHardDiskName, @@ -1206,7 +1207,7 @@ public VirtualHardDiskUploadResponseInner upload(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response for uploading virtual hard disk. */ @ServiceMethod(returns = ReturnType.SINGLE) public VirtualHardDiskUploadResponseInner upload(String resourceGroupName, String virtualHardDiskName, diff --git a/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/models/VirtualHardDisk.java b/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/models/VirtualHardDisk.java index 31ab4e4f2007..4fa6d64dcca2 100644 --- a/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/models/VirtualHardDisk.java +++ b/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/models/VirtualHardDisk.java @@ -291,7 +291,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response for uploading virtual hard disk. */ VirtualHardDiskUploadResponse upload(VirtualHardDiskUploadRequest body); @@ -303,7 +303,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response for uploading virtual hard disk. */ VirtualHardDiskUploadResponse upload(VirtualHardDiskUploadRequest body, Context context); } diff --git a/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/models/VirtualHardDisks.java b/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/models/VirtualHardDisks.java index 1f3192ad0fa3..ad46ac78143f 100644 --- a/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/models/VirtualHardDisks.java +++ b/sdk/azurestackhci/azure-resourcemanager-azurestackhci-vm/src/main/java/com/azure/resourcemanager/azurestackhci/vm/models/VirtualHardDisks.java @@ -117,7 +117,7 @@ Response getByResourceGroupWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response for uploading virtual hard disk. */ VirtualHardDiskUploadResponse upload(String resourceGroupName, String virtualHardDiskName, VirtualHardDiskUploadRequest body); @@ -132,7 +132,7 @@ VirtualHardDiskUploadResponse upload(String resourceGroupName, String virtualHar * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response for uploading virtual hard disk. */ VirtualHardDiskUploadResponse upload(String resourceGroupName, String virtualHardDiskName, VirtualHardDiskUploadRequest body, Context context); diff --git a/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/fluent/ClustersClient.java b/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/fluent/ClustersClient.java index ff63396cb3c3..3cd81a116902 100644 --- a/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/fluent/ClustersClient.java +++ b/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/fluent/ClustersClient.java @@ -221,7 +221,7 @@ Response updateWithResponse(String resourceGroupName, String clust * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ClusterInner> beginUpdateSecretsLocations(String resourceGroupName, @@ -237,7 +237,7 @@ SyncPoller, ClusterInner> beginUpdateSecretsLocations(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ClusterInner> beginUpdateSecretsLocations(String resourceGroupName, @@ -252,7 +252,7 @@ SyncPoller, ClusterInner> beginUpdateSecretsLocations(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) ClusterInner updateSecretsLocations(String resourceGroupName, String clusterName, @@ -268,7 +268,7 @@ ClusterInner updateSecretsLocations(String resourceGroupName, String clusterName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) ClusterInner updateSecretsLocations(String resourceGroupName, String clusterName, @@ -399,7 +399,7 @@ void uploadCertificate(String resourceGroupName, String clusterName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ClusterInner> beginExtendSoftwareAssuranceBenefit(String resourceGroupName, @@ -415,7 +415,7 @@ SyncPoller, ClusterInner> beginExtendSoftwareAssuranceB * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ClusterInner> beginExtendSoftwareAssuranceBenefit(String resourceGroupName, @@ -430,7 +430,7 @@ SyncPoller, ClusterInner> beginExtendSoftwareAssuranceB * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) ClusterInner extendSoftwareAssuranceBenefit(String resourceGroupName, String clusterName, @@ -446,7 +446,7 @@ ClusterInner extendSoftwareAssuranceBenefit(String resourceGroupName, String clu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) ClusterInner extendSoftwareAssuranceBenefit(String resourceGroupName, String clusterName, @@ -461,7 +461,7 @@ ClusterInner extendSoftwareAssuranceBenefit(String resourceGroupName, String clu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ClusterInner> beginChangeRing(String resourceGroupName, String clusterName, @@ -477,7 +477,7 @@ SyncPoller, ClusterInner> beginChangeRing(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ClusterInner> beginChangeRing(String resourceGroupName, String clusterName, @@ -492,7 +492,7 @@ SyncPoller, ClusterInner> beginChangeRing(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) ClusterInner changeRing(String resourceGroupName, String clusterName, ChangeRingRequest changeRingRequest); @@ -507,7 +507,7 @@ SyncPoller, ClusterInner> beginChangeRing(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) ClusterInner changeRing(String resourceGroupName, String clusterName, ChangeRingRequest changeRingRequest, @@ -522,7 +522,7 @@ ClusterInner changeRing(String resourceGroupName, String clusterName, ChangeRing * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ClusterInner> beginTriggerLogCollection(String resourceGroupName, @@ -538,7 +538,7 @@ SyncPoller, ClusterInner> beginTriggerLogCollection(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ClusterInner> beginTriggerLogCollection(String resourceGroupName, @@ -553,7 +553,7 @@ SyncPoller, ClusterInner> beginTriggerLogCollection(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) ClusterInner triggerLogCollection(String resourceGroupName, String clusterName, @@ -569,7 +569,7 @@ ClusterInner triggerLogCollection(String resourceGroupName, String clusterName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) ClusterInner triggerLogCollection(String resourceGroupName, String clusterName, @@ -584,7 +584,7 @@ ClusterInner triggerLogCollection(String resourceGroupName, String clusterName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ClusterInner> beginConfigureRemoteSupport(String resourceGroupName, @@ -600,7 +600,7 @@ SyncPoller, ClusterInner> beginConfigureRemoteSupport(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ClusterInner> beginConfigureRemoteSupport(String resourceGroupName, @@ -615,7 +615,7 @@ SyncPoller, ClusterInner> beginConfigureRemoteSupport(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) ClusterInner configureRemoteSupport(String resourceGroupName, String clusterName, @@ -631,7 +631,7 @@ ClusterInner configureRemoteSupport(String resourceGroupName, String clusterName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) ClusterInner configureRemoteSupport(String resourceGroupName, String clusterName, diff --git a/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/implementation/ClustersClientImpl.java b/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/implementation/ClustersClientImpl.java index fac3e3e80050..6bb7c33ee04c 100644 --- a/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/implementation/ClustersClientImpl.java +++ b/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/implementation/ClustersClientImpl.java @@ -920,7 +920,7 @@ public PagedIterable list(Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return cluster details along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> updateSecretsLocationsWithResponseAsync(String resourceGroupName, @@ -943,7 +943,7 @@ private Mono>> updateSecretsLocationsWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cluster details along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response updateSecretsLocationsWithResponse(String resourceGroupName, String clusterName, @@ -964,7 +964,7 @@ private Response updateSecretsLocationsWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cluster details along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response updateSecretsLocationsWithResponse(String resourceGroupName, String clusterName, @@ -984,7 +984,7 @@ private Response updateSecretsLocationsWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ClusterInner> beginUpdateSecretsLocationsAsync( @@ -1004,7 +1004,7 @@ private PollerFlux, ClusterInner> beginUpdateSecretsLoc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ClusterInner> beginUpdateSecretsLocations(String resourceGroupName, @@ -1024,7 +1024,7 @@ public SyncPoller, ClusterInner> beginUpdateSecretsLoca * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ClusterInner> beginUpdateSecretsLocations(String resourceGroupName, @@ -1044,7 +1044,7 @@ public SyncPoller, ClusterInner> beginUpdateSecretsLoca * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return cluster details on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono updateSecretsLocationsAsync(String resourceGroupName, String clusterName, @@ -1062,7 +1062,7 @@ private Mono updateSecretsLocationsAsync(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) public ClusterInner updateSecretsLocations(String resourceGroupName, String clusterName, @@ -1080,7 +1080,7 @@ public ClusterInner updateSecretsLocations(String resourceGroupName, String clus * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) public ClusterInner updateSecretsLocations(String resourceGroupName, String clusterName, @@ -1429,7 +1429,7 @@ public ClusterIdentityResponseInner createIdentity(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return cluster details along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> extendSoftwareAssuranceBenefitWithResponseAsync(String resourceGroupName, @@ -1452,7 +1452,7 @@ private Mono>> extendSoftwareAssuranceBenefitWithRespo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cluster details along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response extendSoftwareAssuranceBenefitWithResponse(String resourceGroupName, @@ -1474,7 +1474,7 @@ private Response extendSoftwareAssuranceBenefitWithResponse(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cluster details along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response extendSoftwareAssuranceBenefitWithResponse(String resourceGroupName, @@ -1495,7 +1495,7 @@ private Response extendSoftwareAssuranceBenefitWithResponse(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ClusterInner> beginExtendSoftwareAssuranceBenefitAsync( @@ -1515,7 +1515,7 @@ private PollerFlux, ClusterInner> beginExtendSoftwareAs * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ClusterInner> beginExtendSoftwareAssuranceBenefit( @@ -1536,7 +1536,7 @@ public SyncPoller, ClusterInner> beginExtendSoftwareAss * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ClusterInner> beginExtendSoftwareAssuranceBenefit( @@ -1557,7 +1557,7 @@ public SyncPoller, ClusterInner> beginExtendSoftwareAss * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return cluster details on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono extendSoftwareAssuranceBenefitAsync(String resourceGroupName, String clusterName, @@ -1576,7 +1576,7 @@ private Mono extendSoftwareAssuranceBenefitAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) public ClusterInner extendSoftwareAssuranceBenefit(String resourceGroupName, String clusterName, @@ -1595,7 +1595,7 @@ public ClusterInner extendSoftwareAssuranceBenefit(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) public ClusterInner extendSoftwareAssuranceBenefit(String resourceGroupName, String clusterName, @@ -1613,7 +1613,7 @@ public ClusterInner extendSoftwareAssuranceBenefit(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return cluster details along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> changeRingWithResponseAsync(String resourceGroupName, String clusterName, @@ -1636,7 +1636,7 @@ private Mono>> changeRingWithResponseAsync(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cluster details along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response changeRingWithResponse(String resourceGroupName, String clusterName, @@ -1658,7 +1658,7 @@ private Response changeRingWithResponse(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cluster details along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response changeRingWithResponse(String resourceGroupName, String clusterName, @@ -1679,7 +1679,7 @@ private Response changeRingWithResponse(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ClusterInner> beginChangeRingAsync(String resourceGroupName, @@ -1699,7 +1699,7 @@ private PollerFlux, ClusterInner> beginChangeRingAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ClusterInner> beginChangeRing(String resourceGroupName, @@ -1719,7 +1719,7 @@ public SyncPoller, ClusterInner> beginChangeRing(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ClusterInner> beginChangeRing(String resourceGroupName, @@ -1739,7 +1739,7 @@ public SyncPoller, ClusterInner> beginChangeRing(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return cluster details on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono changeRingAsync(String resourceGroupName, String clusterName, @@ -1757,7 +1757,7 @@ private Mono changeRingAsync(String resourceGroupName, String clus * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) public ClusterInner changeRing(String resourceGroupName, String clusterName, ChangeRingRequest changeRingRequest) { @@ -1774,7 +1774,7 @@ public ClusterInner changeRing(String resourceGroupName, String clusterName, Cha * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) public ClusterInner changeRing(String resourceGroupName, String clusterName, ChangeRingRequest changeRingRequest, @@ -1791,7 +1791,7 @@ public ClusterInner changeRing(String resourceGroupName, String clusterName, Cha * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return cluster details along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> triggerLogCollectionWithResponseAsync(String resourceGroupName, @@ -1814,7 +1814,7 @@ private Mono>> triggerLogCollectionWithResponseAsync(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cluster details along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response triggerLogCollectionWithResponse(String resourceGroupName, String clusterName, @@ -1836,7 +1836,7 @@ private Response triggerLogCollectionWithResponse(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cluster details along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response triggerLogCollectionWithResponse(String resourceGroupName, String clusterName, @@ -1857,7 +1857,7 @@ private Response triggerLogCollectionWithResponse(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ClusterInner> beginTriggerLogCollectionAsync(String resourceGroupName, @@ -1877,7 +1877,7 @@ private PollerFlux, ClusterInner> beginTriggerLogCollec * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ClusterInner> beginTriggerLogCollection(String resourceGroupName, @@ -1898,7 +1898,7 @@ public SyncPoller, ClusterInner> beginTriggerLogCollect * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ClusterInner> beginTriggerLogCollection(String resourceGroupName, @@ -1918,7 +1918,7 @@ public SyncPoller, ClusterInner> beginTriggerLogCollect * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return cluster details on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono triggerLogCollectionAsync(String resourceGroupName, String clusterName, @@ -1936,7 +1936,7 @@ private Mono triggerLogCollectionAsync(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) public ClusterInner triggerLogCollection(String resourceGroupName, String clusterName, @@ -1954,7 +1954,7 @@ public ClusterInner triggerLogCollection(String resourceGroupName, String cluste * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) public ClusterInner triggerLogCollection(String resourceGroupName, String clusterName, @@ -1972,7 +1972,7 @@ public ClusterInner triggerLogCollection(String resourceGroupName, String cluste * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return cluster details along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> configureRemoteSupportWithResponseAsync(String resourceGroupName, @@ -1995,7 +1995,7 @@ private Mono>> configureRemoteSupportWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cluster details along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response configureRemoteSupportWithResponse(String resourceGroupName, String clusterName, @@ -2017,7 +2017,7 @@ private Response configureRemoteSupportWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cluster details along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response configureRemoteSupportWithResponse(String resourceGroupName, String clusterName, @@ -2038,7 +2038,7 @@ private Response configureRemoteSupportWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ClusterInner> beginConfigureRemoteSupportAsync( @@ -2058,7 +2058,7 @@ private PollerFlux, ClusterInner> beginConfigureRemoteS * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ClusterInner> beginConfigureRemoteSupport(String resourceGroupName, @@ -2079,7 +2079,7 @@ public SyncPoller, ClusterInner> beginConfigureRemoteSu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cluster details. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ClusterInner> beginConfigureRemoteSupport(String resourceGroupName, @@ -2099,7 +2099,7 @@ public SyncPoller, ClusterInner> beginConfigureRemoteSu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return cluster details on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono configureRemoteSupportAsync(String resourceGroupName, String clusterName, @@ -2117,7 +2117,7 @@ private Mono configureRemoteSupportAsync(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) public ClusterInner configureRemoteSupport(String resourceGroupName, String clusterName, @@ -2135,7 +2135,7 @@ public ClusterInner configureRemoteSupport(String resourceGroupName, String clus * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ @ServiceMethod(returns = ReturnType.SINGLE) public ClusterInner configureRemoteSupport(String resourceGroupName, String clusterName, diff --git a/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/implementation/EdgeDevicesClientImpl.java b/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/implementation/EdgeDevicesClientImpl.java index b6ac778a8a23..78d5377cb667 100644 --- a/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/implementation/EdgeDevicesClientImpl.java +++ b/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/implementation/EdgeDevicesClientImpl.java @@ -679,7 +679,8 @@ public PagedIterable list(String resourceUri, Context context) * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an Accepted response with an Operation-Location header along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> validateWithResponseAsync(String resourceUri, String edgeDeviceName, @@ -701,7 +702,7 @@ private Mono>> validateWithResponseAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return an Accepted response with an Operation-Location header along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response validateWithResponse(String resourceUri, String edgeDeviceName, @@ -722,7 +723,7 @@ private Response validateWithResponse(String resourceUri, String edg * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return an Accepted response with an Operation-Location header along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response validateWithResponse(String resourceUri, String edgeDeviceName, @@ -742,7 +743,7 @@ private Response validateWithResponse(String resourceUri, String edg * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an Accepted response with an Operation-Location header. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ValidateResponseInner> beginValidateAsync(String resourceUri, @@ -762,7 +763,7 @@ private PollerFlux, ValidateResponseInner> beg * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an Accepted response with an Operation-Location header. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ValidateResponseInner> beginValidate(String resourceUri, @@ -782,7 +783,7 @@ public SyncPoller, ValidateResponseInner> begi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an Accepted response with an Operation-Location header. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ValidateResponseInner> beginValidate(String resourceUri, @@ -801,7 +802,7 @@ public SyncPoller, ValidateResponseInner> begi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an Accepted response with an Operation-Location header on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono validateAsync(String resourceUri, String edgeDeviceName, @@ -819,7 +820,7 @@ private Mono validateAsync(String resourceUri, String edg * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an Accepted response with an Operation-Location header. */ @ServiceMethod(returns = ReturnType.SINGLE) public ValidateResponseInner validate(String resourceUri, String edgeDeviceName, ValidateRequest validateRequest) { @@ -836,7 +837,7 @@ public ValidateResponseInner validate(String resourceUri, String edgeDeviceName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an Accepted response with an Operation-Location header. */ @ServiceMethod(returns = ReturnType.SINGLE) public ValidateResponseInner validate(String resourceUri, String edgeDeviceName, ValidateRequest validateRequest, diff --git a/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/models/Cluster.java b/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/models/Cluster.java index f5e49c0ad71b..9658244b490b 100644 --- a/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/models/Cluster.java +++ b/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/models/Cluster.java @@ -780,7 +780,7 @@ interface WithDesiredProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster updateSecretsLocations(SecretsLocationsChangeRequest body); @@ -792,7 +792,7 @@ interface WithDesiredProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster updateSecretsLocations(SecretsLocationsChangeRequest body, Context context); @@ -844,7 +844,7 @@ interface WithDesiredProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster extendSoftwareAssuranceBenefit(SoftwareAssuranceChangeRequest softwareAssuranceChangeRequest); @@ -856,7 +856,7 @@ interface WithDesiredProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster extendSoftwareAssuranceBenefit(SoftwareAssuranceChangeRequest softwareAssuranceChangeRequest, Context context); @@ -868,7 +868,7 @@ Cluster extendSoftwareAssuranceBenefit(SoftwareAssuranceChangeRequest softwareAs * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster changeRing(ChangeRingRequest changeRingRequest); @@ -880,7 +880,7 @@ Cluster extendSoftwareAssuranceBenefit(SoftwareAssuranceChangeRequest softwareAs * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster changeRing(ChangeRingRequest changeRingRequest, Context context); @@ -891,7 +891,7 @@ Cluster extendSoftwareAssuranceBenefit(SoftwareAssuranceChangeRequest softwareAs * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster triggerLogCollection(LogCollectionRequest logCollectionRequest); @@ -903,7 +903,7 @@ Cluster extendSoftwareAssuranceBenefit(SoftwareAssuranceChangeRequest softwareAs * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster triggerLogCollection(LogCollectionRequest logCollectionRequest, Context context); @@ -914,7 +914,7 @@ Cluster extendSoftwareAssuranceBenefit(SoftwareAssuranceChangeRequest softwareAs * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster configureRemoteSupport(RemoteSupportRequest remoteSupportRequest); @@ -926,7 +926,7 @@ Cluster extendSoftwareAssuranceBenefit(SoftwareAssuranceChangeRequest softwareAs * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster configureRemoteSupport(RemoteSupportRequest remoteSupportRequest, Context context); } diff --git a/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/models/Clusters.java b/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/models/Clusters.java index 1c9d5a0e1170..c72aea4e3bbc 100644 --- a/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/models/Clusters.java +++ b/sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/models/Clusters.java @@ -112,7 +112,7 @@ public interface Clusters { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster updateSecretsLocations(String resourceGroupName, String clusterName, SecretsLocationsChangeRequest body); @@ -126,7 +126,7 @@ public interface Clusters { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster updateSecretsLocations(String resourceGroupName, String clusterName, SecretsLocationsChangeRequest body, Context context); @@ -192,7 +192,7 @@ void uploadCertificate(String resourceGroupName, String clusterName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster extendSoftwareAssuranceBenefit(String resourceGroupName, String clusterName, SoftwareAssuranceChangeRequest softwareAssuranceChangeRequest); @@ -207,7 +207,7 @@ Cluster extendSoftwareAssuranceBenefit(String resourceGroupName, String clusterN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster extendSoftwareAssuranceBenefit(String resourceGroupName, String clusterName, SoftwareAssuranceChangeRequest softwareAssuranceChangeRequest, Context context); @@ -221,7 +221,7 @@ Cluster extendSoftwareAssuranceBenefit(String resourceGroupName, String clusterN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster changeRing(String resourceGroupName, String clusterName, ChangeRingRequest changeRingRequest); @@ -235,7 +235,7 @@ Cluster extendSoftwareAssuranceBenefit(String resourceGroupName, String clusterN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster changeRing(String resourceGroupName, String clusterName, ChangeRingRequest changeRingRequest, Context context); @@ -249,7 +249,7 @@ Cluster changeRing(String resourceGroupName, String clusterName, ChangeRingReque * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster triggerLogCollection(String resourceGroupName, String clusterName, LogCollectionRequest logCollectionRequest); @@ -264,7 +264,7 @@ Cluster triggerLogCollection(String resourceGroupName, String clusterName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster triggerLogCollection(String resourceGroupName, String clusterName, LogCollectionRequest logCollectionRequest, Context context); @@ -278,7 +278,7 @@ Cluster triggerLogCollection(String resourceGroupName, String clusterName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster configureRemoteSupport(String resourceGroupName, String clusterName, RemoteSupportRequest remoteSupportRequest); @@ -293,7 +293,7 @@ Cluster configureRemoteSupport(String resourceGroupName, String clusterName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cluster details. */ Cluster configureRemoteSupport(String resourceGroupName, String clusterName, RemoteSupportRequest remoteSupportRequest, Context context); diff --git a/sdk/cdn/azure-resourcemanager-cdn/src/main/java/com/azure/resourcemanager/cdn/fluent/ProfilesClient.java b/sdk/cdn/azure-resourcemanager-cdn/src/main/java/com/azure/resourcemanager/cdn/fluent/ProfilesClient.java index ed5f27b08bae..0b84c5bb08e7 100644 --- a/sdk/cdn/azure-resourcemanager-cdn/src/main/java/com/azure/resourcemanager/cdn/fluent/ProfilesClient.java +++ b/sdk/cdn/azure-resourcemanager-cdn/src/main/java/com/azure/resourcemanager/cdn/fluent/ProfilesClient.java @@ -825,7 +825,7 @@ SupportedOptimizationTypesListResultInner listSupportedOptimizationTypes(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return result for canMigrate operation along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> cdnCanMigrateToAfdWithResponseAsync(String resourceGroupName, String profileName); @@ -839,7 +839,7 @@ SupportedOptimizationTypesListResultInner listSupportedOptimizationTypes(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of result for canMigrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, CanMigrateResultInner> @@ -854,7 +854,7 @@ SupportedOptimizationTypesListResultInner listSupportedOptimizationTypes(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of result for canMigrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, CanMigrateResultInner> @@ -870,7 +870,7 @@ SupportedOptimizationTypesListResultInner listSupportedOptimizationTypes(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of result for canMigrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, CanMigrateResultInner> @@ -885,7 +885,7 @@ SupportedOptimizationTypesListResultInner listSupportedOptimizationTypes(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return result for canMigrate operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono cdnCanMigrateToAfdAsync(String resourceGroupName, String profileName); @@ -899,7 +899,7 @@ SupportedOptimizationTypesListResultInner listSupportedOptimizationTypes(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return result for canMigrate operation. */ @ServiceMethod(returns = ReturnType.SINGLE) CanMigrateResultInner cdnCanMigrateToAfd(String resourceGroupName, String profileName); @@ -914,7 +914,7 @@ SupportedOptimizationTypesListResultInner listSupportedOptimizationTypes(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return result for canMigrate operation. */ @ServiceMethod(returns = ReturnType.SINGLE) CanMigrateResultInner cdnCanMigrateToAfd(String resourceGroupName, String profileName, Context context); @@ -930,7 +930,7 @@ SupportedOptimizationTypesListResultInner listSupportedOptimizationTypes(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return result for migrate operation along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> cdnMigrateToAfdWithResponseAsync(String resourceGroupName, String profileName, @@ -947,7 +947,7 @@ Mono>> cdnMigrateToAfdWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of result for migrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, MigrateResultInner> beginCdnMigrateToAfdAsync(String resourceGroupName, @@ -964,7 +964,7 @@ PollerFlux, MigrateResultInner> beginCdnMigrateTo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of result for migrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, MigrateResultInner> beginCdnMigrateToAfd(String resourceGroupName, @@ -982,7 +982,7 @@ SyncPoller, MigrateResultInner> beginCdnMigrateTo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of result for migrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, MigrateResultInner> beginCdnMigrateToAfd(String resourceGroupName, @@ -999,7 +999,7 @@ SyncPoller, MigrateResultInner> beginCdnMigrateTo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return result for migrate operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono cdnMigrateToAfdAsync(String resourceGroupName, String profileName, @@ -1016,7 +1016,7 @@ Mono cdnMigrateToAfdAsync(String resourceGroupName, String p * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return result for migrate operation. */ @ServiceMethod(returns = ReturnType.SINGLE) MigrateResultInner cdnMigrateToAfd(String resourceGroupName, String profileName, @@ -1034,7 +1034,7 @@ MigrateResultInner cdnMigrateToAfd(String resourceGroupName, String profileName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return result for migrate operation. */ @ServiceMethod(returns = ReturnType.SINGLE) MigrateResultInner cdnMigrateToAfd(String resourceGroupName, String profileName, diff --git a/sdk/cdn/azure-resourcemanager-cdn/src/main/java/com/azure/resourcemanager/cdn/implementation/ProfilesClientImpl.java b/sdk/cdn/azure-resourcemanager-cdn/src/main/java/com/azure/resourcemanager/cdn/implementation/ProfilesClientImpl.java index c396cb1ac71f..dc10e60cdd11 100644 --- a/sdk/cdn/azure-resourcemanager-cdn/src/main/java/com/azure/resourcemanager/cdn/implementation/ProfilesClientImpl.java +++ b/sdk/cdn/azure-resourcemanager-cdn/src/main/java/com/azure/resourcemanager/cdn/implementation/ProfilesClientImpl.java @@ -2017,7 +2017,7 @@ public PagedIterable listResourceUsage(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return result for canMigrate operation along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> cdnCanMigrateToAfdWithResponseAsync(String resourceGroupName, @@ -2054,7 +2054,7 @@ public Mono>> cdnCanMigrateToAfdWithResponseAsync(Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return result for canMigrate operation along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> cdnCanMigrateToAfdWithResponseAsync(String resourceGroupName, @@ -2089,7 +2089,7 @@ private Mono>> cdnCanMigrateToAfdWithResponseAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of result for canMigrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, CanMigrateResultInner> @@ -2110,7 +2110,7 @@ private Mono>> cdnCanMigrateToAfdWithResponseAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of result for canMigrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, CanMigrateResultInner> @@ -2131,7 +2131,7 @@ private Mono>> cdnCanMigrateToAfdWithResponseAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of result for canMigrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, CanMigrateResultInner> @@ -2149,7 +2149,7 @@ private Mono>> cdnCanMigrateToAfdWithResponseAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of result for canMigrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, CanMigrateResultInner> @@ -2166,7 +2166,7 @@ private Mono>> cdnCanMigrateToAfdWithResponseAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return result for canMigrate operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono cdnCanMigrateToAfdAsync(String resourceGroupName, String profileName) { @@ -2184,7 +2184,7 @@ public Mono cdnCanMigrateToAfdAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return result for canMigrate operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono cdnCanMigrateToAfdAsync(String resourceGroupName, String profileName, @@ -2202,7 +2202,7 @@ private Mono cdnCanMigrateToAfdAsync(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return result for canMigrate operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public CanMigrateResultInner cdnCanMigrateToAfd(String resourceGroupName, String profileName) { @@ -2219,7 +2219,7 @@ public CanMigrateResultInner cdnCanMigrateToAfd(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return result for canMigrate operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public CanMigrateResultInner cdnCanMigrateToAfd(String resourceGroupName, String profileName, Context context) { @@ -2237,7 +2237,7 @@ public CanMigrateResultInner cdnCanMigrateToAfd(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return result for migrate operation along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> cdnMigrateToAfdWithResponseAsync(String resourceGroupName, @@ -2284,7 +2284,7 @@ public Mono>> cdnMigrateToAfdWithResponseAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return result for migrate operation along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> cdnMigrateToAfdWithResponseAsync(String resourceGroupName, @@ -2329,7 +2329,7 @@ private Mono>> cdnMigrateToAfdWithResponseAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of result for migrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, MigrateResultInner> beginCdnMigrateToAfdAsync( @@ -2352,7 +2352,7 @@ public PollerFlux, MigrateResultInner> beginCdnMi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of result for migrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, MigrateResultInner> beginCdnMigrateToAfdAsync( @@ -2376,7 +2376,7 @@ private PollerFlux, MigrateResultInner> beginCdnM * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of result for migrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, MigrateResultInner> beginCdnMigrateToAfd(String resourceGroupName, @@ -2396,7 +2396,7 @@ public SyncPoller, MigrateResultInner> beginCdnMi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of result for migrate operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, MigrateResultInner> beginCdnMigrateToAfd(String resourceGroupName, @@ -2416,7 +2416,7 @@ public SyncPoller, MigrateResultInner> beginCdnMi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return result for migrate operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono cdnMigrateToAfdAsync(String resourceGroupName, String profileName, @@ -2437,7 +2437,7 @@ public Mono cdnMigrateToAfdAsync(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return result for migrate operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono cdnMigrateToAfdAsync(String resourceGroupName, String profileName, @@ -2457,7 +2457,7 @@ private Mono cdnMigrateToAfdAsync(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return result for migrate operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public MigrateResultInner cdnMigrateToAfd(String resourceGroupName, String profileName, @@ -2477,7 +2477,7 @@ public MigrateResultInner cdnMigrateToAfd(String resourceGroupName, String profi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return result for migrate operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public MigrateResultInner cdnMigrateToAfd(String resourceGroupName, String profileName, diff --git a/sdk/cognitiveservices/azure-resourcemanager-cognitiveservices/src/main/java/com/azure/resourcemanager/cognitiveservices/fluent/OutboundRulesOperationsClient.java b/sdk/cognitiveservices/azure-resourcemanager-cognitiveservices/src/main/java/com/azure/resourcemanager/cognitiveservices/fluent/OutboundRulesOperationsClient.java index ce200e80dbe0..16793b5c4eb4 100644 --- a/sdk/cognitiveservices/azure-resourcemanager-cognitiveservices/src/main/java/com/azure/resourcemanager/cognitiveservices/fluent/OutboundRulesOperationsClient.java +++ b/sdk/cognitiveservices/azure-resourcemanager-cognitiveservices/src/main/java/com/azure/resourcemanager/cognitiveservices/fluent/OutboundRulesOperationsClient.java @@ -27,7 +27,8 @@ public interface OutboundRulesOperationsClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the paginated response with {@link PagedIterable}. + * @return list of outbound rules for the managed network of a cognitive services account as paginated response with + * {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable post(String resourceGroupName, String accountName, @@ -46,7 +47,8 @@ PagedIterable post(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the paginated response with {@link PagedIterable}. + * @return list of outbound rules for the managed network of a cognitive services account as paginated response with + * {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable post(String resourceGroupName, String accountName, diff --git a/sdk/cognitiveservices/azure-resourcemanager-cognitiveservices/src/main/java/com/azure/resourcemanager/cognitiveservices/implementation/OutboundRulesOperationsClientImpl.java b/sdk/cognitiveservices/azure-resourcemanager-cognitiveservices/src/main/java/com/azure/resourcemanager/cognitiveservices/implementation/OutboundRulesOperationsClientImpl.java index 60f3b5f29f63..d71b1f16d77a 100644 --- a/sdk/cognitiveservices/azure-resourcemanager-cognitiveservices/src/main/java/com/azure/resourcemanager/cognitiveservices/implementation/OutboundRulesOperationsClientImpl.java +++ b/sdk/cognitiveservices/azure-resourcemanager-cognitiveservices/src/main/java/com/azure/resourcemanager/cognitiveservices/implementation/OutboundRulesOperationsClientImpl.java @@ -115,7 +115,8 @@ Response postNextSync(@PathParam(value = "nextLink", enc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link PagedResponse} on successful completion of {@link Mono}. + * @return list of outbound rules for the managed network of a cognitive services account along with + * {@link PagedResponse} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> postSinglePageAsync(String resourceGroupName, @@ -152,7 +153,8 @@ private Mono> postSinglePageAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the paginated response with {@link PagedFlux}. + * @return list of outbound rules for the managed network of a cognitive services account as paginated response with + * {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) private PagedFlux postAsync(String resourceGroupName, String accountName, @@ -173,7 +175,8 @@ private PagedFlux postAsync(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link PagedResponse}. + * @return list of outbound rules for the managed network of a cognitive services account along with + * {@link PagedResponse}. */ @ServiceMethod(returns = ReturnType.SINGLE) private PagedResponse postSinglePage(String resourceGroupName, String accountName, @@ -203,7 +206,8 @@ private PagedResponse postSinglePage(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link PagedResponse}. + * @return list of outbound rules for the managed network of a cognitive services account along with + * {@link PagedResponse}. */ @ServiceMethod(returns = ReturnType.SINGLE) private PagedResponse postSinglePage(String resourceGroupName, String accountName, @@ -231,7 +235,8 @@ private PagedResponse postSinglePage(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the paginated response with {@link PagedIterable}. + * @return list of outbound rules for the managed network of a cognitive services account as paginated response with + * {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable post(String resourceGroupName, String accountName, @@ -253,7 +258,8 @@ public PagedIterable post(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the paginated response with {@link PagedIterable}. + * @return list of outbound rules for the managed network of a cognitive services account as paginated response with + * {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable post(String resourceGroupName, String accountName, @@ -273,7 +279,8 @@ public PagedIterable post(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link PagedResponse} on successful completion of {@link Mono}. + * @return list of outbound rules for the managed network of a cognitive services account along with + * {@link PagedResponse} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> postNextSinglePageAsync(String nextLink) { @@ -294,7 +301,8 @@ private Mono> postNextSinglePageAs * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link PagedResponse}. + * @return list of outbound rules for the managed network of a cognitive services account along with + * {@link PagedResponse}. */ @ServiceMethod(returns = ReturnType.SINGLE) private PagedResponse postNextSinglePage(String nextLink) { @@ -316,7 +324,8 @@ private PagedResponse postNextSinglePage(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link PagedResponse}. + * @return list of outbound rules for the managed network of a cognitive services account along with + * {@link PagedResponse}. */ @ServiceMethod(returns = ReturnType.SINGLE) private PagedResponse postNextSinglePage(String nextLink, Context context) { diff --git a/sdk/cognitiveservices/azure-resourcemanager-cognitiveservices/src/main/java/com/azure/resourcemanager/cognitiveservices/models/OutboundRulesOperations.java b/sdk/cognitiveservices/azure-resourcemanager-cognitiveservices/src/main/java/com/azure/resourcemanager/cognitiveservices/models/OutboundRulesOperations.java index 394470ac46f6..9ada8a2992bf 100644 --- a/sdk/cognitiveservices/azure-resourcemanager-cognitiveservices/src/main/java/com/azure/resourcemanager/cognitiveservices/models/OutboundRulesOperations.java +++ b/sdk/cognitiveservices/azure-resourcemanager-cognitiveservices/src/main/java/com/azure/resourcemanager/cognitiveservices/models/OutboundRulesOperations.java @@ -24,7 +24,8 @@ public interface OutboundRulesOperations { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the paginated response with {@link PagedIterable}. + * @return list of outbound rules for the managed network of a cognitive services account as paginated response with + * {@link PagedIterable}. */ PagedIterable post(String resourceGroupName, String accountName, String managedNetworkName, ManagedNetworkSettingsBasicResourceInner body); @@ -42,7 +43,8 @@ PagedIterable post(String resourceGroupName, String a * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the paginated response with {@link PagedIterable}. + * @return list of outbound rules for the managed network of a cognitive services account as paginated response with + * {@link PagedIterable}. */ PagedIterable post(String resourceGroupName, String accountName, String managedNetworkName, ManagedNetworkSettingsBasicResourceInner body, Context context); diff --git a/sdk/compute/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/fluent/VirtualMachineScaleSetVMsClient.java b/sdk/compute/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/fluent/VirtualMachineScaleSetVMsClient.java index 0725f806f23c..cc5d3784a7ff 100644 --- a/sdk/compute/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/fluent/VirtualMachineScaleSetVMsClient.java +++ b/sdk/compute/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/fluent/VirtualMachineScaleSetVMsClient.java @@ -1055,7 +1055,8 @@ Response simulateEvictionWithResponse(String resourceGroupName, String vmS * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return specifies the storage settings for the virtual machine disks along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> attachDetachDataDisksWithResponseAsync(String resourceGroupName, @@ -1072,7 +1073,7 @@ Mono>> attachDetachDataDisksWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of specifies the storage settings for the virtual machine disks. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, StorageProfile> beginAttachDetachDataDisksAsync(String resourceGroupName, @@ -1089,7 +1090,7 @@ PollerFlux, StorageProfile> beginAttachDetachDataDisk * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of specifies the storage settings for the virtual machine disks. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, StorageProfile> beginAttachDetachDataDisks(String resourceGroupName, @@ -1107,7 +1108,7 @@ SyncPoller, StorageProfile> beginAttachDetachDataDisk * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of specifies the storage settings for the virtual machine disks. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, StorageProfile> beginAttachDetachDataDisks(String resourceGroupName, @@ -1124,7 +1125,7 @@ SyncPoller, StorageProfile> beginAttachDetachDataDisk * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return specifies the storage settings for the virtual machine disks on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono attachDetachDataDisksAsync(String resourceGroupName, String vmScaleSetName, String instanceId, @@ -1141,7 +1142,7 @@ Mono attachDetachDataDisksAsync(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return specifies the storage settings for the virtual machine disks. */ @ServiceMethod(returns = ReturnType.SINGLE) StorageProfile attachDetachDataDisks(String resourceGroupName, String vmScaleSetName, String instanceId, @@ -1159,7 +1160,7 @@ StorageProfile attachDetachDataDisks(String resourceGroupName, String vmScaleSet * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.resourcemanager.compute.models.ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return specifies the storage settings for the virtual machine disks. */ @ServiceMethod(returns = ReturnType.SINGLE) StorageProfile attachDetachDataDisks(String resourceGroupName, String vmScaleSetName, String instanceId, diff --git a/sdk/compute/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetVMsClientImpl.java b/sdk/compute/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetVMsClientImpl.java index fc96c240bc1d..3ac28ab58d38 100644 --- a/sdk/compute/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetVMsClientImpl.java +++ b/sdk/compute/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetVMsClientImpl.java @@ -2485,7 +2485,8 @@ public void simulateEviction(String resourceGroupName, String vmScaleSetName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return specifies the storage settings for the virtual machine disks along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> attachDetachDataDisksWithResponseAsync(String resourceGroupName, @@ -2535,7 +2536,8 @@ public Mono>> attachDetachDataDisksWithResponseAsync(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return specifies the storage settings for the virtual machine disks along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> attachDetachDataDisksWithResponseAsync(String resourceGroupName, @@ -2582,7 +2584,7 @@ private Mono>> attachDetachDataDisksWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of specifies the storage settings for the virtual machine disks. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, StorageProfile> beginAttachDetachDataDisksAsync( @@ -2605,7 +2607,7 @@ public PollerFlux, StorageProfile> beginAttachDetachD * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of specifies the storage settings for the virtual machine disks. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, StorageProfile> beginAttachDetachDataDisksAsync( @@ -2629,7 +2631,7 @@ private PollerFlux, StorageProfile> beginAttachDetach * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of specifies the storage settings for the virtual machine disks. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, StorageProfile> beginAttachDetachDataDisks(String resourceGroupName, @@ -2650,7 +2652,7 @@ public SyncPoller, StorageProfile> beginAttachDetachD * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of specifies the storage settings for the virtual machine disks. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, StorageProfile> beginAttachDetachDataDisks(String resourceGroupName, @@ -2670,7 +2672,7 @@ public SyncPoller, StorageProfile> beginAttachDetachD * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return specifies the storage settings for the virtual machine disks on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono attachDetachDataDisksAsync(String resourceGroupName, String vmScaleSetName, @@ -2691,7 +2693,7 @@ public Mono attachDetachDataDisksAsync(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return specifies the storage settings for the virtual machine disks on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono attachDetachDataDisksAsync(String resourceGroupName, String vmScaleSetName, @@ -2712,7 +2714,7 @@ private Mono attachDetachDataDisksAsync(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return specifies the storage settings for the virtual machine disks. */ @ServiceMethod(returns = ReturnType.SINGLE) public StorageProfile attachDetachDataDisks(String resourceGroupName, String vmScaleSetName, String instanceId, @@ -2732,7 +2734,7 @@ public StorageProfile attachDetachDataDisks(String resourceGroupName, String vmS * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ApiErrorException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return specifies the storage settings for the virtual machine disks. */ @ServiceMethod(returns = ReturnType.SINGLE) public StorageProfile attachDetachDataDisks(String resourceGroupName, String vmScaleSetName, String instanceId, diff --git a/sdk/computelimit/azure-resourcemanager-computelimit/src/main/java/com/azure/resourcemanager/computelimit/fluent/FeaturesClient.java b/sdk/computelimit/azure-resourcemanager-computelimit/src/main/java/com/azure/resourcemanager/computelimit/fluent/FeaturesClient.java index c611f1e3c52a..7e8902f8afeb 100644 --- a/sdk/computelimit/azure-resourcemanager-computelimit/src/main/java/com/azure/resourcemanager/computelimit/fluent/FeaturesClient.java +++ b/sdk/computelimit/azure-resourcemanager-computelimit/src/main/java/com/azure/resourcemanager/computelimit/fluent/FeaturesClient.java @@ -78,7 +78,7 @@ public interface FeaturesClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginEnable(String location, @@ -93,7 +93,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginEnable(String location, @@ -107,7 +107,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner enable(String location, String featureName); @@ -121,7 +121,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner enable(String location, String featureName, Context context); @@ -134,7 +134,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginDisable(String location, @@ -149,7 +149,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginDisable(String location, @@ -163,7 +163,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner disable(String location, String featureName); @@ -177,7 +177,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner disable(String location, String featureName, Context context); diff --git a/sdk/computelimit/azure-resourcemanager-computelimit/src/main/java/com/azure/resourcemanager/computelimit/implementation/FeaturesClientImpl.java b/sdk/computelimit/azure-resourcemanager-computelimit/src/main/java/com/azure/resourcemanager/computelimit/implementation/FeaturesClientImpl.java index ebc359162f05..f016284a4e90 100644 --- a/sdk/computelimit/azure-resourcemanager-computelimit/src/main/java/com/azure/resourcemanager/computelimit/implementation/FeaturesClientImpl.java +++ b/sdk/computelimit/azure-resourcemanager-computelimit/src/main/java/com/azure/resourcemanager/computelimit/implementation/FeaturesClientImpl.java @@ -336,7 +336,8 @@ public PagedIterable listBySubscriptionLocationResource(String loc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the current status of an async operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> enableWithResponseAsync(String location, String featureName) { @@ -355,7 +356,7 @@ private Mono>> enableWithResponseAsync(String location * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response enableWithResponse(String location, String featureName) { @@ -373,7 +374,7 @@ private Response enableWithResponse(String location, String featureN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response enableWithResponse(String location, String featureName, Context context) { @@ -390,7 +391,7 @@ private Response enableWithResponse(String location, String featureN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -409,7 +410,7 @@ private Response enableWithResponse(String location, String featureN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginEnable(String location, @@ -428,7 +429,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginEnable(String location, @@ -446,7 +447,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono enableAsync(String location, String featureName) { @@ -461,7 +462,7 @@ private Mono enableAsync(String location, String fea * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner enable(String location, String featureName) { @@ -477,7 +478,7 @@ public OperationStatusResultInner enable(String location, String featureName) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner enable(String location, String featureName, Context context) { @@ -492,7 +493,8 @@ public OperationStatusResultInner enable(String location, String featureName, Co * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the current status of an async operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> disableWithResponseAsync(String location, String featureName) { @@ -511,7 +513,7 @@ private Mono>> disableWithResponseAsync(String locatio * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response disableWithResponse(String location, String featureName) { @@ -529,7 +531,7 @@ private Response disableWithResponse(String location, String feature * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response disableWithResponse(String location, String featureName, Context context) { @@ -546,7 +548,7 @@ private Response disableWithResponse(String location, String feature * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -565,7 +567,7 @@ private Response disableWithResponse(String location, String feature * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginDisable(String location, @@ -584,7 +586,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginDisable(String location, @@ -602,7 +604,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono disableAsync(String location, String featureName) { @@ -617,7 +619,7 @@ private Mono disableAsync(String location, String fe * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner disable(String location, String featureName) { @@ -633,7 +635,7 @@ public OperationStatusResultInner disable(String location, String featureName) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner disable(String location, String featureName, Context context) { diff --git a/sdk/computelimit/azure-resourcemanager-computelimit/src/main/java/com/azure/resourcemanager/computelimit/models/Features.java b/sdk/computelimit/azure-resourcemanager-computelimit/src/main/java/com/azure/resourcemanager/computelimit/models/Features.java index 05a5c8c41828..4926f467dabd 100644 --- a/sdk/computelimit/azure-resourcemanager-computelimit/src/main/java/com/azure/resourcemanager/computelimit/models/Features.java +++ b/sdk/computelimit/azure-resourcemanager-computelimit/src/main/java/com/azure/resourcemanager/computelimit/models/Features.java @@ -68,7 +68,7 @@ public interface Features { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult enable(String location, String featureName); @@ -81,7 +81,7 @@ public interface Features { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult enable(String location, String featureName, Context context); @@ -93,7 +93,7 @@ public interface Features { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult disable(String location, String featureName); @@ -106,7 +106,7 @@ public interface Features { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult disable(String location, String featureName, Context context); } diff --git a/sdk/computeschedule/azure-resourcemanager-computeschedule/src/main/java/com/azure/resourcemanager/computeschedule/fluent/OccurrencesClient.java b/sdk/computeschedule/azure-resourcemanager-computeschedule/src/main/java/com/azure/resourcemanager/computeschedule/fluent/OccurrencesClient.java index 6065b72ed224..85bc96cb4cd8 100644 --- a/sdk/computeschedule/azure-resourcemanager-computeschedule/src/main/java/com/azure/resourcemanager/computeschedule/fluent/OccurrencesClient.java +++ b/sdk/computeschedule/azure-resourcemanager-computeschedule/src/main/java/com/azure/resourcemanager/computeschedule/fluent/OccurrencesClient.java @@ -154,7 +154,8 @@ RecurringActionsResourceOperationResultInner cancel(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the response from scheduled action resource requests, which + * contains the status of each resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, RecurringActionsResourceOperationResultInner> @@ -171,7 +172,8 @@ RecurringActionsResourceOperationResultInner cancel(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the response from scheduled action resource requests, which + * contains the status of each resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, RecurringActionsResourceOperationResultInner> @@ -188,7 +190,7 @@ RecurringActionsResourceOperationResultInner cancel(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the response from scheduled action resource requests, which contains the status of each resource. */ @ServiceMethod(returns = ReturnType.SINGLE) RecurringActionsResourceOperationResultInner delay(String resourceGroupName, String scheduledActionName, @@ -205,7 +207,7 @@ RecurringActionsResourceOperationResultInner delay(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the response from scheduled action resource requests, which contains the status of each resource. */ @ServiceMethod(returns = ReturnType.SINGLE) RecurringActionsResourceOperationResultInner delay(String resourceGroupName, String scheduledActionName, diff --git a/sdk/computeschedule/azure-resourcemanager-computeschedule/src/main/java/com/azure/resourcemanager/computeschedule/implementation/OccurrencesClientImpl.java b/sdk/computeschedule/azure-resourcemanager-computeschedule/src/main/java/com/azure/resourcemanager/computeschedule/implementation/OccurrencesClientImpl.java index e9fcc5d41409..d41e2d6bcf30 100644 --- a/sdk/computeschedule/azure-resourcemanager-computeschedule/src/main/java/com/azure/resourcemanager/computeschedule/implementation/OccurrencesClientImpl.java +++ b/sdk/computeschedule/azure-resourcemanager-computeschedule/src/main/java/com/azure/resourcemanager/computeschedule/implementation/OccurrencesClientImpl.java @@ -625,7 +625,8 @@ public RecurringActionsResourceOperationResultInner cancel(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the response from scheduled action resource requests, which contains the status of each resource along + * with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> delayWithResponseAsync(String resourceGroupName, @@ -649,7 +650,8 @@ private Mono>> delayWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the response from scheduled action resource requests, which contains the status of each resource along + * with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response delayWithResponse(String resourceGroupName, String scheduledActionName, @@ -672,7 +674,8 @@ private Response delayWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the response from scheduled action resource requests, which contains the status of each resource along + * with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response delayWithResponse(String resourceGroupName, String scheduledActionName, @@ -694,7 +697,8 @@ private Response delayWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the response from scheduled action resource requests, which + * contains the status of each resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private @@ -718,7 +722,8 @@ private Response delayWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the response from scheduled action resource requests, which + * contains the status of each resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -742,7 +747,8 @@ private Response delayWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the response from scheduled action resource requests, which + * contains the status of each resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -767,7 +773,8 @@ private Response delayWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the response from scheduled action resource requests, which contains the status of each resource on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono delayAsync(String resourceGroupName, @@ -786,7 +793,7 @@ private Mono delayAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the response from scheduled action resource requests, which contains the status of each resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public RecurringActionsResourceOperationResultInner delay(String resourceGroupName, String scheduledActionName, @@ -805,7 +812,7 @@ public RecurringActionsResourceOperationResultInner delay(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the response from scheduled action resource requests, which contains the status of each resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public RecurringActionsResourceOperationResultInner delay(String resourceGroupName, String scheduledActionName, diff --git a/sdk/computeschedule/azure-resourcemanager-computeschedule/src/main/java/com/azure/resourcemanager/computeschedule/models/Occurrences.java b/sdk/computeschedule/azure-resourcemanager-computeschedule/src/main/java/com/azure/resourcemanager/computeschedule/models/Occurrences.java index 4c5e6489226a..2332a6280725 100644 --- a/sdk/computeschedule/azure-resourcemanager-computeschedule/src/main/java/com/azure/resourcemanager/computeschedule/models/Occurrences.java +++ b/sdk/computeschedule/azure-resourcemanager-computeschedule/src/main/java/com/azure/resourcemanager/computeschedule/models/Occurrences.java @@ -137,7 +137,7 @@ RecurringActionsResourceOperationResult cancel(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the response from scheduled action resource requests, which contains the status of each resource. */ RecurringActionsResourceOperationResult delay(String resourceGroupName, String scheduledActionName, String occurrenceId, DelayRequest body); @@ -153,7 +153,7 @@ RecurringActionsResourceOperationResult delay(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the response from scheduled action resource requests, which contains the status of each resource. */ RecurringActionsResourceOperationResult delay(String resourceGroupName, String scheduledActionName, String occurrenceId, DelayRequest body, Context context); diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/fluent/models/ContainerGroupInner.java b/sdk/containerinstance/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/fluent/models/ContainerGroupInner.java index 8c66875c5fd4..f8c9f17ad7ac 100644 --- a/sdk/containerinstance/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/fluent/models/ContainerGroupInner.java +++ b/sdk/containerinstance/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/fluent/models/ContainerGroupInner.java @@ -41,16 +41,6 @@ */ @Fluent public final class ContainerGroupInner extends Resource { - /* - * The resource location. - */ - private String location; - - /* - * The resource tags. - */ - private Map tags; - /* * The availability zones. */ @@ -92,46 +82,6 @@ public final class ContainerGroupInner extends Resource { public ContainerGroupInner() { } - /** - * Get the location property: The resource location. - * - * @return the location value. - */ - public String location() { - return this.location; - } - - /** - * Set the location property: The resource location. - * - * @param location the location value to set. - * @return the ContainerGroupInner object itself. - */ - public ContainerGroupInner withLocation(String location) { - this.location = location; - return this; - } - - /** - * Get the tags property: The resource tags. - * - * @return the tags value. - */ - public Map tags() { - return this.tags; - } - - /** - * Set the tags property: The resource tags. - * - * @param tags the tags value to set. - * @return the ContainerGroupInner object itself. - */ - public ContainerGroupInner withTags(Map tags) { - this.tags = tags; - return this; - } - /** * Get the zones property: The availability zones. * @@ -220,6 +170,24 @@ public String id() { return this.id; } + /** + * {@inheritDoc} + */ + @Override + public ContainerGroupInner withLocation(String location) { + super.withLocation(location); + return this; + } + + /** + * {@inheritDoc} + */ + @Override + public ContainerGroupInner withTags(Map tags) { + super.withTags(tags); + return this; + } + /** * Get the provisioningState property: The provisioning state of the container group. This only appears in the * response. @@ -722,9 +690,9 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("location", location()); + jsonWriter.writeMapField("tags", tags(), (writer, element) -> writer.writeString(element)); jsonWriter.writeJsonField("properties", this.innerProperties); - jsonWriter.writeStringField("location", this.location); - jsonWriter.writeMapField("tags", this.tags, (writer, element) -> writer.writeString(element)); jsonWriter.writeArrayField("zones", this.zones, (writer, element) -> writer.writeString(element)); jsonWriter.writeJsonField("identity", this.identity); return jsonWriter.writeEndObject(); @@ -752,13 +720,13 @@ public static ContainerGroupInner fromJson(JsonReader jsonReader) throws IOExcep deserializedContainerGroupInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedContainerGroupInner.type = reader.getString(); - } else if ("properties".equals(fieldName)) { - deserializedContainerGroupInner.innerProperties = ContainerGroupProperties.fromJson(reader); } else if ("location".equals(fieldName)) { - deserializedContainerGroupInner.location = reader.getString(); + deserializedContainerGroupInner.withLocation(reader.getString()); } else if ("tags".equals(fieldName)) { Map tags = reader.readMap(reader1 -> reader1.getString()); - deserializedContainerGroupInner.tags = tags; + deserializedContainerGroupInner.withTags(tags); + } else if ("properties".equals(fieldName)) { + deserializedContainerGroupInner.innerProperties = ContainerGroupProperties.fromJson(reader); } else if ("zones".equals(fieldName)) { List zones = reader.readArray(reader1 -> reader1.getString()); deserializedContainerGroupInner.zones = zones; diff --git a/sdk/containerregistry/azure-resourcemanager-containerregistry/src/main/java/com/azure/resourcemanager/containerregistry/fluent/RegistriesClient.java b/sdk/containerregistry/azure-resourcemanager-containerregistry/src/main/java/com/azure/resourcemanager/containerregistry/fluent/RegistriesClient.java index 9aaca627485c..f2be6f73a60c 100644 --- a/sdk/containerregistry/azure-resourcemanager-containerregistry/src/main/java/com/azure/resourcemanager/containerregistry/fluent/RegistriesClient.java +++ b/sdk/containerregistry/azure-resourcemanager-containerregistry/src/main/java/com/azure/resourcemanager/containerregistry/fluent/RegistriesClient.java @@ -753,7 +753,8 @@ RegistryListCredentialsResultInner regenerateCredential(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the response from the GenerateCredentials operation along with {@link Response} on successful completion + * of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> generateCredentialsWithResponseAsync(String resourceGroupName, String registryName, @@ -768,7 +769,7 @@ Mono>> generateCredentialsWithResponseAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the response from the GenerateCredentials operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, GenerateCredentialsResultInner> @@ -784,7 +785,7 @@ Mono>> generateCredentialsWithResponseAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the response from the GenerateCredentials operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, GenerateCredentialsResultInner> beginGenerateCredentials( @@ -800,7 +801,7 @@ SyncPoller, GenerateCredentialsResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the response from the GenerateCredentials operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, GenerateCredentialsResultInner> beginGenerateCredentials( @@ -816,7 +817,7 @@ SyncPoller, GenerateCredentialsResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the response from the GenerateCredentials operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono generateCredentialsAsync(String resourceGroupName, String registryName, @@ -831,7 +832,7 @@ Mono generateCredentialsAsync(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the response from the GenerateCredentials operation. */ @ServiceMethod(returns = ReturnType.SINGLE) GenerateCredentialsResultInner generateCredentials(String resourceGroupName, String registryName, @@ -847,7 +848,7 @@ GenerateCredentialsResultInner generateCredentials(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the response from the GenerateCredentials operation. */ @ServiceMethod(returns = ReturnType.SINGLE) GenerateCredentialsResultInner generateCredentials(String resourceGroupName, String registryName, diff --git a/sdk/containerregistry/azure-resourcemanager-containerregistry/src/main/java/com/azure/resourcemanager/containerregistry/implementation/RegistriesClientImpl.java b/sdk/containerregistry/azure-resourcemanager-containerregistry/src/main/java/com/azure/resourcemanager/containerregistry/implementation/RegistriesClientImpl.java index fd426283036d..01f77e66db9f 100644 --- a/sdk/containerregistry/azure-resourcemanager-containerregistry/src/main/java/com/azure/resourcemanager/containerregistry/implementation/RegistriesClientImpl.java +++ b/sdk/containerregistry/azure-resourcemanager-containerregistry/src/main/java/com/azure/resourcemanager/containerregistry/implementation/RegistriesClientImpl.java @@ -1891,7 +1891,8 @@ public RegistryListCredentialsResultInner regenerateCredential(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the response from the GenerateCredentials operation along with {@link Response} on successful completion + * of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> generateCredentialsWithResponseAsync(String resourceGroupName, @@ -1936,7 +1937,8 @@ public Mono>> generateCredentialsWithResponseAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the response from the GenerateCredentials operation along with {@link Response} on successful completion + * of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> generateCredentialsWithResponseAsync(String resourceGroupName, @@ -1979,7 +1981,7 @@ private Mono>> generateCredentialsWithResponseAsync(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the response from the GenerateCredentials operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, GenerateCredentialsResultInner> @@ -2002,7 +2004,7 @@ private Mono>> generateCredentialsWithResponseAsync(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the response from the GenerateCredentials operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, GenerateCredentialsResultInner> @@ -2025,7 +2027,7 @@ private Mono>> generateCredentialsWithResponseAsync(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the response from the GenerateCredentials operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, GenerateCredentialsResultInner> @@ -2045,7 +2047,7 @@ private Mono>> generateCredentialsWithResponseAsync(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the response from the GenerateCredentials operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, GenerateCredentialsResultInner> @@ -2065,7 +2067,7 @@ private Mono>> generateCredentialsWithResponseAsync(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the response from the GenerateCredentials operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono generateCredentialsAsync(String resourceGroupName, String registryName, @@ -2084,7 +2086,7 @@ public Mono generateCredentialsAsync(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the response from the GenerateCredentials operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono generateCredentialsAsync(String resourceGroupName, String registryName, @@ -2103,7 +2105,7 @@ private Mono generateCredentialsAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the response from the GenerateCredentials operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public GenerateCredentialsResultInner generateCredentials(String resourceGroupName, String registryName, @@ -2121,7 +2123,7 @@ public GenerateCredentialsResultInner generateCredentials(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the response from the GenerateCredentials operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public GenerateCredentialsResultInner generateCredentials(String resourceGroupName, String registryName, diff --git a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/fluent/AutoUpgradeProfileOperationsClient.java b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/fluent/AutoUpgradeProfileOperationsClient.java index 5f27b1b3302b..2fcc589f73b5 100644 --- a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/fluent/AutoUpgradeProfileOperationsClient.java +++ b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/fluent/AutoUpgradeProfileOperationsClient.java @@ -24,7 +24,7 @@ public interface AutoUpgradeProfileOperationsClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of generateResponse is the response of a generate request. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, GenerateResponseInner> @@ -40,7 +40,7 @@ public interface AutoUpgradeProfileOperationsClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of generateResponse is the response of a generate request. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, GenerateResponseInner> beginGenerateUpdateRun( @@ -55,7 +55,7 @@ SyncPoller, GenerateResponseInner> beginGenera * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return generateResponse is the response of a generate request. */ @ServiceMethod(returns = ReturnType.SINGLE) GenerateResponseInner generateUpdateRun(String resourceGroupName, String fleetName, String autoUpgradeProfileName); @@ -70,7 +70,7 @@ SyncPoller, GenerateResponseInner> beginGenera * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return generateResponse is the response of a generate request. */ @ServiceMethod(returns = ReturnType.SINGLE) GenerateResponseInner generateUpdateRun(String resourceGroupName, String fleetName, String autoUpgradeProfileName, diff --git a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/fluent/UpdateRunsClient.java b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/fluent/UpdateRunsClient.java index 01322c3fc868..1610f73ca5a7 100644 --- a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/fluent/UpdateRunsClient.java +++ b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/fluent/UpdateRunsClient.java @@ -219,7 +219,8 @@ PagedIterable listByFleet(String resourceGroupName, String fleet * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, UpdateRunInner> beginStart(String resourceGroupName, String fleetName, @@ -236,7 +237,8 @@ SyncPoller, UpdateRunInner> beginStart(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, UpdateRunInner> beginStart(String resourceGroupName, String fleetName, @@ -251,7 +253,7 @@ SyncPoller, UpdateRunInner> beginStart(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ @ServiceMethod(returns = ReturnType.SINGLE) UpdateRunInner start(String resourceGroupName, String fleetName, String updateRunName); @@ -267,7 +269,7 @@ SyncPoller, UpdateRunInner> beginStart(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ @ServiceMethod(returns = ReturnType.SINGLE) UpdateRunInner start(String resourceGroupName, String fleetName, String updateRunName, String ifMatch, @@ -282,7 +284,8 @@ UpdateRunInner start(String resourceGroupName, String fleetName, String updateRu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, UpdateRunInner> beginStop(String resourceGroupName, String fleetName, @@ -299,7 +302,8 @@ SyncPoller, UpdateRunInner> beginStop(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, UpdateRunInner> beginStop(String resourceGroupName, String fleetName, @@ -314,7 +318,7 @@ SyncPoller, UpdateRunInner> beginStop(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ @ServiceMethod(returns = ReturnType.SINGLE) UpdateRunInner stop(String resourceGroupName, String fleetName, String updateRunName); @@ -330,7 +334,7 @@ SyncPoller, UpdateRunInner> beginStop(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ @ServiceMethod(returns = ReturnType.SINGLE) UpdateRunInner stop(String resourceGroupName, String fleetName, String updateRunName, String ifMatch, @@ -346,7 +350,8 @@ UpdateRunInner stop(String resourceGroupName, String fleetName, String updateRun * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, UpdateRunInner> beginSkip(String resourceGroupName, String fleetName, @@ -364,7 +369,8 @@ SyncPoller, UpdateRunInner> beginSkip(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, UpdateRunInner> beginSkip(String resourceGroupName, String fleetName, @@ -380,7 +386,7 @@ SyncPoller, UpdateRunInner> beginSkip(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ @ServiceMethod(returns = ReturnType.SINGLE) UpdateRunInner skip(String resourceGroupName, String fleetName, String updateRunName, SkipProperties body); @@ -397,7 +403,7 @@ SyncPoller, UpdateRunInner> beginSkip(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ @ServiceMethod(returns = ReturnType.SINGLE) UpdateRunInner skip(String resourceGroupName, String fleetName, String updateRunName, SkipProperties body, diff --git a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/implementation/AutoUpgradeProfileOperationsClientImpl.java b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/implementation/AutoUpgradeProfileOperationsClientImpl.java index 0dae262950f6..457b4e61247d 100644 --- a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/implementation/AutoUpgradeProfileOperationsClientImpl.java +++ b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/implementation/AutoUpgradeProfileOperationsClientImpl.java @@ -93,7 +93,8 @@ Response generateUpdateRunSync(@HostParam("endpoint") String endpoin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return generateResponse is the response of a generate request along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> generateUpdateRunWithResponseAsync(String resourceGroupName, @@ -114,7 +115,7 @@ private Mono>> generateUpdateRunWithResponseAsync(Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return generateResponse is the response of a generate request along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response generateUpdateRunWithResponse(String resourceGroupName, String fleetName, @@ -135,7 +136,7 @@ private Response generateUpdateRunWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return generateResponse is the response of a generate request along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response generateUpdateRunWithResponse(String resourceGroupName, String fleetName, @@ -154,7 +155,7 @@ private Response generateUpdateRunWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of generateResponse is the response of a generate request. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, GenerateResponseInner> @@ -175,7 +176,7 @@ private Response generateUpdateRunWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of generateResponse is the response of a generate request. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, GenerateResponseInner> @@ -196,7 +197,7 @@ private Response generateUpdateRunWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of generateResponse is the response of a generate request. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, GenerateResponseInner> beginGenerateUpdateRun( @@ -216,7 +217,7 @@ public SyncPoller, GenerateResponseInner> begi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return generateResponse is the response of a generate request on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono generateUpdateRunAsync(String resourceGroupName, String fleetName, @@ -234,7 +235,7 @@ private Mono generateUpdateRunAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return generateResponse is the response of a generate request. */ @ServiceMethod(returns = ReturnType.SINGLE) public GenerateResponseInner generateUpdateRun(String resourceGroupName, String fleetName, @@ -252,7 +253,7 @@ public GenerateResponseInner generateUpdateRun(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return generateResponse is the response of a generate request. */ @ServiceMethod(returns = ReturnType.SINGLE) public GenerateResponseInner generateUpdateRun(String resourceGroupName, String fleetName, diff --git a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/implementation/UpdateRunsClientImpl.java b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/implementation/UpdateRunsClientImpl.java index 959535995886..ef055f4db7ea 100644 --- a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/implementation/UpdateRunsClientImpl.java +++ b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/implementation/UpdateRunsClientImpl.java @@ -979,7 +979,8 @@ public PagedIterable listByFleet(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a multi-stage process to perform update operations across members of a Fleet along with {@link Response} + * on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> startWithResponseAsync(String resourceGroupName, String fleetName, @@ -1001,7 +1002,7 @@ private Mono>> startWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return a multi-stage process to perform update operations across members of a Fleet along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response startWithResponse(String resourceGroupName, String fleetName, String updateRunName, @@ -1023,7 +1024,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return a multi-stage process to perform update operations across members of a Fleet along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response startWithResponse(String resourceGroupName, String fleetName, String updateRunName, @@ -1043,7 +1044,8 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, UpdateRunInner> beginStartAsync(String resourceGroupName, @@ -1063,7 +1065,8 @@ private PollerFlux, UpdateRunInner> beginStartAsync(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, UpdateRunInner> beginStartAsync(String resourceGroupName, @@ -1085,7 +1088,8 @@ private PollerFlux, UpdateRunInner> beginStartAsync(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, UpdateRunInner> beginStart(String resourceGroupName, String fleetName, @@ -1104,7 +1108,8 @@ public SyncPoller, UpdateRunInner> beginStart(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, UpdateRunInner> beginStart(String resourceGroupName, String fleetName, @@ -1126,7 +1131,8 @@ public SyncPoller, UpdateRunInner> beginStart(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, UpdateRunInner> beginStart(String resourceGroupName, String fleetName, @@ -1147,7 +1153,8 @@ public SyncPoller, UpdateRunInner> beginStart(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a multi-stage process to perform update operations across members of a Fleet on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono startAsync(String resourceGroupName, String fleetName, String updateRunName, @@ -1165,7 +1172,8 @@ private Mono startAsync(String resourceGroupName, String fleetNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a multi-stage process to perform update operations across members of a Fleet on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono startAsync(String resourceGroupName, String fleetName, String updateRunName) { @@ -1183,7 +1191,7 @@ private Mono startAsync(String resourceGroupName, String fleetNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ @ServiceMethod(returns = ReturnType.SINGLE) public UpdateRunInner start(String resourceGroupName, String fleetName, String updateRunName) { @@ -1202,7 +1210,7 @@ public UpdateRunInner start(String resourceGroupName, String fleetName, String u * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ @ServiceMethod(returns = ReturnType.SINGLE) public UpdateRunInner start(String resourceGroupName, String fleetName, String updateRunName, String ifMatch, @@ -1220,7 +1228,8 @@ public UpdateRunInner start(String resourceGroupName, String fleetName, String u * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a multi-stage process to perform update operations across members of a Fleet along with {@link Response} + * on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> stopWithResponseAsync(String resourceGroupName, String fleetName, @@ -1242,7 +1251,7 @@ private Mono>> stopWithResponseAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return a multi-stage process to perform update operations across members of a Fleet along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response stopWithResponse(String resourceGroupName, String fleetName, String updateRunName, @@ -1263,7 +1272,7 @@ private Response stopWithResponse(String resourceGroupName, String f * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return a multi-stage process to perform update operations across members of a Fleet along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response stopWithResponse(String resourceGroupName, String fleetName, String updateRunName, @@ -1283,7 +1292,8 @@ private Response stopWithResponse(String resourceGroupName, String f * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, UpdateRunInner> beginStopAsync(String resourceGroupName, @@ -1303,7 +1313,8 @@ private PollerFlux, UpdateRunInner> beginStopAsync(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, UpdateRunInner> beginStopAsync(String resourceGroupName, @@ -1325,7 +1336,8 @@ private PollerFlux, UpdateRunInner> beginStopAsync(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, UpdateRunInner> beginStop(String resourceGroupName, String fleetName, @@ -1344,7 +1356,8 @@ public SyncPoller, UpdateRunInner> beginStop(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, UpdateRunInner> beginStop(String resourceGroupName, String fleetName, @@ -1366,7 +1379,8 @@ public SyncPoller, UpdateRunInner> beginStop(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, UpdateRunInner> beginStop(String resourceGroupName, String fleetName, @@ -1386,7 +1400,8 @@ public SyncPoller, UpdateRunInner> beginStop(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a multi-stage process to perform update operations across members of a Fleet on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono stopAsync(String resourceGroupName, String fleetName, String updateRunName, @@ -1404,7 +1419,8 @@ private Mono stopAsync(String resourceGroupName, String fleetNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a multi-stage process to perform update operations across members of a Fleet on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono stopAsync(String resourceGroupName, String fleetName, String updateRunName) { @@ -1422,7 +1438,7 @@ private Mono stopAsync(String resourceGroupName, String fleetNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ @ServiceMethod(returns = ReturnType.SINGLE) public UpdateRunInner stop(String resourceGroupName, String fleetName, String updateRunName) { @@ -1441,7 +1457,7 @@ public UpdateRunInner stop(String resourceGroupName, String fleetName, String up * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ @ServiceMethod(returns = ReturnType.SINGLE) public UpdateRunInner stop(String resourceGroupName, String fleetName, String updateRunName, String ifMatch, @@ -1460,7 +1476,8 @@ public UpdateRunInner stop(String resourceGroupName, String fleetName, String up * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a multi-stage process to perform update operations across members of a Fleet along with {@link Response} + * on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> skipWithResponseAsync(String resourceGroupName, String fleetName, @@ -1485,7 +1502,7 @@ private Mono>> skipWithResponseAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return a multi-stage process to perform update operations across members of a Fleet along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response skipWithResponse(String resourceGroupName, String fleetName, String updateRunName, @@ -1508,7 +1525,7 @@ private Response skipWithResponse(String resourceGroupName, String f * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return a multi-stage process to perform update operations across members of a Fleet along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response skipWithResponse(String resourceGroupName, String fleetName, String updateRunName, @@ -1530,7 +1547,8 @@ private Response skipWithResponse(String resourceGroupName, String f * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, UpdateRunInner> beginSkipAsync(String resourceGroupName, @@ -1551,7 +1569,8 @@ private PollerFlux, UpdateRunInner> beginSkipAsync(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, UpdateRunInner> beginSkipAsync(String resourceGroupName, @@ -1574,7 +1593,8 @@ private PollerFlux, UpdateRunInner> beginSkipAsync(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, UpdateRunInner> beginSkip(String resourceGroupName, String fleetName, @@ -1594,7 +1614,8 @@ public SyncPoller, UpdateRunInner> beginSkip(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, UpdateRunInner> beginSkip(String resourceGroupName, String fleetName, @@ -1617,7 +1638,8 @@ public SyncPoller, UpdateRunInner> beginSkip(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a multi-stage process to perform update operations across members + * of a Fleet. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, UpdateRunInner> beginSkip(String resourceGroupName, String fleetName, @@ -1639,7 +1661,8 @@ public SyncPoller, UpdateRunInner> beginSkip(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a multi-stage process to perform update operations across members of a Fleet on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono skipAsync(String resourceGroupName, String fleetName, String updateRunName, @@ -1658,7 +1681,8 @@ private Mono skipAsync(String resourceGroupName, String fleetNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a multi-stage process to perform update operations across members of a Fleet on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono skipAsync(String resourceGroupName, String fleetName, String updateRunName, @@ -1678,7 +1702,7 @@ private Mono skipAsync(String resourceGroupName, String fleetNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ @ServiceMethod(returns = ReturnType.SINGLE) public UpdateRunInner skip(String resourceGroupName, String fleetName, String updateRunName, SkipProperties body) { @@ -1698,7 +1722,7 @@ public UpdateRunInner skip(String resourceGroupName, String fleetName, String up * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ @ServiceMethod(returns = ReturnType.SINGLE) public UpdateRunInner skip(String resourceGroupName, String fleetName, String updateRunName, SkipProperties body, diff --git a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/models/AutoUpgradeProfileOperations.java b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/models/AutoUpgradeProfileOperations.java index 6368fd95e232..c88dedb1c2c5 100644 --- a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/models/AutoUpgradeProfileOperations.java +++ b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/models/AutoUpgradeProfileOperations.java @@ -19,7 +19,7 @@ public interface AutoUpgradeProfileOperations { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return generateResponse is the response of a generate request. */ GenerateResponse generateUpdateRun(String resourceGroupName, String fleetName, String autoUpgradeProfileName); @@ -33,7 +33,7 @@ public interface AutoUpgradeProfileOperations { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return generateResponse is the response of a generate request. */ GenerateResponse generateUpdateRun(String resourceGroupName, String fleetName, String autoUpgradeProfileName, Context context); diff --git a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/models/UpdateRun.java b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/models/UpdateRun.java index 99cddf3e3665..14999e45c8f3 100644 --- a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/models/UpdateRun.java +++ b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/models/UpdateRun.java @@ -430,7 +430,7 @@ interface WithIfNoneMatch { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ UpdateRun start(); @@ -442,7 +442,7 @@ interface WithIfNoneMatch { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ UpdateRun start(String ifMatch, Context context); @@ -451,7 +451,7 @@ interface WithIfNoneMatch { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ UpdateRun stop(); @@ -463,7 +463,7 @@ interface WithIfNoneMatch { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ UpdateRun stop(String ifMatch, Context context); @@ -474,7 +474,7 @@ interface WithIfNoneMatch { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ UpdateRun skip(SkipProperties body); @@ -487,7 +487,7 @@ interface WithIfNoneMatch { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ UpdateRun skip(SkipProperties body, String ifMatch, Context context); } diff --git a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/models/UpdateRuns.java b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/models/UpdateRuns.java index 05271c638e9f..3c9a9531f0de 100644 --- a/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/models/UpdateRuns.java +++ b/sdk/containerservicefleet/azure-resourcemanager-containerservicefleet/src/main/java/com/azure/resourcemanager/containerservicefleet/models/UpdateRuns.java @@ -103,7 +103,7 @@ PagedIterable listByFleet(String resourceGroupName, String fleetName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ UpdateRun start(String resourceGroupName, String fleetName, String updateRunName); @@ -118,7 +118,7 @@ PagedIterable listByFleet(String resourceGroupName, String fleetName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ UpdateRun start(String resourceGroupName, String fleetName, String updateRunName, String ifMatch, Context context); @@ -131,7 +131,7 @@ PagedIterable listByFleet(String resourceGroupName, String fleetName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ UpdateRun stop(String resourceGroupName, String fleetName, String updateRunName); @@ -146,7 +146,7 @@ PagedIterable listByFleet(String resourceGroupName, String fleetName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ UpdateRun stop(String resourceGroupName, String fleetName, String updateRunName, String ifMatch, Context context); @@ -160,7 +160,7 @@ PagedIterable listByFleet(String resourceGroupName, String fleetName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ UpdateRun skip(String resourceGroupName, String fleetName, String updateRunName, SkipProperties body); @@ -176,7 +176,7 @@ PagedIterable listByFleet(String resourceGroupName, String fleetName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a multi-stage process to perform update operations across members of a Fleet. */ UpdateRun skip(String resourceGroupName, String fleetName, String updateRunName, SkipProperties body, String ifMatch, Context context); diff --git a/sdk/cosmos/azure-cosmos-kafka-connect/pom.xml b/sdk/cosmos/azure-cosmos-kafka-connect/pom.xml index ec496f401860..3af16973d219 100644 --- a/sdk/cosmos/azure-cosmos-kafka-connect/pom.xml +++ b/sdk/cosmos/azure-cosmos-kafka-connect/pom.xml @@ -181,21 +181,21 @@ Licensed under the MIT License. org.apache.logging.log4j log4j-slf4j-impl - 2.17.2 + 2.25.3 test org.apache.logging.log4j log4j-api - 2.17.2 + 2.25.3 test org.apache.logging.log4j log4j-core - 2.17.2 + 2.25.3 test @@ -307,6 +307,9 @@ Licensed under the MIT License. com.jayway.jsonpath:json-path:[2.9.0] org.sourcelab:kafka-connect-client:[4.0.4] org.apache.maven.plugins:maven-antrun-plugin:[3.1.0] + org.apache.logging.log4j:log4j-api:[2.25.3] + org.apache.logging.log4j:log4j-core:[2.25.3] + org.apache.logging.log4j:log4j-slf4j-impl:[2.25.3] diff --git a/sdk/cosmos/azure-cosmos/CHANGELOG.md b/sdk/cosmos/azure-cosmos/CHANGELOG.md index 0461eb46e397..6eb1b76bad4e 100644 --- a/sdk/cosmos/azure-cosmos/CHANGELOG.md +++ b/sdk/cosmos/azure-cosmos/CHANGELOG.md @@ -61,56 +61,6 @@ * Added system property `COSMOS.CONNECTION_ACQUIRE_TIMEOUT_IN_MS` and environment variable `COSMOS_CONNECTION_ACQUIRE_TIMEOUT_IN_MS` to allow overriding the gateway connection acquire timeout in milliseconds (default 45000ms). Minimum accepted value is 500ms. Replaces the previous `_IN_SECONDS` variants. - See [PR 48580](https://github.com/Azure/azure-sdk-for-java/pull/48580) * Changed system property for thin client connection timeout from `COSMOS.THINCLIENT_CONNECTION_TIMEOUT_IN_SECONDS` to `COSMOS.THINCLIENT_CONNECTION_TIMEOUT_IN_MS` (default 5000ms, minimum 500ms). - See [PR 48580](https://github.com/Azure/azure-sdk-for-java/pull/48580) -### 4.80.0 (2026-05-01) - -#### Features Added -* Added support for Query Advisor feature - See [48160](https://github.com/Azure/azure-sdk-for-java/pull/48160) -* Added `additionalHeaders` support to allow setting additional headers (e.g., `x-ms-cosmos-workload-id`) that are sent with every request. - See [PR 48128](https://github.com/Azure/azure-sdk-for-java/pull/48128) -* Added `IGNORE_UNKNOWN_RNTBD_TOKENS` SDK capability flag and propagated SDK supported capabilities to barrier requests, enabling N-Region Synchronous Commit to function correctly with backends that return new RNTBD response tokens. - See [PR 48965](https://github.com/Azure/azure-sdk-for-java/pull/48965) -* Added support for change feed with `startFrom` point-in-time on merged partitions by enabling the `CHANGE_FEED_WITH_START_TIME_POST_MERGE` SDK capability. - See [PR 48752](https://github.com/Azure/azure-sdk-for-java/pull/48752) -* Added new `readManyByPartitionKeys` API on `CosmosAsyncContainer` / `CosmosContainer` to bulk-query all documents matching a list of partition key values with better efficiency than issuing individual queries. See [PR 48801](https://github.com/Azure/azure-sdk-for-java/pull/48801) -* Added `CosmosReadManyByPartitionKeysRequestOptions` - a dedicated request-options type for `readManyByPartitionKeys` that exposes `setContinuationToken(String)` for resuming previous invocations and `setMaxConcurrentBatchPrefetch(int)` to bound per-call prefetch parallelism. See [PR 48801](https://github.com/Azure/azure-sdk-for-java/pull/48801) -* Added `CosmosReadManyByPartitionKeysRequestOptions.setMaxBatchSize(Integer)` to set the max. number of partition keys used for a single batch. See [PR 48930](https://github.com/Azure/azure-sdk-for-java/pull/48930) -* Added `getCustomItemSerializer()` to `CosmosRequestContext` and `setCustomItemSerializer(CosmosItemSerializer)` to `CosmosRequestOptions` to allow overriding the custom item serializer via operation policies. - See [PR 48963](https://github.com/Azure/azure-sdk-for-java/pull/48963) - -#### Bugs Fixed -* Fixed `readMany` and `readAllItems` returning incorrect results on containers whose partition key path is nested (e.g. `/address/city`) due to malformed selector generation. - See [PR 48801](https://github.com/Azure/azure-sdk-for-java/pull/48801) -* Fixed an issue where the throughput control `throughputQueryMono` was always subscribed even when `targetThroughput` is used (not `targetThroughputThreshold`), causing unnecessary `throughputSettings/read` permission requirement for AAD principals. - See [PR 48800](https://github.com/Azure/azure-sdk-for-java/pull/48800) -* Fixed JVM `` deadlock when multiple threads concurrently trigger Cosmos SDK class loading for the first time. - See [PR 48689](https://github.com/Azure/azure-sdk-for-java/pull/48689) -* Fixed an issue where `CustomItemSerializer` was incorrectly applied to internal SDK query pipeline structures (e.g., `OrderByRowResult`, `Document`), causing deserialization failures in ORDER BY, GROUP BY, aggregate, DISTINCT, and hybrid search queries. - See [PR 48811](https://github.com/Azure/azure-sdk-for-java/pull/48811) -* Fixed an issue where `SqlParameter` ignored the configured `CustomItemSerializer`, always using the internal default serializer instead. - See [PR 48811](https://github.com/Azure/azure-sdk-for-java/pull/48811) -* Fixed a `ClientTelemetry` static initialization failure when IMDS access is disabled, preventing `NoClassDefFoundError` during Cosmos client creation in non-Azure environments. - See [PR 48888](https://github.com/Azure/azure-sdk-for-java/pull/48888) -* Fixed an issue where Netty could log "An exceptionCaught() event was fired, and it reached at the tail of the pipeline" on HTTP/2 connections when the server resets idle TCP connections by adding an exception handler on the HTTP/2 parent channel to handle these connection-level exceptions more appropriately. - See [PR 48890](https://github.com/Azure/azure-sdk-for-java/pull/48890) -* Fixed an issue where `CustomItemSerializer` configured on `CosmosClientBuilder` was not honored for response deserialization in `CosmosAsyncContainer.upsertItem` when no request-level serializer was set. - See [PR 48962](https://github.com/Azure/azure-sdk-for-java/pull/48962) - -### 4.79.1 (2026-04-06) - -#### Bugs Fixed -* Fixing an NPE caused due to boxed Boolean conversion. - See [PR 48656](https://github.com/Azure/azure-sdk-for-java/pull/48656/) - -### 4.79.0 (2026-03-27) - -#### Features Added -* Added support for N-Region synchronous commit feature - See [PR 47757](https://github.com/Azure/azure-sdk-for-java/pull/47757) -* Added support for Query Advisor feature - See [48160](https://github.com/Azure/azure-sdk-for-java/pull/48160) -* Added `CosmosFullTextScoreScope` enum and `setFullTextScoreScope()` on `CosmosQueryRequestOptions` for controlling BM25 statistics scope in hybrid search queries. Supports `LOCAL` (scoped to target partitions) and `GLOBAL` (default, all partitions) scopes. See [PR 48431](https://github.com/Azure/azure-sdk-for-java/pull/48431) - -#### Bugs Fixed -* Fixed Remote Code Execution (RCE) vulnerability (CWE-502) by replacing Java deserialization with JSON-based serialization in `CosmosClientMetadataCachesSnapshot`, `AsyncCache`, and `DocumentCollection`. The metadata cache snapshot now uses Jackson for serialization/deserialization, eliminating the entire class of Java deserialization attacks. - [PR 47971](https://github.com/Azure/azure-sdk-for-java/pull/47971) -* Fixed `NullPointerException` in `DocumentQueryExecutionContextFactory.tryCacheQueryPlan` when executing hybrid search queries with a partition key filter. See [PR 48431](https://github.com/Azure/azure-sdk-for-java/pull/48431) -* Fixed `ConcurrentModificationException` in hybrid search component query execution caused by concurrent access to shared mutable state. See [PR 48431](https://github.com/Azure/azure-sdk-for-java/pull/48431) -* Fixed availability strategy for Gateway V2 (thin client) by ensuring `RegionalRoutingContext` identity is based only on the immutable gateway endpoint. - See [PR 48432](https://github.com/Azure/azure-sdk-for-java/pull/48432) -* Fixed an issue where `replaceItem` bypassed the `customItemSerializer`, serialising POJOs with the SDK's internal `ObjectMapper` instead of the user-configured one. - See [PR 48529](https://github.com/Azure/azure-sdk-for-java/pull/48529) -* Fixed `ClassCastException` (`ArrayNode cannot be cast to ObjectNode`) when executing `SELECT VALUE ... GROUP BY` queries. See - [PR 48507](https://github.com/Azure/azure-sdk-for-java/pull/48507) - -#### Other Changes -* Promoted the following `@Beta` APIs to GA: `CosmosContainerProperties.getFullTextPolicy()`/`setFullTextPolicy()`, `IndexingPolicy.getCosmosFullTextIndexes()`/`setCosmosFullTextIndexes()`. - See [PR 48538](https://github.com/Azure/azure-sdk-for-java/pull/48538) -* Added `appendUserAgentSuffix` method to `AsyncDocumentClient` to allow downstream libraries to append to the user agent after client construction. - See [PR 48505](https://github.com/Azure/azure-sdk-for-java/pull/48505) -* Added aggressive HTTP timeout policies for document operations routed to Gateway V2. - [PR 47879](https://github.com/Azure/azure-sdk-for-java/pull/47879) -* Added a default connect timeout of 5s for Gateway V2 (thin client) data-plane endpoints. - See [PR 48174](https://github.com/Azure/azure-sdk-for-java/pull/48174) -* Added system property `COSMOS.CONNECTION_ACQUIRE_TIMEOUT_IN_MS` and environment variable `COSMOS_CONNECTION_ACQUIRE_TIMEOUT_IN_MS` to allow overriding the gateway connection acquire timeout in milliseconds (default 45000ms). Minimum accepted value is 500ms. Replaces the previous `_IN_SECONDS` variants. - See [PR 48580](https://github.com/Azure/azure-sdk-for-java/pull/48580) -* Changed system property for thin client connection timeout from `COSMOS.THINCLIENT_CONNECTION_TIMEOUT_IN_SECONDS` to `COSMOS.THINCLIENT_CONNECTION_TIMEOUT_IN_MS` (default 5000ms, minimum 500ms). - See [PR 48580](https://github.com/Azure/azure-sdk-for-java/pull/48580) - ### 4.78.0 (2026-02-10) #### Features Added diff --git a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/fluent/MongoDBResourcesClient.java b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/fluent/MongoDBResourcesClient.java index a348d59abcae..4d59793f7c1f 100644 --- a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/fluent/MongoDBResourcesClient.java +++ b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/fluent/MongoDBResourcesClient.java @@ -2375,7 +2375,7 @@ PhysicalPartitionStorageInfoCollectionInner listMongoDBCollectionPartitionMerge( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return backup information of a resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> retrieveContinuousBackupInformationWithResponseAsync(String resourceGroupName, @@ -2392,7 +2392,7 @@ Mono>> retrieveContinuousBackupInformationWithResponse * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, BackupInformationInner> @@ -2410,7 +2410,7 @@ Mono>> retrieveContinuousBackupInformationWithResponse * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, BackupInformationInner> beginRetrieveContinuousBackupInformation( @@ -2429,7 +2429,7 @@ SyncPoller, BackupInformationInner> beginRetr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, BackupInformationInner> beginRetrieveContinuousBackupInformation( @@ -2447,7 +2447,7 @@ SyncPoller, BackupInformationInner> beginRetr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return backup information of a resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono retrieveContinuousBackupInformationAsync(String resourceGroupName, String accountName, @@ -2464,7 +2464,7 @@ Mono retrieveContinuousBackupInformationAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return backup information of a resource. */ @ServiceMethod(returns = ReturnType.SINGLE) BackupInformationInner retrieveContinuousBackupInformation(String resourceGroupName, String accountName, @@ -2482,7 +2482,7 @@ BackupInformationInner retrieveContinuousBackupInformation(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return backup information of a resource. */ @ServiceMethod(returns = ReturnType.SINGLE) BackupInformationInner retrieveContinuousBackupInformation(String resourceGroupName, String accountName, diff --git a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/fluent/SqlResourcesClient.java b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/fluent/SqlResourcesClient.java index c8cca07dc3c2..964ae34be985 100644 --- a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/fluent/SqlResourcesClient.java +++ b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/fluent/SqlResourcesClient.java @@ -2609,7 +2609,7 @@ PhysicalPartitionStorageInfoCollectionInner listSqlContainerPartitionMerge(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return backup information of a resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> retrieveContinuousBackupInformationWithResponseAsync(String resourceGroupName, @@ -2626,7 +2626,7 @@ Mono>> retrieveContinuousBackupInformationWithResponse * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, BackupInformationInner> @@ -2644,7 +2644,7 @@ Mono>> retrieveContinuousBackupInformationWithResponse * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, BackupInformationInner> beginRetrieveContinuousBackupInformation( @@ -2663,7 +2663,7 @@ SyncPoller, BackupInformationInner> beginRetr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, BackupInformationInner> beginRetrieveContinuousBackupInformation( @@ -2681,7 +2681,7 @@ SyncPoller, BackupInformationInner> beginRetr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return backup information of a resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono retrieveContinuousBackupInformationAsync(String resourceGroupName, String accountName, @@ -2698,7 +2698,7 @@ Mono retrieveContinuousBackupInformationAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return backup information of a resource. */ @ServiceMethod(returns = ReturnType.SINGLE) BackupInformationInner retrieveContinuousBackupInformation(String resourceGroupName, String accountName, @@ -2716,7 +2716,7 @@ BackupInformationInner retrieveContinuousBackupInformation(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return backup information of a resource. */ @ServiceMethod(returns = ReturnType.SINGLE) BackupInformationInner retrieveContinuousBackupInformation(String resourceGroupName, String accountName, diff --git a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/implementation/MongoDBResourcesClientImpl.java b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/implementation/MongoDBResourcesClientImpl.java index a6467eeb42a3..03ac47b13654 100644 --- a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/implementation/MongoDBResourcesClientImpl.java +++ b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/implementation/MongoDBResourcesClientImpl.java @@ -5744,7 +5744,7 @@ public PhysicalPartitionStorageInfoCollectionInner listMongoDBCollectionPartitio * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return backup information of a resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> retrieveContinuousBackupInformationWithResponseAsync( @@ -5797,7 +5797,7 @@ public Mono>> retrieveContinuousBackupInformationWithR * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return backup information of a resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> retrieveContinuousBackupInformationWithResponseAsync( @@ -5848,7 +5848,7 @@ private Mono>> retrieveContinuousBackupInformationWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, BackupInformationInner> @@ -5873,7 +5873,7 @@ private Mono>> retrieveContinuousBackupInformationWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, BackupInformationInner> @@ -5897,7 +5897,7 @@ private Mono>> retrieveContinuousBackupInformationWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, BackupInformationInner> @@ -5921,7 +5921,7 @@ private Mono>> retrieveContinuousBackupInformationWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, BackupInformationInner> @@ -5944,7 +5944,7 @@ private Mono>> retrieveContinuousBackupInformationWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return backup information of a resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono retrieveContinuousBackupInformationAsync(String resourceGroupName, @@ -5965,7 +5965,7 @@ public Mono retrieveContinuousBackupInformationAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return backup information of a resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono retrieveContinuousBackupInformationAsync(String resourceGroupName, @@ -5986,7 +5986,7 @@ private Mono retrieveContinuousBackupInformationAsync(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return backup information of a resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public BackupInformationInner retrieveContinuousBackupInformation(String resourceGroupName, String accountName, @@ -6007,7 +6007,7 @@ public BackupInformationInner retrieveContinuousBackupInformation(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return backup information of a resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public BackupInformationInner retrieveContinuousBackupInformation(String resourceGroupName, String accountName, diff --git a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/implementation/SqlResourcesClientImpl.java b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/implementation/SqlResourcesClientImpl.java index dfe783b4e7ca..824a05872ebe 100644 --- a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/implementation/SqlResourcesClientImpl.java +++ b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/implementation/SqlResourcesClientImpl.java @@ -6511,7 +6511,7 @@ public PhysicalPartitionStorageInfoCollectionInner listSqlContainerPartitionMerg * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return backup information of a resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> retrieveContinuousBackupInformationWithResponseAsync( @@ -6564,7 +6564,7 @@ public Mono>> retrieveContinuousBackupInformationWithR * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return backup information of a resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> retrieveContinuousBackupInformationWithResponseAsync( @@ -6615,7 +6615,7 @@ private Mono>> retrieveContinuousBackupInformationWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, BackupInformationInner> @@ -6640,7 +6640,7 @@ private Mono>> retrieveContinuousBackupInformationWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, BackupInformationInner> @@ -6664,7 +6664,7 @@ private Mono>> retrieveContinuousBackupInformationWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, BackupInformationInner> @@ -6688,7 +6688,7 @@ private Mono>> retrieveContinuousBackupInformationWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of backup information of a resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, BackupInformationInner> @@ -6711,7 +6711,7 @@ private Mono>> retrieveContinuousBackupInformationWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return backup information of a resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono retrieveContinuousBackupInformationAsync(String resourceGroupName, @@ -6732,7 +6732,7 @@ public Mono retrieveContinuousBackupInformationAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return backup information of a resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono retrieveContinuousBackupInformationAsync(String resourceGroupName, @@ -6753,7 +6753,7 @@ private Mono retrieveContinuousBackupInformationAsync(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return backup information of a resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public BackupInformationInner retrieveContinuousBackupInformation(String resourceGroupName, String accountName, @@ -6774,7 +6774,7 @@ public BackupInformationInner retrieveContinuousBackupInformation(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return backup information of a resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public BackupInformationInner retrieveContinuousBackupInformation(String resourceGroupName, String accountName, diff --git a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/models/AzureBlobDataTransferDataSourceSink.java b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/models/AzureBlobDataTransferDataSourceSink.java index 7f3f43209307..ad23bccdd02b 100644 --- a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/models/AzureBlobDataTransferDataSourceSink.java +++ b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/models/AzureBlobDataTransferDataSourceSink.java @@ -15,7 +15,7 @@ * An Azure Blob Storage data source/sink. */ @Fluent -public final class AzureBlobDataTransferDataSourceSink extends DataTransferDataSourceSink { +public final class AzureBlobDataTransferDataSourceSink extends BaseCosmosDataTransferDataSourceSink { /* * The component property. */ @@ -87,6 +87,15 @@ public AzureBlobDataTransferDataSourceSink withEndpointUrl(String endpointUrl) { return this; } + /** + * {@inheritDoc} + */ + @Override + public AzureBlobDataTransferDataSourceSink withRemoteAccountName(String remoteAccountName) { + super.withRemoteAccountName(remoteAccountName); + return this; + } + /** * Validates the instance. * @@ -109,6 +118,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("remoteAccountName", remoteAccountName()); jsonWriter.writeStringField("containerName", this.containerName); jsonWriter.writeStringField("component", this.component == null ? null : this.component.toString()); jsonWriter.writeStringField("endpointUrl", this.endpointUrl); @@ -132,7 +142,9 @@ public static AzureBlobDataTransferDataSourceSink fromJson(JsonReader jsonReader String fieldName = reader.getFieldName(); reader.nextToken(); - if ("containerName".equals(fieldName)) { + if ("remoteAccountName".equals(fieldName)) { + deserializedAzureBlobDataTransferDataSourceSink.withRemoteAccountName(reader.getString()); + } else if ("containerName".equals(fieldName)) { deserializedAzureBlobDataTransferDataSourceSink.containerName = reader.getString(); } else if ("component".equals(fieldName)) { deserializedAzureBlobDataTransferDataSourceSink.component diff --git a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/models/BaseCosmosDataTransferDataSourceSink.java b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/models/BaseCosmosDataTransferDataSourceSink.java index cc55932b6deb..0817b80544b8 100644 --- a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/models/BaseCosmosDataTransferDataSourceSink.java +++ b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/models/BaseCosmosDataTransferDataSourceSink.java @@ -111,6 +111,8 @@ public static BaseCosmosDataTransferDataSourceSink fromJson(JsonReader jsonReade return CosmosMongoDataTransferDataSourceSink.fromJson(readerToUse.reset()); } else if ("CosmosDBSql".equals(discriminatorValue)) { return CosmosSqlDataTransferDataSourceSink.fromJson(readerToUse.reset()); + } else if ("AzureBlobStorage".equals(discriminatorValue)) { + return AzureBlobDataTransferDataSourceSink.fromJson(readerToUse.reset()); } else { return fromJsonKnownDiscriminator(readerToUse.reset()); } diff --git a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/models/DataTransferDataSourceSink.java b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/models/DataTransferDataSourceSink.java index c845ab841018..6db02fe8892d 100644 --- a/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/models/DataTransferDataSourceSink.java +++ b/sdk/cosmos/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/models/DataTransferDataSourceSink.java @@ -86,10 +86,10 @@ public static DataTransferDataSourceSink fromJson(JsonReader jsonReader) throws return CosmosMongoDataTransferDataSourceSink.fromJson(readerToUse.reset()); } else if ("CosmosDBSql".equals(discriminatorValue)) { return CosmosSqlDataTransferDataSourceSink.fromJson(readerToUse.reset()); - } else if ("CosmosDBMongoVCore".equals(discriminatorValue)) { - return CosmosMongoVCoreDataTransferDataSourceSink.fromJson(readerToUse.reset()); } else if ("AzureBlobStorage".equals(discriminatorValue)) { return AzureBlobDataTransferDataSourceSink.fromJson(readerToUse.reset()); + } else if ("CosmosDBMongoVCore".equals(discriminatorValue)) { + return CosmosMongoVCoreDataTransferDataSourceSink.fromJson(readerToUse.reset()); } else { return fromJsonKnownDiscriminator(readerToUse.reset()); } diff --git a/sdk/databasewatcher/azure-resourcemanager-databasewatcher/src/main/java/com/azure/resourcemanager/databasewatcher/fluent/HealthValidationsClient.java b/sdk/databasewatcher/azure-resourcemanager-databasewatcher/src/main/java/com/azure/resourcemanager/databasewatcher/fluent/HealthValidationsClient.java index f5bcd9437c49..63ac912d90ef 100644 --- a/sdk/databasewatcher/azure-resourcemanager-databasewatcher/src/main/java/com/azure/resourcemanager/databasewatcher/fluent/HealthValidationsClient.java +++ b/sdk/databasewatcher/azure-resourcemanager-databasewatcher/src/main/java/com/azure/resourcemanager/databasewatcher/fluent/HealthValidationsClient.java @@ -83,7 +83,8 @@ Response getWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of concrete proxy resource types can be created by aliasing this type + * using a specific property type. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, HealthValidationInner> beginStartValidation(String resourceGroupName, @@ -99,7 +100,8 @@ SyncPoller, HealthValidationInner> beginStartV * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of concrete proxy resource types can be created by aliasing this type + * using a specific property type. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, HealthValidationInner> beginStartValidation(String resourceGroupName, @@ -114,7 +116,7 @@ SyncPoller, HealthValidationInner> beginStartV * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return concrete proxy resource types can be created by aliasing this type using a specific property type. */ @ServiceMethod(returns = ReturnType.SINGLE) HealthValidationInner startValidation(String resourceGroupName, String watcherName, String healthValidationName); @@ -129,7 +131,7 @@ SyncPoller, HealthValidationInner> beginStartV * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return concrete proxy resource types can be created by aliasing this type using a specific property type. */ @ServiceMethod(returns = ReturnType.SINGLE) HealthValidationInner startValidation(String resourceGroupName, String watcherName, String healthValidationName, diff --git a/sdk/databasewatcher/azure-resourcemanager-databasewatcher/src/main/java/com/azure/resourcemanager/databasewatcher/implementation/HealthValidationsClientImpl.java b/sdk/databasewatcher/azure-resourcemanager-databasewatcher/src/main/java/com/azure/resourcemanager/databasewatcher/implementation/HealthValidationsClientImpl.java index aebf9a2b86b3..2f9abb22fa2f 100644 --- a/sdk/databasewatcher/azure-resourcemanager-databasewatcher/src/main/java/com/azure/resourcemanager/databasewatcher/implementation/HealthValidationsClientImpl.java +++ b/sdk/databasewatcher/azure-resourcemanager-databasewatcher/src/main/java/com/azure/resourcemanager/databasewatcher/implementation/HealthValidationsClientImpl.java @@ -343,7 +343,8 @@ public PagedIterable listByParent(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return concrete proxy resource types can be created by aliasing this type using a specific property type along + * with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> startValidationWithResponseAsync(String resourceGroupName, @@ -364,7 +365,8 @@ private Mono>> startValidationWithResponseAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return concrete proxy resource types can be created by aliasing this type using a specific property type along + * with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response startValidationWithResponse(String resourceGroupName, String watcherName, @@ -385,7 +387,8 @@ private Response startValidationWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return concrete proxy resource types can be created by aliasing this type using a specific property type along + * with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response startValidationWithResponse(String resourceGroupName, String watcherName, @@ -404,7 +407,8 @@ private Response startValidationWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of concrete proxy resource types can be created by aliasing this type + * using a specific property type. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, HealthValidationInner> @@ -425,7 +429,8 @@ private Response startValidationWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of concrete proxy resource types can be created by aliasing this type + * using a specific property type. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, HealthValidationInner> @@ -446,7 +451,8 @@ private Response startValidationWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of concrete proxy resource types can be created by aliasing this type + * using a specific property type. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, HealthValidationInner> beginStartValidation( @@ -466,7 +472,8 @@ public SyncPoller, HealthValidationInner> begi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return concrete proxy resource types can be created by aliasing this type using a specific property type on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono startValidationAsync(String resourceGroupName, String watcherName, @@ -484,7 +491,7 @@ private Mono startValidationAsync(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return concrete proxy resource types can be created by aliasing this type using a specific property type. */ @ServiceMethod(returns = ReturnType.SINGLE) public HealthValidationInner startValidation(String resourceGroupName, String watcherName, @@ -502,7 +509,7 @@ public HealthValidationInner startValidation(String resourceGroupName, String wa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return concrete proxy resource types can be created by aliasing this type using a specific property type. */ @ServiceMethod(returns = ReturnType.SINGLE) public HealthValidationInner startValidation(String resourceGroupName, String watcherName, diff --git a/sdk/databasewatcher/azure-resourcemanager-databasewatcher/src/main/java/com/azure/resourcemanager/databasewatcher/models/HealthValidations.java b/sdk/databasewatcher/azure-resourcemanager-databasewatcher/src/main/java/com/azure/resourcemanager/databasewatcher/models/HealthValidations.java index a53a7ce01c92..66becb683c33 100644 --- a/sdk/databasewatcher/azure-resourcemanager-databasewatcher/src/main/java/com/azure/resourcemanager/databasewatcher/models/HealthValidations.java +++ b/sdk/databasewatcher/azure-resourcemanager-databasewatcher/src/main/java/com/azure/resourcemanager/databasewatcher/models/HealthValidations.java @@ -74,7 +74,7 @@ Response getWithResponse(String resourceGroupName, String watc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return concrete proxy resource types can be created by aliasing this type using a specific property type. */ HealthValidation startValidation(String resourceGroupName, String watcherName, String healthValidationName); @@ -88,7 +88,7 @@ Response getWithResponse(String resourceGroupName, String watc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return concrete proxy resource types can be created by aliasing this type using a specific property type. */ HealthValidation startValidation(String resourceGroupName, String watcherName, String healthValidationName, Context context); diff --git a/sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/AccessConnectorListResult.java b/sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/AccessConnectorListResult.java index 8cfc6f5aee29..9229682d6ba5 100644 --- a/sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/AccessConnectorListResult.java +++ b/sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/AccessConnectorListResult.java @@ -2,36 +2,18 @@ // Licensed under the MIT License. // Code generated by Microsoft (R) TypeSpec Code Generator. -<<<<<<<< HEAD:sdk/disconnectedoperations/azure-resourcemanager-disconnectedoperations/src/main/java/com/azure/resourcemanager/disconnectedoperations/implementation/models/HardwareSettingListResult.java -package com.azure.resourcemanager.disconnectedoperations.implementation.models; -======== package com.azure.resourcemanager.databricks.implementation.models; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/AccessConnectorListResult.java import com.azure.core.annotation.Immutable; import com.azure.json.JsonReader; import com.azure.json.JsonSerializable; import com.azure.json.JsonToken; import com.azure.json.JsonWriter; -<<<<<<<< HEAD:sdk/disconnectedoperations/azure-resourcemanager-disconnectedoperations/src/main/java/com/azure/resourcemanager/disconnectedoperations/implementation/models/HardwareSettingListResult.java -import com.azure.resourcemanager.disconnectedoperations.fluent.models.HardwareSettingInner; -======== import com.azure.resourcemanager.databricks.fluent.models.AccessConnectorInner; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/AccessConnectorListResult.java import java.io.IOException; import java.util.List; /** -<<<<<<<< HEAD:sdk/disconnectedoperations/azure-resourcemanager-disconnectedoperations/src/main/java/com/azure/resourcemanager/disconnectedoperations/implementation/models/HardwareSettingListResult.java - * The response of a HardwareSetting list operation. - */ -@Immutable -public final class HardwareSettingListResult implements JsonSerializable { - /* - * The HardwareSetting items on this page - */ - private List value; -======== * The response of a AccessConnector list operation. */ @Immutable @@ -40,7 +22,6 @@ public final class AccessConnectorListResult implements JsonSerializable value; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/AccessConnectorListResult.java /* * The link to the next page of items @@ -48,19 +29,6 @@ public final class AccessConnectorListResult implements JsonSerializable value() { -======== * Creates an instance of AccessConnectorListResult class. */ private AccessConnectorListResult() { @@ -72,7 +40,6 @@ private AccessConnectorListResult() { * @return the value value. */ public List value() { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/AccessConnectorListResult.java return this.value; } @@ -97,19 +64,6 @@ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { } /** -<<<<<<<< HEAD:sdk/disconnectedoperations/azure-resourcemanager-disconnectedoperations/src/main/java/com/azure/resourcemanager/disconnectedoperations/implementation/models/HardwareSettingListResult.java - * Reads an instance of HardwareSettingListResult from the JsonReader. - * - * @param jsonReader The JsonReader being read. - * @return An instance of HardwareSettingListResult if the JsonReader was pointing to an instance of it, or null if - * it was pointing to JSON null. - * @throws IllegalStateException If the deserialized JSON object was missing any required properties. - * @throws IOException If an error occurs while reading the HardwareSettingListResult. - */ - public static HardwareSettingListResult fromJson(JsonReader jsonReader) throws IOException { - return jsonReader.readObject(reader -> { - HardwareSettingListResult deserializedHardwareSettingListResult = new HardwareSettingListResult(); -======== * Reads an instance of AccessConnectorListResult from the JsonReader. * * @param jsonReader The JsonReader being read. @@ -121,35 +75,22 @@ public static HardwareSettingListResult fromJson(JsonReader jsonReader) throws I public static AccessConnectorListResult fromJson(JsonReader jsonReader) throws IOException { return jsonReader.readObject(reader -> { AccessConnectorListResult deserializedAccessConnectorListResult = new AccessConnectorListResult(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/AccessConnectorListResult.java while (reader.nextToken() != JsonToken.END_OBJECT) { String fieldName = reader.getFieldName(); reader.nextToken(); if ("value".equals(fieldName)) { -<<<<<<<< HEAD:sdk/disconnectedoperations/azure-resourcemanager-disconnectedoperations/src/main/java/com/azure/resourcemanager/disconnectedoperations/implementation/models/HardwareSettingListResult.java - List value - = reader.readArray(reader1 -> HardwareSettingInner.fromJson(reader1)); - deserializedHardwareSettingListResult.value = value; - } else if ("nextLink".equals(fieldName)) { - deserializedHardwareSettingListResult.nextLink = reader.getString(); -======== List value = reader.readArray(reader1 -> AccessConnectorInner.fromJson(reader1)); deserializedAccessConnectorListResult.value = value; } else if ("nextLink".equals(fieldName)) { deserializedAccessConnectorListResult.nextLink = reader.getString(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/AccessConnectorListResult.java } else { reader.skipChildren(); } } -<<<<<<<< HEAD:sdk/disconnectedoperations/azure-resourcemanager-disconnectedoperations/src/main/java/com/azure/resourcemanager/disconnectedoperations/implementation/models/HardwareSettingListResult.java - return deserializedHardwareSettingListResult; -======== return deserializedAccessConnectorListResult; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/AccessConnectorListResult.java }); } } diff --git a/sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java b/sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java index 67fbdd719508..df1504f54341 100644 --- a/sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java +++ b/sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java @@ -6,7 +6,7 @@ package com.azure.resourcemanager.servicebus.implementation.models; ======== package com.azure.resourcemanager.databricks.implementation.models; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java import com.azure.core.annotation.Immutable; import com.azure.core.util.logging.ClientLogger; @@ -24,7 +24,7 @@ ======== * Result of the request to list Resource Provider operations. It contains a list of operations and a URL link to get * the next set of results. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java */ @Immutable public final class OperationListResult implements JsonSerializable { @@ -33,7 +33,7 @@ public final class OperationListResult implements JsonSerializable>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java */ private List value; @@ -54,7 +54,7 @@ private OperationListResult() { ======== * Get the value property: List of Resource Provider operations supported by the Resource Provider resource * provider. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java * * @return the value value. */ @@ -90,7 +90,7 @@ public void validate() { /** ======== ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java * {@inheritDoc} */ @Override @@ -100,7 +100,7 @@ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { <<<<<<<< HEAD:sdk/servicebus/azure-resourcemanager-servicebus/src/main/java/com/azure/resourcemanager/servicebus/implementation/models/OperationListResult.java jsonWriter.writeStringField("nextLink", this.nextLink); ======== ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/databricks/azure-resourcemanager-databricks/src/main/java/com/azure/resourcemanager/databricks/implementation/models/OperationListResult.java return jsonWriter.writeEndObject(); } diff --git a/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/fluent/MapsClient.java b/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/fluent/MapsClient.java index 26309716e0ff..9d45b7014542 100644 --- a/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/fluent/MapsClient.java +++ b/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/fluent/MapsClient.java @@ -462,7 +462,8 @@ void getConnectionsForProcessOnFocusedMachine(String resourceGroupName, String m * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of model representing the result of the export dependencies + * asynchronous operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ExportDependenciesOperationResultInner> @@ -478,7 +479,8 @@ void getConnectionsForProcessOnFocusedMachine(String resourceGroupName, String m * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of model representing the result of the export dependencies + * asynchronous operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ExportDependenciesOperationResultInner> @@ -494,7 +496,7 @@ void getConnectionsForProcessOnFocusedMachine(String resourceGroupName, String m * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return model representing the result of the export dependencies asynchronous operation. */ @ServiceMethod(returns = ReturnType.SINGLE) ExportDependenciesOperationResultInner exportDependencies(String resourceGroupName, String mapName, @@ -510,7 +512,7 @@ ExportDependenciesOperationResultInner exportDependencies(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return model representing the result of the export dependencies asynchronous operation. */ @ServiceMethod(returns = ReturnType.SINGLE) ExportDependenciesOperationResultInner exportDependencies(String resourceGroupName, String mapName, diff --git a/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/implementation/MapsClientImpl.java b/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/implementation/MapsClientImpl.java index 86ba9bfda87a..1a4949000aad 100644 --- a/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/implementation/MapsClientImpl.java +++ b/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/implementation/MapsClientImpl.java @@ -1588,7 +1588,8 @@ public void getConnectionsForProcessOnFocusedMachine(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return model representing the result of the export dependencies asynchronous operation along with + * {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> exportDependenciesWithResponseAsync(String resourceGroupName, @@ -1610,7 +1611,8 @@ private Mono>> exportDependenciesWithResponseAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return model representing the result of the export dependencies asynchronous operation along with + * {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response exportDependenciesWithResponse(String resourceGroupName, String mapName, @@ -1631,7 +1633,8 @@ private Response exportDependenciesWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return model representing the result of the export dependencies asynchronous operation along with + * {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response exportDependenciesWithResponse(String resourceGroupName, String mapName, @@ -1651,7 +1654,8 @@ private Response exportDependenciesWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of model representing the result of the export dependencies + * asynchronous operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ExportDependenciesOperationResultInner> @@ -1671,7 +1675,8 @@ private Response exportDependenciesWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of model representing the result of the export dependencies + * asynchronous operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ExportDependenciesOperationResultInner> @@ -1692,7 +1697,8 @@ private Response exportDependenciesWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of model representing the result of the export dependencies + * asynchronous operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ExportDependenciesOperationResultInner> @@ -1713,7 +1719,8 @@ private Response exportDependenciesWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return model representing the result of the export dependencies asynchronous operation on successful completion + * of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono exportDependenciesAsync(String resourceGroupName, @@ -1731,7 +1738,7 @@ private Mono exportDependenciesAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return model representing the result of the export dependencies asynchronous operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public ExportDependenciesOperationResultInner exportDependencies(String resourceGroupName, String mapName, @@ -1749,7 +1756,7 @@ public ExportDependenciesOperationResultInner exportDependencies(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return model representing the result of the export dependencies asynchronous operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public ExportDependenciesOperationResultInner exportDependencies(String resourceGroupName, String mapName, diff --git a/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/models/Maps.java b/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/models/Maps.java index a61303d68be7..912bf65cdc43 100644 --- a/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/models/Maps.java +++ b/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/models/Maps.java @@ -193,7 +193,7 @@ void getConnectionsForProcessOnFocusedMachine(String resourceGroupName, String m * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return model representing the result of the export dependencies asynchronous operation. */ ExportDependenciesOperationResult exportDependencies(String resourceGroupName, String mapName, ExportDependenciesRequest body); @@ -208,7 +208,7 @@ ExportDependenciesOperationResult exportDependencies(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return model representing the result of the export dependencies asynchronous operation. */ ExportDependenciesOperationResult exportDependencies(String resourceGroupName, String mapName, ExportDependenciesRequest body, Context context); diff --git a/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/models/MapsResource.java b/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/models/MapsResource.java index d4f4918b1cf2..c43dad72b680 100644 --- a/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/models/MapsResource.java +++ b/sdk/dependencymap/azure-resourcemanager-dependencymap/src/main/java/com/azure/resourcemanager/dependencymap/models/MapsResource.java @@ -323,7 +323,7 @@ void getConnectionsForProcessOnFocusedMachine(GetConnectionsForProcessOnFocusedM * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return model representing the result of the export dependencies asynchronous operation. */ ExportDependenciesOperationResult exportDependencies(ExportDependenciesRequest body); @@ -335,7 +335,7 @@ void getConnectionsForProcessOnFocusedMachine(GetConnectionsForProcessOnFocusedM * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return model representing the result of the export dependencies asynchronous operation. */ ExportDependenciesOperationResult exportDependencies(ExportDependenciesRequest body, Context context); } diff --git a/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/fluent/NamespaceDevicesClient.java b/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/fluent/NamespaceDevicesClient.java index 538e7e995690..9fcbcc89b32a 100644 --- a/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/fluent/NamespaceDevicesClient.java +++ b/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/fluent/NamespaceDevicesClient.java @@ -276,7 +276,7 @@ PagedIterable listByResourceGroup(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of request payload for revoking device credentials. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginRevoke(String resourceGroupName, String namespaceName, String deviceName, @@ -293,7 +293,7 @@ SyncPoller, Void> beginRevoke(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of request payload for revoking device credentials. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginRevoke(String resourceGroupName, String namespaceName, String deviceName, diff --git a/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/fluent/NamespacesClient.java b/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/fluent/NamespacesClient.java index 8811e01ee5f1..3eb7b5682580 100644 --- a/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/fluent/NamespacesClient.java +++ b/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/fluent/NamespacesClient.java @@ -276,7 +276,8 @@ SyncPoller, NamespaceInner> beginUpdate(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response for the migrate asset resources operation into Namespace + * resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginMigrate(String resourceGroupName, String namespaceName, @@ -292,7 +293,8 @@ SyncPoller, Void> beginMigrate(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response for the migrate asset resources operation into Namespace + * resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginMigrate(String resourceGroupName, String namespaceName, diff --git a/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/implementation/NamespaceDevicesClientImpl.java b/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/implementation/NamespaceDevicesClientImpl.java index 96524ee47d4e..4aff3afac66d 100644 --- a/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/implementation/NamespaceDevicesClientImpl.java +++ b/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/implementation/NamespaceDevicesClientImpl.java @@ -944,7 +944,8 @@ public PagedIterable listByResourceGroup(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return request payload for revoking device credentials along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> revokeWithResponseAsync(String resourceGroupName, String namespaceName, @@ -968,7 +969,7 @@ private Mono>> revokeWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return request payload for revoking device credentials along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response revokeWithResponse(String resourceGroupName, String namespaceName, String deviceName, @@ -991,7 +992,7 @@ private Response revokeWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return request payload for revoking device credentials along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response revokeWithResponse(String resourceGroupName, String namespaceName, String deviceName, @@ -1013,7 +1014,7 @@ private Response revokeWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of request payload for revoking device credentials. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, Void> beginRevokeAsync(String resourceGroupName, String namespaceName, @@ -1034,7 +1035,7 @@ private PollerFlux, Void> beginRevokeAsync(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of request payload for revoking device credentials. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginRevoke(String resourceGroupName, String namespaceName, @@ -1054,7 +1055,7 @@ public SyncPoller, Void> beginRevoke(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of request payload for revoking device credentials. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginRevoke(String resourceGroupName, String namespaceName, @@ -1073,7 +1074,7 @@ public SyncPoller, Void> beginRevoke(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return A {@link Mono} that completes when a successful response is received. + * @return request payload for revoking device credentials on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono revokeAsync(String resourceGroupName, String namespaceName, String deviceName, diff --git a/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/implementation/NamespacesClientImpl.java b/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/implementation/NamespacesClientImpl.java index 438675228dcb..b8f4a69b4dae 100644 --- a/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/implementation/NamespacesClientImpl.java +++ b/sdk/deviceregistry/azure-resourcemanager-deviceregistry/src/main/java/com/azure/resourcemanager/deviceregistry/implementation/NamespacesClientImpl.java @@ -1007,7 +1007,8 @@ public PagedIterable list(Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return response for the migrate asset resources operation into Namespace resource along with {@link Response} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> migrateWithResponseAsync(String resourceGroupName, String namespaceName, @@ -1029,7 +1030,7 @@ private Mono>> migrateWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response for the migrate asset resources operation into Namespace resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response migrateWithResponse(String resourceGroupName, String namespaceName, @@ -1050,7 +1051,7 @@ private Response migrateWithResponse(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response for the migrate asset resources operation into Namespace resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response migrateWithResponse(String resourceGroupName, String namespaceName, @@ -1070,7 +1071,8 @@ private Response migrateWithResponse(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of response for the migrate asset resources operation into Namespace + * resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, Void> beginMigrateAsync(String resourceGroupName, String namespaceName, @@ -1089,7 +1091,8 @@ private PollerFlux, Void> beginMigrateAsync(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response for the migrate asset resources operation into Namespace + * resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginMigrate(String resourceGroupName, String namespaceName, @@ -1108,7 +1111,8 @@ public SyncPoller, Void> beginMigrate(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response for the migrate asset resources operation into Namespace + * resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginMigrate(String resourceGroupName, String namespaceName, @@ -1126,7 +1130,8 @@ public SyncPoller, Void> beginMigrate(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return A {@link Mono} that completes when a successful response is received. + * @return response for the migrate asset resources operation into Namespace resource on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono migrateAsync(String resourceGroupName, String namespaceName, NamespaceMigrateRequest body) { diff --git a/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/fluent/DnsResolverDomainListsClient.java b/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/fluent/DnsResolverDomainListsClient.java index 8072fc0e1688..8f599ed48ba1 100644 --- a/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/fluent/DnsResolverDomainListsClient.java +++ b/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/fluent/DnsResolverDomainListsClient.java @@ -300,7 +300,7 @@ PagedIterable listByResourceGroup(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of describes a DNS resolver domain list. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DnsResolverDomainListInner> beginBulk(String resourceGroupName, @@ -320,7 +320,7 @@ SyncPoller, DnsResolverDomainListInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of describes a DNS resolver domain list. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DnsResolverDomainListInner> beginBulk(String resourceGroupName, @@ -336,7 +336,7 @@ SyncPoller, DnsResolverDomainListInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes a DNS resolver domain list. */ @ServiceMethod(returns = ReturnType.SINGLE) DnsResolverDomainListInner bulk(String resourceGroupName, String dnsResolverDomainListName, @@ -356,7 +356,7 @@ DnsResolverDomainListInner bulk(String resourceGroupName, String dnsResolverDoma * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes a DNS resolver domain list. */ @ServiceMethod(returns = ReturnType.SINGLE) DnsResolverDomainListInner bulk(String resourceGroupName, String dnsResolverDomainListName, diff --git a/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/implementation/DnsResolverDomainListsClientImpl.java b/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/implementation/DnsResolverDomainListsClientImpl.java index 0c4514676336..7e4b4b008f1e 100644 --- a/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/implementation/DnsResolverDomainListsClientImpl.java +++ b/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/implementation/DnsResolverDomainListsClientImpl.java @@ -1354,7 +1354,8 @@ public PagedIterable list(Integer top, Context conte * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return describes a DNS resolver domain list along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> bulkWithResponseAsync(String resourceGroupName, @@ -1381,7 +1382,7 @@ private Mono>> bulkWithResponseAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return describes a DNS resolver domain list along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response bulkWithResponse(String resourceGroupName, String dnsResolverDomainListName, @@ -1407,7 +1408,7 @@ private Response bulkWithResponse(String resourceGroupName, String d * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return describes a DNS resolver domain list along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response bulkWithResponse(String resourceGroupName, String dnsResolverDomainListName, @@ -1432,7 +1433,7 @@ private Response bulkWithResponse(String resourceGroupName, String d * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of describes a DNS resolver domain list. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, DnsResolverDomainListInner> beginBulkAsync( @@ -1454,7 +1455,7 @@ private PollerFlux, DnsResolverDomainList * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of describes a DNS resolver domain list. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, DnsResolverDomainListInner> beginBulkAsync( @@ -1481,7 +1482,7 @@ private PollerFlux, DnsResolverDomainList * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of describes a DNS resolver domain list. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DnsResolverDomainListInner> beginBulk( @@ -1502,7 +1503,7 @@ public SyncPoller, DnsResolverDomainListI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of describes a DNS resolver domain list. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DnsResolverDomainListInner> @@ -1529,7 +1530,7 @@ public SyncPoller, DnsResolverDomainListI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of describes a DNS resolver domain list. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DnsResolverDomainListInner> beginBulk( @@ -1554,7 +1555,7 @@ public SyncPoller, DnsResolverDomainListI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return describes a DNS resolver domain list on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono bulkAsync(String resourceGroupName, String dnsResolverDomainListName, @@ -1572,7 +1573,7 @@ private Mono bulkAsync(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return describes a DNS resolver domain list on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono bulkAsync(String resourceGroupName, String dnsResolverDomainListName, @@ -1592,7 +1593,7 @@ private Mono bulkAsync(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes a DNS resolver domain list. */ @ServiceMethod(returns = ReturnType.SINGLE) public DnsResolverDomainListInner bulk(String resourceGroupName, String dnsResolverDomainListName, @@ -1617,7 +1618,7 @@ public DnsResolverDomainListInner bulk(String resourceGroupName, String dnsResol * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes a DNS resolver domain list. */ @ServiceMethod(returns = ReturnType.SINGLE) public DnsResolverDomainListInner bulk(String resourceGroupName, String dnsResolverDomainListName, diff --git a/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/models/DnsResolverDomainList.java b/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/models/DnsResolverDomainList.java index 4c5a09c2ef67..9af947ab01c8 100644 --- a/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/models/DnsResolverDomainList.java +++ b/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/models/DnsResolverDomainList.java @@ -351,7 +351,7 @@ interface WithIfMatch { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes a DNS resolver domain list. */ DnsResolverDomainList bulk(DnsResolverDomainListBulk parameters); @@ -367,7 +367,7 @@ interface WithIfMatch { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes a DNS resolver domain list. */ DnsResolverDomainList bulk(DnsResolverDomainListBulk parameters, String ifMatch, String ifNoneMatch, Context context); diff --git a/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/models/DnsResolverDomainLists.java b/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/models/DnsResolverDomainLists.java index 6aa88131391b..42e2df73b443 100644 --- a/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/models/DnsResolverDomainLists.java +++ b/sdk/dnsresolver/azure-resourcemanager-dnsresolver/src/main/java/com/azure/resourcemanager/dnsresolver/models/DnsResolverDomainLists.java @@ -117,7 +117,7 @@ Response getByResourceGroupWithResponse(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes a DNS resolver domain list. */ DnsResolverDomainList bulk(String resourceGroupName, String dnsResolverDomainListName, DnsResolverDomainListBulk parameters); @@ -136,7 +136,7 @@ DnsResolverDomainList bulk(String resourceGroupName, String dnsResolverDomainLis * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes a DNS resolver domain list. */ DnsResolverDomainList bulk(String resourceGroupName, String dnsResolverDomainListName, DnsResolverDomainListBulk parameters, String ifMatch, String ifNoneMatch, Context context); diff --git a/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/fluent/EdgeActionVersionsClient.java b/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/fluent/EdgeActionVersionsClient.java index f62e5cd2b683..ab2a5f58387e 100644 --- a/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/fluent/EdgeActionVersionsClient.java +++ b/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/fluent/EdgeActionVersionsClient.java @@ -281,7 +281,7 @@ PagedIterable listByEdgeAction(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of represents an edge action version. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, EdgeActionVersionPropertiesInner> @@ -298,7 +298,7 @@ PagedIterable listByEdgeAction(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of represents an edge action version. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, EdgeActionVersionPropertiesInner> beginDeployVersionCode( @@ -314,7 +314,7 @@ SyncPoller, EdgeActionVersionProper * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents an edge action version. */ @ServiceMethod(returns = ReturnType.SINGLE) EdgeActionVersionPropertiesInner deployVersionCode(String resourceGroupName, String edgeActionName, String version, @@ -331,7 +331,7 @@ EdgeActionVersionPropertiesInner deployVersionCode(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents an edge action version. */ @ServiceMethod(returns = ReturnType.SINGLE) EdgeActionVersionPropertiesInner deployVersionCode(String resourceGroupName, String edgeActionName, String version, diff --git a/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/implementation/EdgeActionVersionsClientImpl.java b/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/implementation/EdgeActionVersionsClientImpl.java index 7a14991f4886..3513ce7c2233 100644 --- a/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/implementation/EdgeActionVersionsClientImpl.java +++ b/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/implementation/EdgeActionVersionsClientImpl.java @@ -999,7 +999,7 @@ public PagedIterable listByEdgeAction(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return represents an edge action version along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> deployVersionCodeWithResponseAsync(String resourceGroupName, @@ -1023,7 +1023,7 @@ private Mono>> deployVersionCodeWithResponseAsync(Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return represents an edge action version along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response deployVersionCodeWithResponse(String resourceGroupName, String edgeActionName, @@ -1046,7 +1046,7 @@ private Response deployVersionCodeWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return represents an edge action version along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response deployVersionCodeWithResponse(String resourceGroupName, String edgeActionName, @@ -1068,7 +1068,7 @@ private Response deployVersionCodeWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of represents an edge action version. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, EdgeActionVersionPropertiesInner> @@ -1091,7 +1091,7 @@ private Response deployVersionCodeWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of represents an edge action version. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, EdgeActionVersionPropertiesInner> @@ -1112,7 +1112,7 @@ private Response deployVersionCodeWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of represents an edge action version. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, EdgeActionVersionPropertiesInner> @@ -1134,7 +1134,7 @@ private Response deployVersionCodeWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return represents an edge action version on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono deployVersionCodeAsync(String resourceGroupName, @@ -1153,7 +1153,7 @@ private Mono deployVersionCodeAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents an edge action version. */ @ServiceMethod(returns = ReturnType.SINGLE) public EdgeActionVersionPropertiesInner deployVersionCode(String resourceGroupName, String edgeActionName, @@ -1172,7 +1172,7 @@ public EdgeActionVersionPropertiesInner deployVersionCode(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents an edge action version. */ @ServiceMethod(returns = ReturnType.SINGLE) public EdgeActionVersionPropertiesInner deployVersionCode(String resourceGroupName, String edgeActionName, diff --git a/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/models/EdgeActionVersion.java b/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/models/EdgeActionVersion.java index 50d3c99eeb1e..ecece901b645 100644 --- a/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/models/EdgeActionVersion.java +++ b/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/models/EdgeActionVersion.java @@ -273,7 +273,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents an edge action version. */ EdgeActionVersionProperties deployVersionCode(VersionCodeInner body); @@ -285,7 +285,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents an edge action version. */ EdgeActionVersionProperties deployVersionCode(VersionCodeInner body, Context context); diff --git a/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/models/EdgeActionVersions.java b/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/models/EdgeActionVersions.java index d1d8c8579da6..013fd1fd2a36 100644 --- a/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/models/EdgeActionVersions.java +++ b/sdk/edgeactions/azure-resourcemanager-edgeactions/src/main/java/com/azure/resourcemanager/edgeactions/models/EdgeActionVersions.java @@ -101,7 +101,7 @@ Response getWithResponse(String resourceGroupName, String edg * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents an edge action version. */ EdgeActionVersionProperties deployVersionCode(String resourceGroupName, String edgeActionName, String version, VersionCodeInner body); @@ -117,7 +117,7 @@ EdgeActionVersionProperties deployVersionCode(String resourceGroupName, String e * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents an edge action version. */ EdgeActionVersionProperties deployVersionCode(String resourceGroupName, String edgeActionName, String version, VersionCodeInner body, Context context); diff --git a/sdk/elastic/azure-resourcemanager-elastic/src/main/java/com/azure/resourcemanager/elastic/fluent/OrganizationsClient.java b/sdk/elastic/azure-resourcemanager-elastic/src/main/java/com/azure/resourcemanager/elastic/fluent/OrganizationsClient.java index 9839ba07792e..b77a69325edc 100644 --- a/sdk/elastic/azure-resourcemanager-elastic/src/main/java/com/azure/resourcemanager/elastic/fluent/OrganizationsClient.java +++ b/sdk/elastic/azure-resourcemanager-elastic/src/main/java/com/azure/resourcemanager/elastic/fluent/OrganizationsClient.java @@ -28,7 +28,7 @@ public interface OrganizationsClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of monitor resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ElasticMonitorResourceInner> @@ -44,7 +44,7 @@ public interface OrganizationsClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of monitor resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ElasticMonitorResourceInner> @@ -58,7 +58,7 @@ public interface OrganizationsClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return monitor resource. */ @ServiceMethod(returns = ReturnType.SINGLE) ElasticMonitorResourceInner resubscribe(String resourceGroupName, String monitorName); @@ -73,7 +73,7 @@ public interface OrganizationsClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return monitor resource. */ @ServiceMethod(returns = ReturnType.SINGLE) ElasticMonitorResourceInner resubscribe(String resourceGroupName, String monitorName, ResubscribeProperties body, diff --git a/sdk/elastic/azure-resourcemanager-elastic/src/main/java/com/azure/resourcemanager/elastic/implementation/OrganizationsClientImpl.java b/sdk/elastic/azure-resourcemanager-elastic/src/main/java/com/azure/resourcemanager/elastic/implementation/OrganizationsClientImpl.java index 173fff5e6c90..38c993adb92c 100644 --- a/sdk/elastic/azure-resourcemanager-elastic/src/main/java/com/azure/resourcemanager/elastic/implementation/OrganizationsClientImpl.java +++ b/sdk/elastic/azure-resourcemanager-elastic/src/main/java/com/azure/resourcemanager/elastic/implementation/OrganizationsClientImpl.java @@ -130,7 +130,7 @@ Response getElasticT * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return monitor resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> resubscribeWithResponseAsync(String resourceGroupName, String monitorName, @@ -151,7 +151,7 @@ private Mono>> resubscribeWithResponseAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return monitor resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response resubscribeWithResponse(String resourceGroupName, String monitorName, @@ -171,7 +171,7 @@ private Response resubscribeWithResponse(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return monitor resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response resubscribeWithResponse(String resourceGroupName, String monitorName, @@ -190,7 +190,7 @@ private Response resubscribeWithResponse(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of monitor resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ElasticMonitorResourceInner> @@ -209,7 +209,7 @@ private Response resubscribeWithResponse(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of monitor resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ElasticMonitorResourceInner> @@ -230,7 +230,7 @@ private Response resubscribeWithResponse(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of monitor resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ElasticMonitorResourceInner> @@ -248,7 +248,7 @@ private Response resubscribeWithResponse(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of monitor resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ElasticMonitorResourceInner> @@ -269,7 +269,7 @@ private Response resubscribeWithResponse(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of monitor resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ElasticMonitorResourceInner> @@ -288,7 +288,7 @@ private Response resubscribeWithResponse(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return monitor resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono resubscribeAsync(String resourceGroupName, String monitorName, @@ -305,7 +305,7 @@ private Mono resubscribeAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return monitor resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono resubscribeAsync(String resourceGroupName, String monitorName) { @@ -322,7 +322,7 @@ private Mono resubscribeAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return monitor resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public ElasticMonitorResourceInner resubscribe(String resourceGroupName, String monitorName) { @@ -340,7 +340,7 @@ public ElasticMonitorResourceInner resubscribe(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return monitor resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public ElasticMonitorResourceInner resubscribe(String resourceGroupName, String monitorName, diff --git a/sdk/elastic/azure-resourcemanager-elastic/src/main/java/com/azure/resourcemanager/elastic/models/Organizations.java b/sdk/elastic/azure-resourcemanager-elastic/src/main/java/com/azure/resourcemanager/elastic/models/Organizations.java index ac6ac9d2e90b..3ed8e3307bf3 100644 --- a/sdk/elastic/azure-resourcemanager-elastic/src/main/java/com/azure/resourcemanager/elastic/models/Organizations.java +++ b/sdk/elastic/azure-resourcemanager-elastic/src/main/java/com/azure/resourcemanager/elastic/models/Organizations.java @@ -19,7 +19,7 @@ public interface Organizations { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return monitor resource. */ ElasticMonitorResource resubscribe(String resourceGroupName, String monitorName); @@ -33,7 +33,7 @@ public interface Organizations { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return monitor resource. */ ElasticMonitorResource resubscribe(String resourceGroupName, String monitorName, ResubscribeProperties body, Context context); diff --git a/sdk/elasticsan/azure-resourcemanager-elasticsan/src/main/java/com/azure/resourcemanager/elasticsan/fluent/VolumesClient.java b/sdk/elasticsan/azure-resourcemanager-elasticsan/src/main/java/com/azure/resourcemanager/elasticsan/fluent/VolumesClient.java index 6906bec04f31..41f624623f01 100644 --- a/sdk/elasticsan/azure-resourcemanager-elasticsan/src/main/java/com/azure/resourcemanager/elasticsan/fluent/VolumesClient.java +++ b/sdk/elasticsan/azure-resourcemanager-elasticsan/src/main/java/com/azure/resourcemanager/elasticsan/fluent/VolumesClient.java @@ -309,7 +309,7 @@ PagedIterable listByVolumeGroup(String resourceGroupName, String el * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response object for pre validation api. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, PreValidationResponseInner> beginPreBackup( @@ -327,7 +327,7 @@ SyncPoller, PreValidationResponseInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response object for pre validation api. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, PreValidationResponseInner> beginPreBackup( @@ -345,7 +345,7 @@ SyncPoller, PreValidationResponseInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response object for pre validation api. */ @ServiceMethod(returns = ReturnType.SINGLE) PreValidationResponseInner preBackup(String resourceGroupName, String elasticSanName, String volumeGroupName, @@ -363,7 +363,7 @@ PreValidationResponseInner preBackup(String resourceGroupName, String elasticSan * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response object for pre validation api. */ @ServiceMethod(returns = ReturnType.SINGLE) PreValidationResponseInner preBackup(String resourceGroupName, String elasticSanName, String volumeGroupName, @@ -380,7 +380,7 @@ PreValidationResponseInner preBackup(String resourceGroupName, String elasticSan * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response object for pre validation api. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, PreValidationResponseInner> beginPreRestore( @@ -398,7 +398,7 @@ SyncPoller, PreValidationResponseInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response object for pre validation api. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, PreValidationResponseInner> beginPreRestore( @@ -416,7 +416,7 @@ SyncPoller, PreValidationResponseInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response object for pre validation api. */ @ServiceMethod(returns = ReturnType.SINGLE) PreValidationResponseInner preRestore(String resourceGroupName, String elasticSanName, String volumeGroupName, @@ -434,7 +434,7 @@ PreValidationResponseInner preRestore(String resourceGroupName, String elasticSa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response object for pre validation api. */ @ServiceMethod(returns = ReturnType.SINGLE) PreValidationResponseInner preRestore(String resourceGroupName, String elasticSanName, String volumeGroupName, diff --git a/sdk/elasticsan/azure-resourcemanager-elasticsan/src/main/java/com/azure/resourcemanager/elasticsan/implementation/VolumesClientImpl.java b/sdk/elasticsan/azure-resourcemanager-elasticsan/src/main/java/com/azure/resourcemanager/elasticsan/implementation/VolumesClientImpl.java index 8fea9411d639..3e3eedfe4795 100644 --- a/sdk/elasticsan/azure-resourcemanager-elasticsan/src/main/java/com/azure/resourcemanager/elasticsan/implementation/VolumesClientImpl.java +++ b/sdk/elasticsan/azure-resourcemanager-elasticsan/src/main/java/com/azure/resourcemanager/elasticsan/implementation/VolumesClientImpl.java @@ -1508,7 +1508,8 @@ public PagedIterable listByVolumeGroup(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return response object for pre validation api along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> preBackupWithResponseAsync(String resourceGroupName, String elasticSanName, @@ -1557,7 +1558,7 @@ private Mono>> preBackupWithResponseAsync(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response object for pre validation api along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response preBackupWithResponse(String resourceGroupName, String elasticSanName, @@ -1609,7 +1610,7 @@ private Response preBackupWithResponse(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response object for pre validation api along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response preBackupWithResponse(String resourceGroupName, String elasticSanName, @@ -1660,7 +1661,7 @@ private Response preBackupWithResponse(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of response object for pre validation api. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, PreValidationResponseInner> beginPreBackupAsync( @@ -1683,7 +1684,7 @@ private PollerFlux, PreValidationResponse * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response object for pre validation api. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, PreValidationResponseInner> beginPreBackup( @@ -1706,7 +1707,7 @@ public SyncPoller, PreValidationResponseI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response object for pre validation api. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, PreValidationResponseInner> beginPreBackup( @@ -1729,7 +1730,7 @@ public SyncPoller, PreValidationResponseI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return response object for pre validation api on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono preBackupAsync(String resourceGroupName, String elasticSanName, @@ -1749,7 +1750,7 @@ private Mono preBackupAsync(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response object for pre validation api. */ @ServiceMethod(returns = ReturnType.SINGLE) public PreValidationResponseInner preBackup(String resourceGroupName, String elasticSanName, String volumeGroupName, @@ -1769,7 +1770,7 @@ public PreValidationResponseInner preBackup(String resourceGroupName, String ela * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response object for pre validation api. */ @ServiceMethod(returns = ReturnType.SINGLE) public PreValidationResponseInner preBackup(String resourceGroupName, String elasticSanName, String volumeGroupName, @@ -1788,7 +1789,8 @@ public PreValidationResponseInner preBackup(String resourceGroupName, String ela * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return response object for pre validation api along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> preRestoreWithResponseAsync(String resourceGroupName, @@ -1837,7 +1839,7 @@ private Mono>> preRestoreWithResponseAsync(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response object for pre validation api along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response preRestoreWithResponse(String resourceGroupName, String elasticSanName, @@ -1889,7 +1891,7 @@ private Response preRestoreWithResponse(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response object for pre validation api along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response preRestoreWithResponse(String resourceGroupName, String elasticSanName, @@ -1940,7 +1942,7 @@ private Response preRestoreWithResponse(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of response object for pre validation api. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, PreValidationResponseInner> beginPreRestoreAsync( @@ -1963,7 +1965,7 @@ private PollerFlux, PreValidationResponse * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response object for pre validation api. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, PreValidationResponseInner> beginPreRestore( @@ -1986,7 +1988,7 @@ public SyncPoller, PreValidationResponseI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response object for pre validation api. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, PreValidationResponseInner> beginPreRestore( @@ -2009,7 +2011,7 @@ public SyncPoller, PreValidationResponseI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return response object for pre validation api on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono preRestoreAsync(String resourceGroupName, String elasticSanName, @@ -2029,7 +2031,7 @@ private Mono preRestoreAsync(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response object for pre validation api. */ @ServiceMethod(returns = ReturnType.SINGLE) public PreValidationResponseInner preRestore(String resourceGroupName, String elasticSanName, @@ -2049,7 +2051,7 @@ public PreValidationResponseInner preRestore(String resourceGroupName, String el * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response object for pre validation api. */ @ServiceMethod(returns = ReturnType.SINGLE) public PreValidationResponseInner preRestore(String resourceGroupName, String elasticSanName, diff --git a/sdk/elasticsan/azure-resourcemanager-elasticsan/src/main/java/com/azure/resourcemanager/elasticsan/models/Volumes.java b/sdk/elasticsan/azure-resourcemanager-elasticsan/src/main/java/com/azure/resourcemanager/elasticsan/models/Volumes.java index ae0f07a4f9c2..8579cf8960cc 100644 --- a/sdk/elasticsan/azure-resourcemanager-elasticsan/src/main/java/com/azure/resourcemanager/elasticsan/models/Volumes.java +++ b/sdk/elasticsan/azure-resourcemanager-elasticsan/src/main/java/com/azure/resourcemanager/elasticsan/models/Volumes.java @@ -113,7 +113,7 @@ PagedIterable listByVolumeGroup(String resourceGroupName, String elastic * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response object for pre validation api. */ PreValidationResponse preBackup(String resourceGroupName, String elasticSanName, String volumeGroupName, VolumeNameList parameters); @@ -130,7 +130,7 @@ PreValidationResponse preBackup(String resourceGroupName, String elasticSanName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response object for pre validation api. */ PreValidationResponse preBackup(String resourceGroupName, String elasticSanName, String volumeGroupName, VolumeNameList parameters, Context context); @@ -146,7 +146,7 @@ PreValidationResponse preBackup(String resourceGroupName, String elasticSanName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response object for pre validation api. */ PreValidationResponse preRestore(String resourceGroupName, String elasticSanName, String volumeGroupName, DiskSnapshotList parameters); @@ -163,7 +163,7 @@ PreValidationResponse preRestore(String resourceGroupName, String elasticSanName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response object for pre validation api. */ PreValidationResponse preRestore(String resourceGroupName, String elasticSanName, String volumeGroupName, DiskSnapshotList parameters, Context context); diff --git a/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java b/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java index e395c1dba42a..96314a1f9222 100644 --- a/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java +++ b/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java @@ -6,7 +6,7 @@ package com.azure.resourcemanager.cognitiveservices.fluent; ======== package com.azure.resourcemanager.fileshares.fluent; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java import com.azure.core.annotation.ReturnType; import com.azure.core.annotation.ServiceMethod; @@ -47,7 +47,7 @@ public interface FileSharesClient { * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource * Manager. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -307,7 +307,7 @@ SyncPoller, FileShareInner> beginUpdate(String resour * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource * Manager. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -334,7 +334,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource * Manager. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -362,7 +362,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource * Manager. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -387,7 +387,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param resourceName The resource name of the file share, as seen by the administrator through Azure Resource * Manager. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -440,7 +440,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String /** * List FileShare resources by subscription ID. * ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -546,7 +546,7 @@ Response enableWithResponse(String resourceGroupName, String accountName, * List FileShare resources by resource group. * * @param resourceGroupName The name of the resource group. The name is case insensitive. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -604,5 +604,5 @@ Response checkNameAvailabilityWithResponse(S */ @ServiceMethod(returns = ReturnType.SINGLE) CheckNameAvailabilityResponseInner checkNameAvailability(String location, CheckNameAvailabilityRequest body); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/fluent/FileSharesClient.java } diff --git a/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateEndpointConnectionListResult.java b/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateEndpointConnectionListResult.java index 9112cc992a75..38818db338ed 100644 --- a/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateEndpointConnectionListResult.java +++ b/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateEndpointConnectionListResult.java @@ -6,7 +6,7 @@ package com.azure.resourcemanager.durabletask.implementation.models; ======== package com.azure.resourcemanager.fileshares.implementation.models; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateEndpointConnectionListResult.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateEndpointConnectionListResult.java import com.azure.core.annotation.Immutable; import com.azure.json.JsonReader; @@ -17,7 +17,7 @@ import com.azure.resourcemanager.durabletask.fluent.models.PrivateEndpointConnectionInner; ======== import com.azure.resourcemanager.fileshares.fluent.models.PrivateEndpointConnectionInner; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateEndpointConnectionListResult.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateEndpointConnectionListResult.java import java.io.IOException; import java.util.List; diff --git a/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateLinkResourceListResult.java b/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateLinkResourceListResult.java index d9e76900430f..d81785448f03 100644 --- a/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateLinkResourceListResult.java +++ b/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateLinkResourceListResult.java @@ -11,7 +11,7 @@ package com.azure.resourcemanager.fileshares.implementation.models; import com.azure.core.annotation.Immutable; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateLinkResourceListResult.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateLinkResourceListResult.java import com.azure.json.JsonReader; import com.azure.json.JsonSerializable; import com.azure.json.JsonToken; @@ -74,7 +74,7 @@ public void validate() { value().forEach(e -> e.validate()); } ======== ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateLinkResourceListResult.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/implementation/models/PrivateLinkResourceListResult.java } private static final ClientLogger LOGGER = new ClientLogger(PrivateLinkResourceListResult.class); diff --git a/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java b/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java index db411df0ee98..8331c4300acc 100644 --- a/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +++ b/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java @@ -6,7 +6,7 @@ package com.azure.resourcemanager.horizondb.models; ======== package com.azure.resourcemanager.fileshares.models; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java import com.azure.core.management.Region; import com.azure.core.management.SystemData; @@ -27,7 +27,7 @@ public interface HorizonDbParameterGroup { * An immutable client-side representation of FileShare. */ public interface FileShare { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java /** * Gets the id property: Fully qualified resource Id for the resource. * @@ -72,7 +72,7 @@ public interface FileShare { HorizonDbParameterGroupProperties properties(); ======== FileShareProperties properties(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java /** * Gets the systemData property: Azure Resource Manager metadata containing createdBy and modifiedBy information. @@ -121,7 +121,7 @@ public interface FileShare { /** * The entirety of the FileShare definition. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java */ interface Definition extends DefinitionStages.Blank, DefinitionStages.WithLocation, DefinitionStages.WithResourceGroup, DefinitionStages.WithCreate { @@ -140,7 +140,7 @@ interface DefinitionStages { interface DefinitionStages { /** * The first stage of the FileShare definition. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java */ interface Blank extends WithLocation { } @@ -150,7 +150,7 @@ interface Blank extends WithLocation { * The stage of the HorizonDbParameterGroup definition allowing to specify location. ======== * The stage of the FileShare definition allowing to specify location. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java */ interface WithLocation { /** @@ -175,7 +175,7 @@ interface WithLocation { * The stage of the HorizonDbParameterGroup definition allowing to specify parent resource. ======== * The stage of the FileShare definition allowing to specify parent resource. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java */ interface WithResourceGroup { /** @@ -194,7 +194,7 @@ interface WithResourceGroup { ======== * The stage of the FileShare definition which contains all the minimum required properties for the resource to * be created, but also allows for any other optional properties to be specified. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java */ interface WithCreate extends DefinitionStages.WithTags, DefinitionStages.WithProperties { /** @@ -206,7 +206,7 @@ interface WithCreate extends DefinitionStages.WithTags, DefinitionStages.WithPro HorizonDbParameterGroup create(); ======== FileShare create(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java /** * Executes the create request. @@ -226,7 +226,7 @@ interface WithCreate extends DefinitionStages.WithTags, DefinitionStages.WithPro /** * The stage of the FileShare definition allowing to specify tags. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java */ interface WithTags { /** @@ -243,7 +243,7 @@ interface WithTags { * The stage of the HorizonDbParameterGroup definition allowing to specify properties. ======== * The stage of the FileShare definition allowing to specify properties. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java */ interface WithProperties { /** @@ -256,7 +256,7 @@ interface WithProperties { WithCreate withProperties(HorizonDbParameterGroupProperties properties); ======== WithCreate withProperties(FileShareProperties properties); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java } } @@ -279,7 +279,7 @@ interface WithProperties { /** * The template for FileShare update. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java */ interface Update extends UpdateStages.WithTags, UpdateStages.WithProperties { /** @@ -291,7 +291,7 @@ interface Update extends UpdateStages.WithTags, UpdateStages.WithProperties { HorizonDbParameterGroup apply(); ======== FileShare apply(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java /** * Executes the update request. @@ -319,7 +319,7 @@ interface UpdateStages { interface UpdateStages { /** * The stage of the FileShare update allowing to specify tags. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java */ interface WithTags { /** @@ -336,7 +336,7 @@ interface WithTags { * The stage of the HorizonDbParameterGroup update allowing to specify properties. ======== * The stage of the FileShare update allowing to specify properties. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java */ interface WithProperties { /** @@ -349,7 +349,7 @@ interface WithProperties { Update withProperties(HorizonDbParameterGroupPropertiesForPatchUpdate properties); ======== Update withProperties(FileShareUpdateProperties properties); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java } } @@ -362,7 +362,7 @@ interface WithProperties { HorizonDbParameterGroup refresh(); ======== FileShare refresh(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java /** * Refreshes the resource to sync with Azure. @@ -374,5 +374,5 @@ interface WithProperties { HorizonDbParameterGroup refresh(Context context); ======== FileShare refresh(Context context); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShare.java } diff --git a/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java b/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java index 8a7154bf3b06..638d12cf022d 100644 --- a/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java +++ b/sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java @@ -2,11 +2,11 @@ // Licensed under the MIT License. // Code generated by Microsoft (R) TypeSpec Code Generator. -<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java package com.azure.resourcemanager.horizondb.models; ======== package com.azure.resourcemanager.fileshares.models; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java import com.azure.core.annotation.Fluent; import com.azure.json.JsonReader; @@ -17,33 +17,32 @@ import java.util.Map; /** -<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java - * HorizonDb parameter group for update operations. +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java + * HorizonDb cluster for update operations. */ @Fluent -public final class HorizonDbParameterGroupForPatchUpdate - implements JsonSerializable { +public final class HorizonDbClusterForPatchUpdate implements JsonSerializable { ======== * The type used for update operations of the FileShare. */ @Fluent public final class FileShareUpdate implements JsonSerializable { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java /* * Resource tags. */ private Map tags; /* - * The properties that can be updated for a HorizonDb parameter group. + * The properties that can be updated for a HorizonDb cluster. */ -<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java - private HorizonDbParameterGroupPropertiesForPatchUpdate properties; +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java + private HorizonDbClusterPropertiesForPatchUpdate properties; /** - * Creates an instance of HorizonDbParameterGroupForPatchUpdate class. + * Creates an instance of HorizonDbClusterForPatchUpdate class. */ - public HorizonDbParameterGroupForPatchUpdate() { + public HorizonDbClusterForPatchUpdate() { ======== private FileShareUpdateProperties properties; @@ -51,7 +50,7 @@ public HorizonDbParameterGroupForPatchUpdate() { * Creates an instance of FileShareUpdate class. */ public FileShareUpdate() { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java } /** @@ -67,46 +66,45 @@ public Map tags() { * Set the tags property: Resource tags. * * @param tags the tags value to set. -<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java - * @return the HorizonDbParameterGroupForPatchUpdate object itself. +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java + * @return the HorizonDbClusterForPatchUpdate object itself. */ - public HorizonDbParameterGroupForPatchUpdate withTags(Map tags) { + public HorizonDbClusterForPatchUpdate withTags(Map tags) { ======== * @return the FileShareUpdate object itself. */ public FileShareUpdate withTags(Map tags) { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java this.tags = tags; return this; } /** - * Get the properties property: The properties that can be updated for a HorizonDb parameter group. + * Get the properties property: The properties that can be updated for a HorizonDb cluster. * * @return the properties value. */ -<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java - public HorizonDbParameterGroupPropertiesForPatchUpdate properties() { +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java + public HorizonDbClusterPropertiesForPatchUpdate properties() { ======== public FileShareUpdateProperties properties() { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java return this.properties; } /** - * Set the properties property: The properties that can be updated for a HorizonDb parameter group. + * Set the properties property: The properties that can be updated for a HorizonDb cluster. * * @param properties the properties value to set. -<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java - * @return the HorizonDbParameterGroupForPatchUpdate object itself. +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java + * @return the HorizonDbClusterForPatchUpdate object itself. */ - public HorizonDbParameterGroupForPatchUpdate - withProperties(HorizonDbParameterGroupPropertiesForPatchUpdate properties) { + public HorizonDbClusterForPatchUpdate withProperties(HorizonDbClusterPropertiesForPatchUpdate properties) { ======== * @return the FileShareUpdate object itself. */ public FileShareUpdate withProperties(FileShareUpdateProperties properties) { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java this.properties = properties; return this; } @@ -123,18 +121,18 @@ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { } /** -<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java - * Reads an instance of HorizonDbParameterGroupForPatchUpdate from the JsonReader. +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java + * Reads an instance of HorizonDbClusterForPatchUpdate from the JsonReader. * * @param jsonReader The JsonReader being read. - * @return An instance of HorizonDbParameterGroupForPatchUpdate if the JsonReader was pointing to an instance of it, - * or null if it was pointing to JSON null. - * @throws IOException If an error occurs while reading the HorizonDbParameterGroupForPatchUpdate. + * @return An instance of HorizonDbClusterForPatchUpdate if the JsonReader was pointing to an instance of it, or + * null if it was pointing to JSON null. + * @throws IOException If an error occurs while reading the HorizonDbClusterForPatchUpdate. */ - public static HorizonDbParameterGroupForPatchUpdate fromJson(JsonReader jsonReader) throws IOException { + public static HorizonDbClusterForPatchUpdate fromJson(JsonReader jsonReader) throws IOException { return jsonReader.readObject(reader -> { - HorizonDbParameterGroupForPatchUpdate deserializedHorizonDbParameterGroupForPatchUpdate - = new HorizonDbParameterGroupForPatchUpdate(); + HorizonDbClusterForPatchUpdate deserializedHorizonDbClusterForPatchUpdate + = new HorizonDbClusterForPatchUpdate(); ======== * Reads an instance of FileShareUpdate from the JsonReader. * @@ -146,33 +144,33 @@ public static HorizonDbParameterGroupForPatchUpdate fromJson(JsonReader jsonRead public static FileShareUpdate fromJson(JsonReader jsonReader) throws IOException { return jsonReader.readObject(reader -> { FileShareUpdate deserializedFileShareUpdate = new FileShareUpdate(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java while (reader.nextToken() != JsonToken.END_OBJECT) { String fieldName = reader.getFieldName(); reader.nextToken(); if ("tags".equals(fieldName)) { Map tags = reader.readMap(reader1 -> reader1.getString()); -<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java - deserializedHorizonDbParameterGroupForPatchUpdate.tags = tags; +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java + deserializedHorizonDbClusterForPatchUpdate.tags = tags; } else if ("properties".equals(fieldName)) { - deserializedHorizonDbParameterGroupForPatchUpdate.properties - = HorizonDbParameterGroupPropertiesForPatchUpdate.fromJson(reader); + deserializedHorizonDbClusterForPatchUpdate.properties + = HorizonDbClusterPropertiesForPatchUpdate.fromJson(reader); ======== deserializedFileShareUpdate.tags = tags; } else if ("properties".equals(fieldName)) { deserializedFileShareUpdate.properties = FileShareUpdateProperties.fromJson(reader); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java } else { reader.skipChildren(); } } -<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java - return deserializedHorizonDbParameterGroupForPatchUpdate; +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java + return deserializedHorizonDbClusterForPatchUpdate; ======== return deserializedFileShareUpdate; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/fileshares/azure-resourcemanager-fileshares/src/main/java/com/azure/resourcemanager/fileshares/models/FileShareUpdate.java }); } } diff --git a/sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java b/sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java index 25385a6b0f51..8c9ef59f72b8 100644 --- a/sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java +++ b/sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java @@ -13,16 +13,34 @@ import java.util.Map; /** +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java + * HorizonDb parameter group for update operations. + */ +@Fluent +public final class HorizonDbParameterGroupForPatchUpdate + implements JsonSerializable { +======== * HorizonDb cluster for update operations. */ @Fluent public final class HorizonDbClusterForPatchUpdate implements JsonSerializable { +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java /* * Resource tags. */ private Map tags; /* +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java + * The properties that can be updated for a HorizonDb parameter group. + */ + private HorizonDbParameterGroupPropertiesForPatchUpdate properties; + + /** + * Creates an instance of HorizonDbParameterGroupForPatchUpdate class. + */ + public HorizonDbParameterGroupForPatchUpdate() { +======== * The properties that can be updated for a HorizonDb cluster. */ private HorizonDbClusterPropertiesForPatchUpdate properties; @@ -31,6 +49,7 @@ public final class HorizonDbClusterForPatchUpdate implements JsonSerializable>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java } /** @@ -46,29 +65,53 @@ public Map tags() { * Set the tags property: Resource tags. * * @param tags the tags value to set. +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java + * @return the HorizonDbParameterGroupForPatchUpdate object itself. + */ + public HorizonDbParameterGroupForPatchUpdate withTags(Map tags) { +======== * @return the HorizonDbClusterForPatchUpdate object itself. */ public HorizonDbClusterForPatchUpdate withTags(Map tags) { +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java this.tags = tags; return this; } /** +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java + * Get the properties property: The properties that can be updated for a HorizonDb parameter group. + * + * @return the properties value. + */ + public HorizonDbParameterGroupPropertiesForPatchUpdate properties() { +======== * Get the properties property: The properties that can be updated for a HorizonDb cluster. * * @return the properties value. */ public HorizonDbClusterPropertiesForPatchUpdate properties() { +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java return this.properties; } /** +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java + * Set the properties property: The properties that can be updated for a HorizonDb parameter group. + * + * @param properties the properties value to set. + * @return the HorizonDbParameterGroupForPatchUpdate object itself. + */ + public HorizonDbParameterGroupForPatchUpdate + withProperties(HorizonDbParameterGroupPropertiesForPatchUpdate properties) { +======== * Set the properties property: The properties that can be updated for a HorizonDb cluster. * * @param properties the properties value to set. * @return the HorizonDbClusterForPatchUpdate object itself. */ public HorizonDbClusterForPatchUpdate withProperties(HorizonDbClusterPropertiesForPatchUpdate properties) { +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java this.properties = properties; return this; } @@ -85,6 +128,19 @@ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { } /** +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java + * Reads an instance of HorizonDbParameterGroupForPatchUpdate from the JsonReader. + * + * @param jsonReader The JsonReader being read. + * @return An instance of HorizonDbParameterGroupForPatchUpdate if the JsonReader was pointing to an instance of it, + * or null if it was pointing to JSON null. + * @throws IOException If an error occurs while reading the HorizonDbParameterGroupForPatchUpdate. + */ + public static HorizonDbParameterGroupForPatchUpdate fromJson(JsonReader jsonReader) throws IOException { + return jsonReader.readObject(reader -> { + HorizonDbParameterGroupForPatchUpdate deserializedHorizonDbParameterGroupForPatchUpdate + = new HorizonDbParameterGroupForPatchUpdate(); +======== * Reads an instance of HorizonDbClusterForPatchUpdate from the JsonReader. * * @param jsonReader The JsonReader being read. @@ -96,22 +152,34 @@ public static HorizonDbClusterForPatchUpdate fromJson(JsonReader jsonReader) thr return jsonReader.readObject(reader -> { HorizonDbClusterForPatchUpdate deserializedHorizonDbClusterForPatchUpdate = new HorizonDbClusterForPatchUpdate(); +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java while (reader.nextToken() != JsonToken.END_OBJECT) { String fieldName = reader.getFieldName(); reader.nextToken(); if ("tags".equals(fieldName)) { Map tags = reader.readMap(reader1 -> reader1.getString()); +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java + deserializedHorizonDbParameterGroupForPatchUpdate.tags = tags; + } else if ("properties".equals(fieldName)) { + deserializedHorizonDbParameterGroupForPatchUpdate.properties + = HorizonDbParameterGroupPropertiesForPatchUpdate.fromJson(reader); +======== deserializedHorizonDbClusterForPatchUpdate.tags = tags; } else if ("properties".equals(fieldName)) { deserializedHorizonDbClusterForPatchUpdate.properties = HorizonDbClusterPropertiesForPatchUpdate.fromJson(reader); +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java } else { reader.skipChildren(); } } +<<<<<<<< HEAD:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbParameterGroupForPatchUpdate.java + return deserializedHorizonDbParameterGroupForPatchUpdate; +======== return deserializedHorizonDbClusterForPatchUpdate; +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/horizondb/azure-resourcemanager-horizondb/src/main/java/com/azure/resourcemanager/horizondb/models/HorizonDbClusterForPatchUpdate.java }); } } diff --git a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/fluent/PublicCloudConnectorsClient.java b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/fluent/PublicCloudConnectorsClient.java index de28223e321b..7a7b01a11a43 100644 --- a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/fluent/PublicCloudConnectorsClient.java +++ b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/fluent/PublicCloudConnectorsClient.java @@ -221,7 +221,7 @@ PublicCloudConnectorInner update(String resourceGroupName, String publicCloudCon * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> @@ -236,7 +236,7 @@ PublicCloudConnectorInner update(String resourceGroupName, String publicCloudCon * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> @@ -250,7 +250,7 @@ PublicCloudConnectorInner update(String resourceGroupName, String publicCloudCon * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner testPermissions(String resourceGroupName, String publicCloudConnector); @@ -264,7 +264,7 @@ PublicCloudConnectorInner update(String resourceGroupName, String publicCloudCon * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner testPermissions(String resourceGroupName, String publicCloudConnector, Context context); diff --git a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/fluent/SolutionConfigurationsClient.java b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/fluent/SolutionConfigurationsClient.java index 0f5b13b89318..08e49397d3ad 100644 --- a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/fluent/SolutionConfigurationsClient.java +++ b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/fluent/SolutionConfigurationsClient.java @@ -168,7 +168,7 @@ SolutionConfigurationInner update(String resourceUri, String solutionConfigurati * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginSyncNow(String resourceUri, @@ -183,7 +183,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginSyncNow(String resourceUri, @@ -197,7 +197,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner syncNow(String resourceUri, String solutionConfiguration); @@ -211,7 +211,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner syncNow(String resourceUri, String solutionConfiguration, Context context); diff --git a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/implementation/PublicCloudConnectorsClientImpl.java b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/implementation/PublicCloudConnectorsClientImpl.java index 5cea8112eafa..1ebd1abc0093 100644 --- a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/implementation/PublicCloudConnectorsClientImpl.java +++ b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/implementation/PublicCloudConnectorsClientImpl.java @@ -842,7 +842,8 @@ public PagedIterable list(Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the current status of an async operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> testPermissionsWithResponseAsync(String resourceGroupName, @@ -862,7 +863,7 @@ private Mono>> testPermissionsWithResponseAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response testPermissionsWithResponse(String resourceGroupName, String publicCloudConnector) { @@ -880,7 +881,7 @@ private Response testPermissionsWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response testPermissionsWithResponse(String resourceGroupName, String publicCloudConnector, @@ -898,7 +899,7 @@ private Response testPermissionsWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -918,7 +919,7 @@ private Response testPermissionsWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -937,7 +938,7 @@ private Response testPermissionsWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -955,7 +956,7 @@ private Response testPermissionsWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono testPermissionsAsync(String resourceGroupName, @@ -972,7 +973,7 @@ private Mono testPermissionsAsync(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner testPermissions(String resourceGroupName, String publicCloudConnector) { @@ -988,7 +989,7 @@ public OperationStatusResultInner testPermissions(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner testPermissions(String resourceGroupName, String publicCloudConnector, diff --git a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/implementation/SolutionConfigurationsClientImpl.java b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/implementation/SolutionConfigurationsClientImpl.java index 798366923e7e..88d9c4397324 100644 --- a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/implementation/SolutionConfigurationsClientImpl.java +++ b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/implementation/SolutionConfigurationsClientImpl.java @@ -607,7 +607,8 @@ public PagedIterable list(String resourceUri, Contex * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the current status of an async operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> syncNowWithResponseAsync(String resourceUri, @@ -627,7 +628,7 @@ private Mono>> syncNowWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response syncNowWithResponse(String resourceUri, String solutionConfiguration) { @@ -645,7 +646,7 @@ private Response syncNowWithResponse(String resourceUri, String solu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response syncNowWithResponse(String resourceUri, String solutionConfiguration, @@ -663,7 +664,7 @@ private Response syncNowWithResponse(String resourceUri, String solu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -682,7 +683,7 @@ private Response syncNowWithResponse(String resourceUri, String solu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -701,7 +702,7 @@ private Response syncNowWithResponse(String resourceUri, String solu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -719,7 +720,7 @@ private Response syncNowWithResponse(String resourceUri, String solu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono syncNowAsync(String resourceUri, String solutionConfiguration) { @@ -735,7 +736,7 @@ private Mono syncNowAsync(String resourceUri, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner syncNow(String resourceUri, String solutionConfiguration) { @@ -751,7 +752,7 @@ public OperationStatusResultInner syncNow(String resourceUri, String solutionCon * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner syncNow(String resourceUri, String solutionConfiguration, Context context) { diff --git a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/PublicCloudConnector.java b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/PublicCloudConnector.java index fcf4f1328f13..10cb05922789 100644 --- a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/PublicCloudConnector.java +++ b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/PublicCloudConnector.java @@ -268,7 +268,7 @@ interface WithProperties { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult testPermissions(); @@ -279,7 +279,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult testPermissions(Context context); } diff --git a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/PublicCloudConnectors.java b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/PublicCloudConnectors.java index b6d42a98c902..ddadab694633 100644 --- a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/PublicCloudConnectors.java +++ b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/PublicCloudConnectors.java @@ -114,7 +114,7 @@ Response deleteByResourceGroupWithResponse(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult testPermissions(String resourceGroupName, String publicCloudConnector); @@ -127,7 +127,7 @@ Response deleteByResourceGroupWithResponse(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult testPermissions(String resourceGroupName, String publicCloudConnector, Context context); diff --git a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/SolutionConfiguration.java b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/SolutionConfiguration.java index e5771665dc65..448f94b1a81c 100644 --- a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/SolutionConfiguration.java +++ b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/SolutionConfiguration.java @@ -183,7 +183,7 @@ interface WithProperties { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult syncNow(); @@ -194,7 +194,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult syncNow(Context context); } diff --git a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/SolutionConfigurations.java b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/SolutionConfigurations.java index ad412bb72983..4d0b37392030 100644 --- a/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/SolutionConfigurations.java +++ b/sdk/hybridconnectivity/azure-resourcemanager-hybridconnectivity/src/main/java/com/azure/resourcemanager/hybridconnectivity/models/SolutionConfigurations.java @@ -92,7 +92,7 @@ public interface SolutionConfigurations { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult syncNow(String resourceUri, String solutionConfiguration); @@ -105,7 +105,7 @@ public interface SolutionConfigurations { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult syncNow(String resourceUri, String solutionConfiguration, Context context); diff --git a/sdk/keyvault/azure-security-keyvault-administration/CHANGELOG.md b/sdk/keyvault/azure-security-keyvault-administration/CHANGELOG.md index ebbd14aa931f..9a4cfba1f83c 100644 --- a/sdk/keyvault/azure-security-keyvault-administration/CHANGELOG.md +++ b/sdk/keyvault/azure-security-keyvault-administration/CHANGELOG.md @@ -3,6 +3,7 @@ ## 4.8.0-beta.1 (Unreleased) ### Features Added +- Added support for service version `2025-07-01` ### Breaking Changes diff --git a/sdk/keyvault/azure-security-keyvault-administration/assets.json b/sdk/keyvault/azure-security-keyvault-administration/assets.json index 2a6a57ef92f9..2711c019547e 100644 --- a/sdk/keyvault/azure-security-keyvault-administration/assets.json +++ b/sdk/keyvault/azure-security-keyvault-administration/assets.json @@ -2,5 +2,5 @@ "AssetsRepo": "Azure/azure-sdk-assets", "AssetsRepoPrefixPath": "java", "TagPrefix": "java/keyvault/azure-security-keyvault-administration", - "Tag": "java/keyvault/azure-security-keyvault-administration_17468e7c72" + "Tag": "java/keyvault/azure-security-keyvault-administration_116d3d6f48" } diff --git a/sdk/keyvault/azure-security-keyvault-administration/customizations/src/main/java/AdministrationCustomizations.java b/sdk/keyvault/azure-security-keyvault-administration/customizations/src/main/java/AdministrationCustomizations.java index b50604fc53f9..18d4a480faa2 100644 --- a/sdk/keyvault/azure-security-keyvault-administration/customizations/src/main/java/AdministrationCustomizations.java +++ b/sdk/keyvault/azure-security-keyvault-administration/customizations/src/main/java/AdministrationCustomizations.java @@ -121,7 +121,7 @@ private static void customizeServiceVersion(LibraryCustomization customization) .addImplementedType("ServiceVersion") .setJavadocComment("The versions of Azure Key Vault supported by this client library."); - for (String version : Arrays.asList("7.2", "7.3", "7.4", "7.5", "7.6")) { + for (String version : Arrays.asList("7.2", "7.3", "7.4", "7.5", "7.6", "2025-07-01")) { enumDeclaration.addEnumConstant("V" + version.replace('.', '_').replace('-', '_').toUpperCase()) .setJavadocComment("Service version {@code " + version + "}.") .addArgument(new StringLiteralExpr(version)); @@ -144,7 +144,7 @@ private static void customizeServiceVersion(LibraryCustomization customization) .setJavadocComment(new Javadoc( parseText("Gets the latest service version supported by this client library.")) .addBlockTag("return", "The latest {@link KeyVaultAdministrationServiceVersion}.")) - .setBody(StaticJavaParser.parseBlock("{ return V7_6; }")); + .setBody(StaticJavaParser.parseBlock("{ return V2025_07_01; }")); customization.getRawEditor() .addFile("src/main/java/com/azure/security/keyvault/administration/KeyVaultAdministrationServiceVersion.java", diff --git a/sdk/keyvault/azure-security-keyvault-administration/src/main/java/com/azure/security/keyvault/administration/KeyVaultAdministrationServiceVersion.java b/sdk/keyvault/azure-security-keyvault-administration/src/main/java/com/azure/security/keyvault/administration/KeyVaultAdministrationServiceVersion.java index 393bd9eb2f33..948e4cacdd18 100644 --- a/sdk/keyvault/azure-security-keyvault-administration/src/main/java/com/azure/security/keyvault/administration/KeyVaultAdministrationServiceVersion.java +++ b/sdk/keyvault/azure-security-keyvault-administration/src/main/java/com/azure/security/keyvault/administration/KeyVaultAdministrationServiceVersion.java @@ -29,7 +29,11 @@ public enum KeyVaultAdministrationServiceVersion implements ServiceVersion { /** * Service version {@code 7.6}. */ - V7_6("7.6"); + V7_6("7.6"), + /** + * Service version {@code 2025-07-01}. + */ + V2025_07_01("2025-07-01"); private final String version; @@ -51,6 +55,6 @@ public String getVersion() { * @return The latest {@link KeyVaultAdministrationServiceVersion}. */ public static KeyVaultAdministrationServiceVersion getLatest() { - return V7_6; + return V2025_07_01; } } diff --git a/sdk/keyvault/azure-security-keyvault-administration/src/main/java/com/azure/security/keyvault/administration/implementation/KeyVaultAdministrationClientImpl.java b/sdk/keyvault/azure-security-keyvault-administration/src/main/java/com/azure/security/keyvault/administration/implementation/KeyVaultAdministrationClientImpl.java index 108662d86ebd..5a522c7b92c6 100644 --- a/sdk/keyvault/azure-security-keyvault-administration/src/main/java/com/azure/security/keyvault/administration/implementation/KeyVaultAdministrationClientImpl.java +++ b/sdk/keyvault/azure-security-keyvault-administration/src/main/java/com/azure/security/keyvault/administration/implementation/KeyVaultAdministrationClientImpl.java @@ -58,11 +58,12 @@ public final class KeyVaultAdministrationClientImpl { private final KeyVaultAdministrationClientService service; /** + * The base URL of the Key Vault instance (e.g. https://myvault.vault.azure.net/). */ private final String vaultBaseUrl; /** - * Gets. + * Gets The base URL of the Key Vault instance (e.g. https://myvault.vault.azure.net/). * * @return the vaultBaseUrl value. */ @@ -143,7 +144,7 @@ public RoleAssignmentsImpl getRoleAssignments() { /** * Initializes an instance of KeyVaultAdministrationClient client. * - * @param vaultBaseUrl + * @param vaultBaseUrl The base URL of the Key Vault instance (e.g. https://myvault.vault.azure.net/). * @param serviceVersion Service version. */ public KeyVaultAdministrationClientImpl(String vaultBaseUrl, KeyVaultAdministrationServiceVersion serviceVersion) { @@ -155,7 +156,7 @@ public KeyVaultAdministrationClientImpl(String vaultBaseUrl, KeyVaultAdministrat * Initializes an instance of KeyVaultAdministrationClient client. * * @param httpPipeline The HTTP pipeline to send requests through. - * @param vaultBaseUrl + * @param vaultBaseUrl The base URL of the Key Vault instance (e.g. https://myvault.vault.azure.net/). * @param serviceVersion Service version. */ public KeyVaultAdministrationClientImpl(HttpPipeline httpPipeline, String vaultBaseUrl, @@ -168,7 +169,7 @@ public KeyVaultAdministrationClientImpl(HttpPipeline httpPipeline, String vaultB * * @param httpPipeline The HTTP pipeline to send requests through. * @param serializerAdapter The serializer to serialize an object into a string. - * @param vaultBaseUrl + * @param vaultBaseUrl The base URL of the Key Vault instance (e.g. https://myvault.vault.azure.net/). * @param serviceVersion Service version. */ public KeyVaultAdministrationClientImpl(HttpPipeline httpPipeline, SerializerAdapter serializerAdapter, diff --git a/sdk/keyvault/azure-security-keyvault-administration/src/test/java/com/azure/security/keyvault/administration/KeyVaultBackupClientTestBase.java b/sdk/keyvault/azure-security-keyvault-administration/src/test/java/com/azure/security/keyvault/administration/KeyVaultBackupClientTestBase.java index b72216ac1660..7e869e9c2150 100644 --- a/sdk/keyvault/azure-security-keyvault-administration/src/test/java/com/azure/security/keyvault/administration/KeyVaultBackupClientTestBase.java +++ b/sdk/keyvault/azure-security-keyvault-administration/src/test/java/com/azure/security/keyvault/administration/KeyVaultBackupClientTestBase.java @@ -19,7 +19,7 @@ public abstract class KeyVaultBackupClientTestBase extends KeyVaultAdministrationClientTestBase { protected final String blobStorageUrl = IS_MANAGED_HSM_DEPLOYED ? getStorageEndpoint() + Configuration.getGlobalConfiguration().get("BLOB_CONTAINER_NAME") - : "https://tca8ce130bfb04000prim.blob.core.windows.net/backup"; + : "https://khasdkprim.blob.core.windows.net/backup"; protected final String sasToken = IS_MANAGED_HSM_DEPLOYED ? generateSasToken() : "REDACTED"; KeyVaultBackupClientBuilder getClientBuilder(HttpClient httpClient, boolean forCleanup) { diff --git a/sdk/keyvault/azure-security-keyvault-administration/tsp-location.yaml b/sdk/keyvault/azure-security-keyvault-administration/tsp-location.yaml index df51921bcdf7..4012502ec1eb 100644 --- a/sdk/keyvault/azure-security-keyvault-administration/tsp-location.yaml +++ b/sdk/keyvault/azure-security-keyvault-administration/tsp-location.yaml @@ -1,9 +1,4 @@ -directory: specification/keyvault/Security.KeyVault.Administration -commit: 396ab529763b7195ab089f58e2eefb011e1b290d +directory: specification/keyvault/data-plane/Administration +commit: f6bd06be22baf3a18504ffef0f590230850953e5 repo: Azure/azure-rest-api-specs -additionalDirectories: -- specification/keyvault/Security.KeyVault.BackupRestore/ -- specification/keyvault/Security.KeyVault.Common/ -- specification/keyvault/Security.KeyVault.RBAC/ -- specification/keyvault/Security.KeyVault.Settings/ cleanup: true diff --git a/sdk/keyvault/azure-security-keyvault-keys/CHANGELOG.md b/sdk/keyvault/azure-security-keyvault-keys/CHANGELOG.md index e4feb32ceb01..7292bcb58c68 100644 --- a/sdk/keyvault/azure-security-keyvault-keys/CHANGELOG.md +++ b/sdk/keyvault/azure-security-keyvault-keys/CHANGELOG.md @@ -3,6 +3,7 @@ ## 4.11.0-beta.1 (Unreleased) ### Features Added +- Added support for service version `2025-07-01` ### Breaking Changes diff --git a/sdk/keyvault/azure-security-keyvault-keys/assets.json b/sdk/keyvault/azure-security-keyvault-keys/assets.json index 681ca06d4116..ea29a1ef9d50 100644 --- a/sdk/keyvault/azure-security-keyvault-keys/assets.json +++ b/sdk/keyvault/azure-security-keyvault-keys/assets.json @@ -2,5 +2,5 @@ "AssetsRepo": "Azure/azure-sdk-assets", "AssetsRepoPrefixPath": "java", "TagPrefix": "java/keyvault/azure-security-keyvault-keys", - "Tag": "java/keyvault/azure-security-keyvault-keys_14cd1f2cb8" + "Tag": "java/keyvault/azure-security-keyvault-keys_a67026297a" } diff --git a/sdk/keyvault/azure-security-keyvault-keys/customizations/src/main/java/KeysCustomizations.java b/sdk/keyvault/azure-security-keyvault-keys/customizations/src/main/java/KeysCustomizations.java index d9dd41d6bc6d..5232b36c6be5 100644 --- a/sdk/keyvault/azure-security-keyvault-keys/customizations/src/main/java/KeysCustomizations.java +++ b/sdk/keyvault/azure-security-keyvault-keys/customizations/src/main/java/KeysCustomizations.java @@ -55,7 +55,7 @@ private static void customizeServiceVersion(LibraryCustomization customization) .addImplementedType("ServiceVersion") .setJavadocComment("The versions of Azure Key Vault Keys supported by this client library."); - for (String version : Arrays.asList("7.0", "7.1", "7.2", "7.3", "7.4", "7.5", "7.6")) { + for (String version : Arrays.asList("7.0", "7.1", "7.2", "7.3", "7.4", "7.5", "7.6", "2025-07-01")) { enumDeclaration.addEnumConstant("V" + version.replace('.', '_').replace('-', '_').toUpperCase()) .setJavadocComment("Service version {@code " + version + "}.") .addArgument(new StringLiteralExpr(version)); @@ -76,7 +76,7 @@ private static void customizeServiceVersion(LibraryCustomization customization) .setType("KeyServiceVersion") .setJavadocComment(new Javadoc(parseText("Gets the latest service version supported by this client library.")) .addBlockTag("return", "The latest {@link KeyServiceVersion}.")) - .setBody(StaticJavaParser.parseBlock("{ return V7_6; }")); + .setBody(StaticJavaParser.parseBlock("{ return V2025_07_01; }")); customization.getRawEditor() .addFile("src/main/java/com/azure/security/keyvault/keys/KeyServiceVersion.java", diff --git a/sdk/keyvault/azure-security-keyvault-keys/src/main/java/com/azure/security/keyvault/keys/KeyServiceVersion.java b/sdk/keyvault/azure-security-keyvault-keys/src/main/java/com/azure/security/keyvault/keys/KeyServiceVersion.java index 39b4a4ec93a9..c0edfa751e0e 100644 --- a/sdk/keyvault/azure-security-keyvault-keys/src/main/java/com/azure/security/keyvault/keys/KeyServiceVersion.java +++ b/sdk/keyvault/azure-security-keyvault-keys/src/main/java/com/azure/security/keyvault/keys/KeyServiceVersion.java @@ -37,7 +37,11 @@ public enum KeyServiceVersion implements ServiceVersion { /** * Service version {@code 7.6}. */ - V7_6("7.6"); + V7_6("7.6"), + /** + * Service version {@code 2025-07-01}. + */ + V2025_07_01("2025-07-01"); private final String version; @@ -59,6 +63,6 @@ public String getVersion() { * @return The latest {@link KeyServiceVersion}. */ public static KeyServiceVersion getLatest() { - return V7_6; + return V2025_07_01; } } diff --git a/sdk/keyvault/azure-security-keyvault-keys/src/main/java/com/azure/security/keyvault/keys/cryptography/CryptographyServiceVersion.java b/sdk/keyvault/azure-security-keyvault-keys/src/main/java/com/azure/security/keyvault/keys/cryptography/CryptographyServiceVersion.java index ea3480fff927..4fc66a84c555 100644 --- a/sdk/keyvault/azure-security-keyvault-keys/src/main/java/com/azure/security/keyvault/keys/cryptography/CryptographyServiceVersion.java +++ b/sdk/keyvault/azure-security-keyvault-keys/src/main/java/com/azure/security/keyvault/keys/cryptography/CryptographyServiceVersion.java @@ -42,7 +42,12 @@ public enum CryptographyServiceVersion implements ServiceVersion { /** * Service version {@code 7.6}. */ - V7_6("7.6"); + V7_6("7.6"), + + /** + * Service version {@code 2025-07-01}. + */ + V2025_07_01("2025-07-01"); private final String version; @@ -64,6 +69,6 @@ public String getVersion() { * @return the latest {@link CryptographyServiceVersion} */ public static CryptographyServiceVersion getLatest() { - return V7_6; + return V2025_07_01; } } diff --git a/sdk/keyvault/azure-security-keyvault-keys/src/main/java/com/azure/security/keyvault/keys/implementation/KeyClientImpl.java b/sdk/keyvault/azure-security-keyvault-keys/src/main/java/com/azure/security/keyvault/keys/implementation/KeyClientImpl.java index 559c40225236..e8f3f1f27122 100644 --- a/sdk/keyvault/azure-security-keyvault-keys/src/main/java/com/azure/security/keyvault/keys/implementation/KeyClientImpl.java +++ b/sdk/keyvault/azure-security-keyvault-keys/src/main/java/com/azure/security/keyvault/keys/implementation/KeyClientImpl.java @@ -583,7 +583,7 @@ Response getDeletedKeySync(@HostParam("vaultBaseUrl") String vaultBa @UnexpectedResponseExceptionType(HttpResponseException.class) Mono> purgeDeletedKey(@HostParam("vaultBaseUrl") String vaultBaseUrl, @QueryParam("api-version") String apiVersion, @PathParam("key-name") String keyName, - @HeaderParam("Accept") String accept, RequestOptions requestOptions, Context context); + RequestOptions requestOptions, Context context); @Delete("/deletedkeys/{key-name}") @ExpectedResponses({ 204 }) @@ -593,7 +593,7 @@ Mono> purgeDeletedKey(@HostParam("vaultBaseUrl") String vaultBase @UnexpectedResponseExceptionType(HttpResponseException.class) Response purgeDeletedKeySync(@HostParam("vaultBaseUrl") String vaultBaseUrl, @QueryParam("api-version") String apiVersion, @PathParam("key-name") String keyName, - @HeaderParam("Accept") String accept, RequestOptions requestOptions, Context context); + RequestOptions requestOptions, Context context); @Post("/deletedkeys/{key-name}/recover") @ExpectedResponses({ 200 }) @@ -3921,9 +3921,8 @@ public Response getDeletedKeyWithResponse(String keyName, RequestOpt */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> purgeDeletedKeyWithResponseAsync(String keyName, RequestOptions requestOptions) { - final String accept = "application/json"; return FluxUtil.withContext(context -> service.purgeDeletedKey(this.getVaultBaseUrl(), - this.getServiceVersion().getVersion(), keyName, accept, requestOptions, context)); + this.getServiceVersion().getVersion(), keyName, requestOptions, context)); } /** @@ -3943,9 +3942,8 @@ public Mono> purgeDeletedKeyWithResponseAsync(String keyName, Req */ @ServiceMethod(returns = ReturnType.SINGLE) public Response purgeDeletedKeyWithResponse(String keyName, RequestOptions requestOptions) { - final String accept = "application/json"; return service.purgeDeletedKeySync(this.getVaultBaseUrl(), this.getServiceVersion().getVersion(), keyName, - accept, requestOptions, Context.NONE); + requestOptions, Context.NONE); } /** diff --git a/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyAsyncClientManagedHsmTest.java b/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyAsyncClientManagedHsmTest.java index 091fd3df1620..f65a751d3156 100644 --- a/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyAsyncClientManagedHsmTest.java +++ b/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyAsyncClientManagedHsmTest.java @@ -24,8 +24,8 @@ @EnabledIf("shouldRunHsmTest") public class KeyAsyncClientManagedHsmTest extends KeyAsyncClientTest implements KeyClientManagedHsmTestBase { public KeyAsyncClientManagedHsmTest() { - this.isHsmEnabled = Configuration.getGlobalConfiguration().get("AZURE_MANAGEDHSM_ENDPOINT") != null; this.runManagedHsmTest = shouldRunHsmTest(); + this.isHsmEnabled = this.runManagedHsmTest; } public static boolean shouldRunHsmTest() { @@ -43,6 +43,169 @@ public void createRsaKey(HttpClient httpClient, KeyServiceVersion serviceVersion super.createRsaKey(httpClient, serviceVersion); } + /** + * Tests that a key can be created in the key vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void createKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.createKey(httpClient, serviceVersion); + } + + /** + * Tests that a key can be created in the key vault while using a different tenant ID than the one that will be + * provided in the authentication challenge. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void createKeyWithMultipleTenants(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.createKeyWithMultipleTenants(httpClient, serviceVersion); + } + + /** + * Tests that a key is able to be updated when it exists. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void updateKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.updateKey(httpClient, serviceVersion); + } + + /** + * Tests that a key is not able to be updated when it is disabled. 403 error is expected. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void updateDisabledKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.updateDisabledKey(httpClient, serviceVersion); + } + + /** + * Tests that an existing key can be retrieved. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void getKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.getKey(httpClient, serviceVersion); + } + + /** + * Tests that a specific version of the key can be retrieved. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void getKeySpecificVersion(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.getKeySpecificVersion(httpClient, serviceVersion); + } + + /** + * Tests that an existing key can be deleted. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void deleteKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.deleteKey(httpClient, serviceVersion); + } + + /** + * Tests that a deleted key can be retrieved on a soft-delete enabled vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void getDeletedKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.getDeletedKey(httpClient, serviceVersion); + } + + /** + * Tests that a deleted key can be recovered on a soft-delete enabled vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void recoverDeletedKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.recoverDeletedKey(httpClient, serviceVersion); + } + + /** + * Tests that keys can be listed in the key vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void listKeys(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.listKeys(httpClient, serviceVersion); + } + + /** + * Tests that key versions can be listed in the key vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void listKeyVersions(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.listKeyVersions(httpClient, serviceVersion); + } + + /** + * Tests that deleted keys can be listed in the key vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void listDeletedKeys(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.listDeletedKeys(httpClient, serviceVersion); + } + + /** + * Tests that a key can be backed up in the key vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void backupKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.backupKey(httpClient, serviceVersion); + } + + /** + * Tests that a key can be backed up in the key vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void restoreKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.restoreKey(httpClient, serviceVersion); + } + + /** + * Tests that a {@link com.azure.security.keyvault.keys.cryptography.CryptographyClient} can be created for a given + * key using a {@link KeyClient}. Also tests that cryptographic operations can be performed with said cryptography + * client. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void getCryptographyAsyncClientAndEncryptDecrypt(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.getCryptographyAsyncClientAndEncryptDecrypt(httpClient, serviceVersion); + } + + /** + * Tests that fetching the key rotation policy of a non-existent key throws. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void getKeyRotationPolicyWithNoPolicySet(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.getKeyRotationPolicyWithNoPolicySet(httpClient, serviceVersion); + } + /** * Tests that an RSA key with a public exponent can be created in the key vault. */ diff --git a/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyClientManagedHsmTest.java b/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyClientManagedHsmTest.java index 3e2ee0d25371..96bc548f66cd 100644 --- a/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyClientManagedHsmTest.java +++ b/sdk/keyvault/azure-security-keyvault-keys/src/test/java/com/azure/security/keyvault/keys/KeyClientManagedHsmTest.java @@ -24,8 +24,8 @@ @EnabledIf("shouldRunHsmTest") public class KeyClientManagedHsmTest extends KeyClientTest implements KeyClientManagedHsmTestBase { public KeyClientManagedHsmTest() { - this.isHsmEnabled = Configuration.getGlobalConfiguration().get("AZURE_MANAGEDHSM_ENDPOINT") != null; this.runManagedHsmTest = shouldRunHsmTest(); + this.isHsmEnabled = this.runManagedHsmTest; } public static boolean shouldRunHsmTest() { @@ -61,6 +61,169 @@ public void createRsaKeyWithPublicExponent(HttpClient httpClient, KeyServiceVers }); } + /** + * Tests that a key can be created in the key vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void createKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.createKey(httpClient, serviceVersion); + } + + /** + * Tests that a key can be created in the key vault while using a different tenant ID than the one that will be + * provided in the authentication challenge. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void createKeyWithMultipleTenants(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.createKeyWithMultipleTenants(httpClient, serviceVersion); + } + + /** + * Tests that a key is able to be updated when it exists. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void updateKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.updateKey(httpClient, serviceVersion); + } + + /** + * Tests that a key is not able to be updated when it is disabled. 403 error is expected. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void updateDisabledKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.updateDisabledKey(httpClient, serviceVersion); + } + + /** + * Tests that an existing key can be retrieved. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void getKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.getKey(httpClient, serviceVersion); + } + + /** + * Tests that a specific version of the key can be retrieved. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void getKeySpecificVersion(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.getKeySpecificVersion(httpClient, serviceVersion); + } + + /** + * Tests that an existing key can be deleted. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void deleteKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.deleteKey(httpClient, serviceVersion); + } + + /** + * Tests that a deleted key can be retrieved on a soft-delete enabled vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void getDeletedKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.getDeletedKey(httpClient, serviceVersion); + } + + /** + * Tests that a deleted key can be recovered on a soft-delete enabled vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void recoverDeletedKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.recoverDeletedKey(httpClient, serviceVersion); + } + + /** + * Tests that keys can be listed in the key vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void listKeys(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.listKeys(httpClient, serviceVersion); + } + + /** + * Tests that key versions can be listed in the key vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void listKeyVersions(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.listKeyVersions(httpClient, serviceVersion); + } + + /** + * Tests that deleted keys can be listed in the key vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void listDeletedKeys(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.listDeletedKeys(httpClient, serviceVersion); + } + + /** + * Tests that a key can be backed up in the key vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void backupKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.backupKey(httpClient, serviceVersion); + } + + /** + * Tests that a key can be backed up in the key vault. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void restoreKey(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.restoreKey(httpClient, serviceVersion); + } + + /** + * Tests that a {@link com.azure.security.keyvault.keys.cryptography.CryptographyClient} can be created for a given + * key using a {@link KeyClient}. Also tests that cryptographic operations can be performed with said cryptography + * client. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void getCryptographyClientAndEncryptDecrypt(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.getCryptographyClientAndEncryptDecrypt(httpClient, serviceVersion); + } + + /** + * Tests that fetching the key rotation policy of a non-existent key throws. + */ + @Override + @ParameterizedTest(name = DISPLAY_NAME_WITH_ARGUMENTS) + @MethodSource("getTestParameters") + public void getKeyRotationPolicyWithNoPolicySet(HttpClient httpClient, KeyServiceVersion serviceVersion) { + super.getKeyRotationPolicyWithNoPolicySet(httpClient, serviceVersion); + } + /** * Tests that a symmetric key of a default is created. */ diff --git a/sdk/keyvault/azure-security-keyvault-keys/tsp-location.yaml b/sdk/keyvault/azure-security-keyvault-keys/tsp-location.yaml index 6daf566b3dc3..dcbe3184c039 100644 --- a/sdk/keyvault/azure-security-keyvault-keys/tsp-location.yaml +++ b/sdk/keyvault/azure-security-keyvault-keys/tsp-location.yaml @@ -1,6 +1,4 @@ -directory: specification/keyvault/Security.KeyVault.Keys -commit: 396ab529763b7195ab089f58e2eefb011e1b290d +directory: specification/keyvault/data-plane/Keys +commit: f6bd06be22baf3a18504ffef0f590230850953e5 repo: Azure/azure-rest-api-specs cleanup: true -additionalDirectories: -- specification/keyvault/Security.KeyVault.Common/ diff --git a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/fluent/CachesClient.java b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/fluent/CachesClient.java index a5e501f31e59..1231615ec3c0 100644 --- a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/fluent/CachesClient.java +++ b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/fluent/CachesClient.java @@ -328,7 +328,7 @@ PeeringPassphrasesInner listPeeringPassphrases(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cache resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginPoolChange(String resourceGroupName, String accountName, String poolName, @@ -346,7 +346,7 @@ SyncPoller, Void> beginPoolChange(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cache resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginPoolChange(String resourceGroupName, String accountName, String poolName, @@ -395,7 +395,7 @@ void poolChange(String resourceGroupName, String accountName, String poolName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cache resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginResetSmbPassword(String resourceGroupName, String accountName, @@ -412,7 +412,7 @@ SyncPoller, Void> beginResetSmbPassword(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cache resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginResetSmbPassword(String resourceGroupName, String accountName, diff --git a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/fluent/NetAppResourcesClient.java b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/fluent/NetAppResourcesClient.java index 23e2ffb36e63..fb2efd220dff 100644 --- a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/fluent/NetAppResourcesClient.java +++ b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/fluent/NetAppResourcesClient.java @@ -190,7 +190,7 @@ Response queryNetworkSiblingSetWithResponse(String locat * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of describes the contents of a network sibling set. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, NetworkSiblingSetInner> beginUpdateNetworkSiblingSet(String location, @@ -207,7 +207,7 @@ SyncPoller, NetworkSiblingSetInner> beginUpda * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of describes the contents of a network sibling set. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, NetworkSiblingSetInner> beginUpdateNetworkSiblingSet(String location, @@ -223,7 +223,7 @@ SyncPoller, NetworkSiblingSetInner> beginUpda * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes the contents of a network sibling set. */ @ServiceMethod(returns = ReturnType.SINGLE) NetworkSiblingSetInner updateNetworkSiblingSet(String location, UpdateNetworkSiblingSetRequest body); @@ -239,7 +239,7 @@ SyncPoller, NetworkSiblingSetInner> beginUpda * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes the contents of a network sibling set. */ @ServiceMethod(returns = ReturnType.SINGLE) NetworkSiblingSetInner updateNetworkSiblingSet(String location, UpdateNetworkSiblingSetRequest body, diff --git a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/fluent/VolumesClient.java b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/fluent/VolumesClient.java index 5a2908b27479..5edc7f52bc46 100644 --- a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/fluent/VolumesClient.java +++ b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/fluent/VolumesClient.java @@ -313,7 +313,7 @@ void delete(String resourceGroupName, String accountName, String poolName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of volume resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, VolumeInner> beginPopulateAvailabilityZone(String resourceGroupName, @@ -330,7 +330,7 @@ SyncPoller, VolumeInner> beginPopulateAvailabilityZone(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of volume resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, VolumeInner> beginPopulateAvailabilityZone(String resourceGroupName, @@ -346,7 +346,7 @@ SyncPoller, VolumeInner> beginPopulateAvailabilityZone(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ @ServiceMethod(returns = ReturnType.SINGLE) VolumeInner populateAvailabilityZone(String resourceGroupName, String accountName, String poolName, @@ -363,7 +363,7 @@ VolumeInner populateAvailabilityZone(String resourceGroupName, String accountNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ @ServiceMethod(returns = ReturnType.SINGLE) VolumeInner populateAvailabilityZone(String resourceGroupName, String accountName, String poolName, @@ -509,7 +509,7 @@ void resetCifsPassword(String resourceGroupName, String accountName, String pool * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of volume resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, VolumeInner> beginSplitCloneFromParent(String resourceGroupName, @@ -526,7 +526,7 @@ SyncPoller, VolumeInner> beginSplitCloneFromParent(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of volume resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, VolumeInner> beginSplitCloneFromParent(String resourceGroupName, @@ -542,7 +542,7 @@ SyncPoller, VolumeInner> beginSplitCloneFromParent(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ @ServiceMethod(returns = ReturnType.SINGLE) VolumeInner splitCloneFromParent(String resourceGroupName, String accountName, String poolName, String volumeName); @@ -558,7 +558,7 @@ SyncPoller, VolumeInner> beginSplitCloneFromParent(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ @ServiceMethod(returns = ReturnType.SINGLE) VolumeInner splitCloneFromParent(String resourceGroupName, String accountName, String poolName, String volumeName, @@ -640,7 +640,7 @@ void breakFileLocks(String resourceGroupName, String accountName, String poolNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of group Id list for Ldap user. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, GetGroupIdListForLdapUserResponseInner> @@ -659,7 +659,7 @@ void breakFileLocks(String resourceGroupName, String accountName, String poolNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of group Id list for Ldap user. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, GetGroupIdListForLdapUserResponseInner> @@ -677,7 +677,7 @@ void breakFileLocks(String resourceGroupName, String accountName, String poolNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return group Id list for Ldap user. */ @ServiceMethod(returns = ReturnType.SINGLE) GetGroupIdListForLdapUserResponseInner listGetGroupIdListForLdapUser(String resourceGroupName, String accountName, @@ -695,7 +695,7 @@ GetGroupIdListForLdapUserResponseInner listGetGroupIdListForLdapUser(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return group Id list for Ldap user. */ @ServiceMethod(returns = ReturnType.SINGLE) GetGroupIdListForLdapUserResponseInner listGetGroupIdListForLdapUser(String resourceGroupName, String accountName, diff --git a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/implementation/CachesClientImpl.java b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/implementation/CachesClientImpl.java index c63d24b8e84b..ada56a110874 100644 --- a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/implementation/CachesClientImpl.java +++ b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/implementation/CachesClientImpl.java @@ -1510,7 +1510,7 @@ public PeeringPassphrasesInner listPeeringPassphrases(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return cache resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> poolChangeWithResponseAsync(String resourceGroupName, String accountName, @@ -1561,7 +1561,7 @@ private Mono>> poolChangeWithResponseAsync(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cache resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response poolChangeWithResponse(String resourceGroupName, String accountName, String poolName, @@ -1616,7 +1616,7 @@ private Response poolChangeWithResponse(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cache resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response poolChangeWithResponse(String resourceGroupName, String accountName, String poolName, @@ -1670,7 +1670,7 @@ private Response poolChangeWithResponse(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of cache resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, Void> beginPoolChangeAsync(String resourceGroupName, String accountName, @@ -1692,7 +1692,7 @@ private PollerFlux, Void> beginPoolChangeAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cache resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginPoolChange(String resourceGroupName, String accountName, @@ -1714,7 +1714,7 @@ public SyncPoller, Void> beginPoolChange(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cache resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginPoolChange(String resourceGroupName, String accountName, @@ -1735,7 +1735,7 @@ public SyncPoller, Void> beginPoolChange(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return A {@link Mono} that completes when a successful response is received. + * @return cache resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono poolChangeAsync(String resourceGroupName, String accountName, String poolName, String cacheName, @@ -1791,7 +1791,7 @@ public void poolChange(String resourceGroupName, String accountName, String pool * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return cache resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> resetSmbPasswordWithResponseAsync(String resourceGroupName, @@ -1834,7 +1834,7 @@ private Mono>> resetSmbPasswordWithResponseAsync(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cache resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response resetSmbPasswordWithResponse(String resourceGroupName, String accountName, @@ -1881,7 +1881,7 @@ private Response resetSmbPasswordWithResponse(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cache resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response resetSmbPasswordWithResponse(String resourceGroupName, String accountName, @@ -1927,7 +1927,7 @@ private Response resetSmbPasswordWithResponse(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of cache resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, Void> beginResetSmbPasswordAsync(String resourceGroupName, String accountName, @@ -1948,7 +1948,7 @@ private PollerFlux, Void> beginResetSmbPasswordAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cache resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginResetSmbPassword(String resourceGroupName, String accountName, @@ -1969,7 +1969,7 @@ public SyncPoller, Void> beginResetSmbPassword(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cache resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginResetSmbPassword(String resourceGroupName, String accountName, @@ -1989,7 +1989,7 @@ public SyncPoller, Void> beginResetSmbPassword(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return A {@link Mono} that completes when a successful response is received. + * @return cache resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono resetSmbPasswordAsync(String resourceGroupName, String accountName, String poolName, diff --git a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/implementation/NetAppResourcesClientImpl.java b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/implementation/NetAppResourcesClientImpl.java index 0aba8830988d..9e260e194233 100644 --- a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/implementation/NetAppResourcesClientImpl.java +++ b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/implementation/NetAppResourcesClientImpl.java @@ -756,7 +756,8 @@ public NetworkSiblingSetInner queryNetworkSiblingSet(String location, QueryNetwo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return describes the contents of a network sibling set along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> updateNetworkSiblingSetWithResponseAsync(String location, @@ -796,7 +797,7 @@ private Mono>> updateNetworkSiblingSetWithResponseAsyn * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return describes the contents of a network sibling set along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response updateNetworkSiblingSetWithResponse(String location, @@ -837,7 +838,7 @@ private Response updateNetworkSiblingSetWithResponse(String location * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return describes the contents of a network sibling set along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response updateNetworkSiblingSetWithResponse(String location, @@ -877,7 +878,7 @@ private Response updateNetworkSiblingSetWithResponse(String location * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of describes the contents of a network sibling set. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, NetworkSiblingSetInner> @@ -898,7 +899,7 @@ private Response updateNetworkSiblingSetWithResponse(String location * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of describes the contents of a network sibling set. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, NetworkSiblingSetInner> @@ -919,7 +920,7 @@ private Response updateNetworkSiblingSetWithResponse(String location * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of describes the contents of a network sibling set. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, NetworkSiblingSetInner> @@ -939,7 +940,7 @@ private Response updateNetworkSiblingSetWithResponse(String location * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return describes the contents of a network sibling set on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono updateNetworkSiblingSetAsync(String location, @@ -957,7 +958,7 @@ private Mono updateNetworkSiblingSetAsync(String locatio * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes the contents of a network sibling set. */ @ServiceMethod(returns = ReturnType.SINGLE) public NetworkSiblingSetInner updateNetworkSiblingSet(String location, UpdateNetworkSiblingSetRequest body) { @@ -975,7 +976,7 @@ public NetworkSiblingSetInner updateNetworkSiblingSet(String location, UpdateNet * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes the contents of a network sibling set. */ @ServiceMethod(returns = ReturnType.SINGLE) public NetworkSiblingSetInner updateNetworkSiblingSet(String location, UpdateNetworkSiblingSetRequest body, diff --git a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/implementation/VolumesClientImpl.java b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/implementation/VolumesClientImpl.java index c3341c15ed5d..c5282f509484 100644 --- a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/implementation/VolumesClientImpl.java +++ b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/implementation/VolumesClientImpl.java @@ -1895,7 +1895,7 @@ public PagedIterable list(String resourceGroupName, String accountN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return volume resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> populateAvailabilityZoneWithResponseAsync(String resourceGroupName, @@ -1939,7 +1939,7 @@ private Mono>> populateAvailabilityZoneWithResponseAsy * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return volume resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response populateAvailabilityZoneWithResponse(String resourceGroupName, String accountName, @@ -1987,7 +1987,7 @@ private Response populateAvailabilityZoneWithResponse(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return volume resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response populateAvailabilityZoneWithResponse(String resourceGroupName, String accountName, @@ -2033,7 +2033,7 @@ private Response populateAvailabilityZoneWithResponse(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of volume resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, VolumeInner> beginPopulateAvailabilityZoneAsync( @@ -2054,7 +2054,7 @@ private PollerFlux, VolumeInner> beginPopulateAvailabili * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of volume resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, VolumeInner> beginPopulateAvailabilityZone(String resourceGroupName, @@ -2076,7 +2076,7 @@ public SyncPoller, VolumeInner> beginPopulateAvailabilit * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of volume resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, VolumeInner> beginPopulateAvailabilityZone(String resourceGroupName, @@ -2097,7 +2097,7 @@ public SyncPoller, VolumeInner> beginPopulateAvailabilit * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return volume resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono populateAvailabilityZoneAsync(String resourceGroupName, String accountName, @@ -2116,7 +2116,7 @@ private Mono populateAvailabilityZoneAsync(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public VolumeInner populateAvailabilityZone(String resourceGroupName, String accountName, String poolName, @@ -2135,7 +2135,7 @@ public VolumeInner populateAvailabilityZone(String resourceGroupName, String acc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public VolumeInner populateAvailabilityZone(String resourceGroupName, String accountName, String poolName, @@ -2680,7 +2680,7 @@ public void resetCifsPassword(String resourceGroupName, String accountName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return volume resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> splitCloneFromParentWithResponseAsync(String resourceGroupName, @@ -2723,7 +2723,7 @@ private Mono>> splitCloneFromParentWithResponseAsync(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return volume resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response splitCloneFromParentWithResponse(String resourceGroupName, String accountName, @@ -2771,7 +2771,7 @@ private Response splitCloneFromParentWithResponse(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return volume resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response splitCloneFromParentWithResponse(String resourceGroupName, String accountName, @@ -2817,7 +2817,7 @@ private Response splitCloneFromParentWithResponse(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of volume resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, VolumeInner> beginSplitCloneFromParentAsync(String resourceGroupName, @@ -2838,7 +2838,7 @@ private PollerFlux, VolumeInner> beginSplitCloneFromPare * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of volume resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, VolumeInner> beginSplitCloneFromParent(String resourceGroupName, @@ -2860,7 +2860,7 @@ public SyncPoller, VolumeInner> beginSplitCloneFromParen * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of volume resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, VolumeInner> beginSplitCloneFromParent(String resourceGroupName, @@ -2881,7 +2881,7 @@ public SyncPoller, VolumeInner> beginSplitCloneFromParen * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return volume resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono splitCloneFromParentAsync(String resourceGroupName, String accountName, String poolName, @@ -2900,7 +2900,7 @@ private Mono splitCloneFromParentAsync(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public VolumeInner splitCloneFromParent(String resourceGroupName, String accountName, String poolName, @@ -2919,7 +2919,7 @@ public VolumeInner splitCloneFromParent(String resourceGroupName, String account * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public VolumeInner splitCloneFromParent(String resourceGroupName, String accountName, String poolName, @@ -3268,7 +3268,7 @@ public void breakFileLocks(String resourceGroupName, String accountName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return group Id list for Ldap user along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> listGetGroupIdListForLdapUserWithResponseAsync(String resourceGroupName, @@ -3319,7 +3319,7 @@ private Mono>> listGetGroupIdListForLdapUserWithRespon * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return group Id list for Ldap user along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response listGetGroupIdListForLdapUserWithResponse(String resourceGroupName, String accountName, @@ -3374,7 +3374,7 @@ private Response listGetGroupIdListForLdapUserWithResponse(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return group Id list for Ldap user along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response listGetGroupIdListForLdapUserWithResponse(String resourceGroupName, String accountName, @@ -3428,7 +3428,7 @@ private Response listGetGroupIdListForLdapUserWithResponse(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of group Id list for Ldap user. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, GetGroupIdListForLdapUserResponseInner> @@ -3452,7 +3452,7 @@ private Response listGetGroupIdListForLdapUserWithResponse(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of group Id list for Ldap user. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, GetGroupIdListForLdapUserResponseInner> @@ -3477,7 +3477,7 @@ private Response listGetGroupIdListForLdapUserWithResponse(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of group Id list for Ldap user. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, GetGroupIdListForLdapUserResponseInner> @@ -3501,7 +3501,7 @@ private Response listGetGroupIdListForLdapUserWithResponse(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return group Id list for Ldap user on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono listGetGroupIdListForLdapUserAsync(String resourceGroupName, @@ -3522,7 +3522,7 @@ private Mono listGetGroupIdListForLdapUs * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return group Id list for Ldap user. */ @ServiceMethod(returns = ReturnType.SINGLE) public GetGroupIdListForLdapUserResponseInner listGetGroupIdListForLdapUser(String resourceGroupName, @@ -3543,7 +3543,7 @@ public GetGroupIdListForLdapUserResponseInner listGetGroupIdListForLdapUser(Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return group Id list for Ldap user. */ @ServiceMethod(returns = ReturnType.SINGLE) public GetGroupIdListForLdapUserResponseInner listGetGroupIdListForLdapUser(String resourceGroupName, diff --git a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/models/NetAppResources.java b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/models/NetAppResources.java index 8c7aed8a91a2..a50f68dec128 100644 --- a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/models/NetAppResources.java +++ b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/models/NetAppResources.java @@ -168,7 +168,7 @@ Response queryNetworkSiblingSetWithResponse(String location, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes the contents of a network sibling set. */ NetworkSiblingSet updateNetworkSiblingSet(String location, UpdateNetworkSiblingSetRequest body); @@ -183,7 +183,7 @@ Response queryNetworkSiblingSetWithResponse(String location, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return describes the contents of a network sibling set. */ NetworkSiblingSet updateNetworkSiblingSet(String location, UpdateNetworkSiblingSetRequest body, Context context); } diff --git a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/models/Volume.java b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/models/Volume.java index 41769afffafc..41c9f87101b2 100644 --- a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/models/Volume.java +++ b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/models/Volume.java @@ -1619,7 +1619,7 @@ interface WithSmbNonBrowsable { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ Volume populateAvailabilityZone(); @@ -1630,7 +1630,7 @@ interface WithSmbNonBrowsable { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ Volume populateAvailabilityZone(Context context); @@ -1678,7 +1678,7 @@ interface WithSmbNonBrowsable { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ Volume splitCloneFromParent(); @@ -1689,7 +1689,7 @@ interface WithSmbNonBrowsable { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ Volume splitCloneFromParent(Context context); @@ -1719,7 +1719,7 @@ interface WithSmbNonBrowsable { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return group Id list for Ldap user. */ GetGroupIdListForLdapUserResponse listGetGroupIdListForLdapUser(GetGroupIdListForLdapUserRequest body); @@ -1731,7 +1731,7 @@ interface WithSmbNonBrowsable { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return group Id list for Ldap user. */ GetGroupIdListForLdapUserResponse listGetGroupIdListForLdapUser(GetGroupIdListForLdapUserRequest body, Context context); diff --git a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/models/Volumes.java b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/models/Volumes.java index e5a0837a8a7c..d4643bf555ed 100644 --- a/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/models/Volumes.java +++ b/sdk/netapp/azure-resourcemanager-netapp/src/main/java/com/azure/resourcemanager/netapp/models/Volumes.java @@ -109,7 +109,7 @@ void delete(String resourceGroupName, String accountName, String poolName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ Volume populateAvailabilityZone(String resourceGroupName, String accountName, String poolName, String volumeName); @@ -124,7 +124,7 @@ void delete(String resourceGroupName, String accountName, String poolName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ Volume populateAvailabilityZone(String resourceGroupName, String accountName, String poolName, String volumeName, Context context); @@ -197,7 +197,7 @@ void resetCifsPassword(String resourceGroupName, String accountName, String pool * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ Volume splitCloneFromParent(String resourceGroupName, String accountName, String poolName, String volumeName); @@ -212,7 +212,7 @@ void resetCifsPassword(String resourceGroupName, String accountName, String pool * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return volume resource. */ Volume splitCloneFromParent(String resourceGroupName, String accountName, String poolName, String volumeName, Context context); @@ -257,7 +257,7 @@ void breakFileLocks(String resourceGroupName, String accountName, String poolNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return group Id list for Ldap user. */ GetGroupIdListForLdapUserResponse listGetGroupIdListForLdapUser(String resourceGroupName, String accountName, String poolName, String volumeName, GetGroupIdListForLdapUserRequest body); @@ -274,7 +274,7 @@ GetGroupIdListForLdapUserResponse listGetGroupIdListForLdapUser(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return group Id list for Ldap user. */ GetGroupIdListForLdapUserResponse listGetGroupIdListForLdapUser(String resourceGroupName, String accountName, String poolName, String volumeName, GetGroupIdListForLdapUserRequest body, Context context); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/NetworkVirtualAppliancesClient.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/NetworkVirtualAppliancesClient.java index a9c5651161b4..f790528b1b7c 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/NetworkVirtualAppliancesClient.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/NetworkVirtualAppliancesClient.java @@ -432,7 +432,8 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances along + * with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> restartWithResponseAsync(String resourceGroupName, @@ -448,7 +449,8 @@ Mono>> restartWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, NetworkVirtualApplianceInstanceIdsInner> @@ -463,7 +465,8 @@ Mono>> restartWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, NetworkVirtualApplianceInstanceIdsInner> @@ -477,7 +480,8 @@ Mono>> restartWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, NetworkVirtualApplianceInstanceIdsInner> @@ -494,7 +498,8 @@ Mono>> restartWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, NetworkVirtualApplianceInstanceIdsInner> @@ -511,7 +516,8 @@ Mono>> restartWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono restartAsync(String resourceGroupName, @@ -525,7 +531,8 @@ Mono restartAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono restartAsync(String resourceGroupName, @@ -539,7 +546,7 @@ Mono restartAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.SINGLE) NetworkVirtualApplianceInstanceIdsInner restart(String resourceGroupName, String networkVirtualApplianceName); @@ -555,7 +562,7 @@ Mono restartAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.SINGLE) NetworkVirtualApplianceInstanceIdsInner restart(String resourceGroupName, String networkVirtualApplianceName, @@ -571,7 +578,8 @@ NetworkVirtualApplianceInstanceIdsInner restart(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances along + * with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> reimageWithResponseAsync(String resourceGroupName, @@ -587,7 +595,8 @@ Mono>> reimageWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, NetworkVirtualApplianceInstanceIdsInner> @@ -602,7 +611,8 @@ Mono>> reimageWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, NetworkVirtualApplianceInstanceIdsInner> @@ -616,7 +626,8 @@ Mono>> reimageWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, NetworkVirtualApplianceInstanceIdsInner> @@ -633,7 +644,8 @@ Mono>> reimageWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, NetworkVirtualApplianceInstanceIdsInner> @@ -650,7 +662,8 @@ Mono>> reimageWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono reimageAsync(String resourceGroupName, @@ -664,7 +677,8 @@ Mono reimageAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono reimageAsync(String resourceGroupName, @@ -678,7 +692,7 @@ Mono reimageAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.SINGLE) NetworkVirtualApplianceInstanceIdsInner reimage(String resourceGroupName, String networkVirtualApplianceName); @@ -694,7 +708,7 @@ Mono reimageAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.SINGLE) NetworkVirtualApplianceInstanceIdsInner reimage(String resourceGroupName, String networkVirtualApplianceName, diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/VpnGatewaysClient.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/VpnGatewaysClient.java index 46f6ba8ac938..4ffd6cc281b6 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/VpnGatewaysClient.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/VpnGatewaysClient.java @@ -464,7 +464,7 @@ VpnGatewayInner updateTags(String resourceGroupName, String gatewayName, TagsObj * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return vpnGateway Resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> resetWithResponseAsync(String resourceGroupName, String gatewayName, @@ -479,7 +479,7 @@ Mono>> resetWithResponseAsync(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of vpnGateway Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, VpnGatewayInner> beginResetAsync(String resourceGroupName, @@ -493,7 +493,7 @@ PollerFlux, VpnGatewayInner> beginResetAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of vpnGateway Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, VpnGatewayInner> beginResetAsync(String resourceGroupName, @@ -507,7 +507,7 @@ PollerFlux, VpnGatewayInner> beginResetAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of vpnGateway Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, VpnGatewayInner> beginReset(String resourceGroupName, String gatewayName); @@ -522,7 +522,7 @@ PollerFlux, VpnGatewayInner> beginResetAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of vpnGateway Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, VpnGatewayInner> beginReset(String resourceGroupName, String gatewayName, @@ -537,7 +537,7 @@ SyncPoller, VpnGatewayInner> beginReset(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return vpnGateway Resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono resetAsync(String resourceGroupName, String gatewayName, String ipConfigurationId); @@ -550,7 +550,7 @@ SyncPoller, VpnGatewayInner> beginReset(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return vpnGateway Resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono resetAsync(String resourceGroupName, String gatewayName); @@ -563,7 +563,7 @@ SyncPoller, VpnGatewayInner> beginReset(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return vpnGateway Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) VpnGatewayInner reset(String resourceGroupName, String gatewayName); @@ -578,7 +578,7 @@ SyncPoller, VpnGatewayInner> beginReset(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return vpnGateway Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) VpnGatewayInner reset(String resourceGroupName, String gatewayName, String ipConfigurationId, Context context); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/AdminRuleCollectionInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/AdminRuleCollectionInner.java index 647cf3430837..0175eabe1c47 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/AdminRuleCollectionInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/AdminRuleCollectionInner.java @@ -36,20 +36,15 @@ public final class AdminRuleCollectionInner extends ChildResource { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of AdminRuleCollectionInner class. */ @@ -85,7 +80,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -95,7 +90,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -105,13 +100,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public AdminRuleCollectionInner withId(String id) { + super.withId(id); + return this; } /** @@ -196,6 +190,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); } @@ -216,14 +211,14 @@ public static AdminRuleCollectionInner fromJson(JsonReader jsonReader) throws IO String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedAdminRuleCollectionInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedAdminRuleCollectionInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedAdminRuleCollectionInner.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedAdminRuleCollectionInner.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedAdminRuleCollectionInner.withId(reader.getString()); } else if ("properties".equals(fieldName)) { deserializedAdminRuleCollectionInner.innerProperties = AdminRuleCollectionPropertiesFormat.fromJson(reader); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/BaseAdminRuleInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/BaseAdminRuleInner.java index 7e697d61f6cd..35cc10069aeb 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/BaseAdminRuleInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/BaseAdminRuleInner.java @@ -4,7 +4,7 @@ package com.azure.resourcemanager.network.fluent.models; -import com.azure.core.annotation.Immutable; +import com.azure.core.annotation.Fluent; import com.azure.core.management.SystemData; import com.azure.json.JsonReader; import com.azure.json.JsonToken; @@ -18,7 +18,7 @@ /** * Network base admin rule. */ -@Immutable +@Fluent public class BaseAdminRuleInner extends ChildResource { /* * Whether the rule is custom or default. @@ -36,20 +36,15 @@ public class BaseAdminRuleInner extends ChildResource { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of BaseAdminRuleInner class. */ @@ -96,7 +91,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -106,7 +101,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -116,13 +111,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public BaseAdminRuleInner withId(String id) { + super.withId(id); + return this; } /** @@ -140,6 +134,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeStringField("kind", this.kind == null ? null : this.kind.toString()); return jsonWriter.writeEndObject(); } @@ -187,14 +182,14 @@ static BaseAdminRuleInner fromJsonKnownDiscriminator(JsonReader jsonReader) thro String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedBaseAdminRuleInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedBaseAdminRuleInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedBaseAdminRuleInner.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedBaseAdminRuleInner.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedBaseAdminRuleInner.withId(reader.getString()); } else if ("kind".equals(fieldName)) { deserializedBaseAdminRuleInner.kind = AdminRuleKind.fromString(reader.getString()); } else if ("systemData".equals(fieldName)) { diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/ConnectivityConfigurationInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/ConnectivityConfigurationInner.java index e8f67d15149d..c096e52d84ab 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/ConnectivityConfigurationInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/ConnectivityConfigurationInner.java @@ -41,20 +41,15 @@ public final class ConnectivityConfigurationInner extends ChildResource { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of ConnectivityConfigurationInner class. */ @@ -90,7 +85,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -100,7 +95,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -110,13 +105,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public ConnectivityConfigurationInner withId(String id) { + super.withId(id); + return this; } /** @@ -319,6 +313,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); } @@ -340,14 +335,14 @@ public static ConnectivityConfigurationInner fromJson(JsonReader jsonReader) thr String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedConnectivityConfigurationInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedConnectivityConfigurationInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedConnectivityConfigurationInner.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedConnectivityConfigurationInner.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedConnectivityConfigurationInner.withId(reader.getString()); } else if ("properties".equals(fieldName)) { deserializedConnectivityConfigurationInner.innerProperties = ConnectivityConfigurationProperties.fromJson(reader); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkGroupInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkGroupInner.java index e7ef02121b63..1e4816914552 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkGroupInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkGroupInner.java @@ -35,20 +35,15 @@ public final class NetworkGroupInner extends ChildResource { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of NetworkGroupInner class. */ @@ -84,7 +79,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -94,7 +89,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -104,13 +99,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public NetworkGroupInner withId(String id) { + super.withId(id); + return this; } /** @@ -195,6 +189,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); } @@ -215,14 +210,14 @@ public static NetworkGroupInner fromJson(JsonReader jsonReader) throws IOExcepti String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedNetworkGroupInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedNetworkGroupInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedNetworkGroupInner.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedNetworkGroupInner.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedNetworkGroupInner.withId(reader.getString()); } else if ("properties".equals(fieldName)) { deserializedNetworkGroupInner.innerProperties = NetworkGroupProperties.fromJson(reader); } else if ("systemData".equals(fieldName)) { diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkManagerConnectionInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkManagerConnectionInner.java index 5e195d1595ef..1a3ab7f9f715 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkManagerConnectionInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkManagerConnectionInner.java @@ -34,20 +34,15 @@ public final class NetworkManagerConnectionInner extends ChildResource { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of NetworkManagerConnectionInner class. */ @@ -83,7 +78,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -93,7 +88,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -103,13 +98,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public NetworkManagerConnectionInner withId(String id) { + super.withId(id); + return this; } /** @@ -185,6 +179,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); } @@ -206,14 +201,14 @@ public static NetworkManagerConnectionInner fromJson(JsonReader jsonReader) thro String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedNetworkManagerConnectionInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedNetworkManagerConnectionInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedNetworkManagerConnectionInner.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedNetworkManagerConnectionInner.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedNetworkManagerConnectionInner.withId(reader.getString()); } else if ("properties".equals(fieldName)) { deserializedNetworkManagerConnectionInner.innerProperties = NetworkManagerConnectionProperties.fromJson(reader); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkManagerRoutingConfigurationInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkManagerRoutingConfigurationInner.java index 8ecf9039a72c..116b22611fa0 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkManagerRoutingConfigurationInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkManagerRoutingConfigurationInner.java @@ -35,20 +35,15 @@ public final class NetworkManagerRoutingConfigurationInner extends ChildResource private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of NetworkManagerRoutingConfigurationInner class. */ @@ -84,7 +79,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -94,7 +89,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -104,13 +99,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public NetworkManagerRoutingConfigurationInner withId(String id) { + super.withId(id); + return this; } /** @@ -197,6 +191,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); } @@ -218,14 +213,14 @@ public static NetworkManagerRoutingConfigurationInner fromJson(JsonReader jsonRe String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedNetworkManagerRoutingConfigurationInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedNetworkManagerRoutingConfigurationInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedNetworkManagerRoutingConfigurationInner.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedNetworkManagerRoutingConfigurationInner.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedNetworkManagerRoutingConfigurationInner.withId(reader.getString()); } else if ("properties".equals(fieldName)) { deserializedNetworkManagerRoutingConfigurationInner.innerProperties = NetworkManagerRoutingConfigurationPropertiesFormat.fromJson(reader); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkSecurityPerimeterInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkSecurityPerimeterInner.java index 7d4f29494d1c..fb731e11a0fc 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkSecurityPerimeterInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NetworkSecurityPerimeterInner.java @@ -5,12 +5,12 @@ package com.azure.resourcemanager.network.fluent.models; import com.azure.core.annotation.Fluent; +import com.azure.core.management.SystemData; import com.azure.core.util.logging.ClientLogger; import com.azure.json.JsonReader; import com.azure.json.JsonToken; import com.azure.json.JsonWriter; import com.azure.resourcemanager.network.models.NspProvisioningState; -import com.azure.resourcemanager.network.models.SecurityPerimeterSystemData; import com.azure.resourcemanager.network.models.SecurityPerimeterTrackedResource; import java.io.IOException; import java.util.Map; @@ -28,21 +28,20 @@ public final class NetworkSecurityPerimeterInner extends SecurityPerimeterTracke /* * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ - private SecurityPerimeterSystemData systemData; + private SystemData systemData; /* - * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + * The type of the resource. */ private String type; /* - * The name of the resource + * The name of the resource. */ private String name; /* - * Fully qualified resource ID for the resource. E.g. - * "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + * Fully qualified resource Id for the resource. */ private String id; @@ -67,13 +66,12 @@ private NetworkSecurityPerimeterProperties innerProperties() { * @return the systemData value. */ @Override - public SecurityPerimeterSystemData systemData() { + public SystemData systemData() { return this.systemData; } /** - * Get the type property: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or - * "Microsoft.Storage/storageAccounts". + * Get the type property: The type of the resource. * * @return the type value. */ @@ -93,8 +91,7 @@ public String name() { } /** - * Get the id property: Fully qualified resource ID for the resource. E.g. - * "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + * Get the id property: Fully qualified resource Id for the resource. * * @return the id value. */ @@ -149,9 +146,6 @@ public void validate() { if (innerProperties() != null) { innerProperties().validate(); } - if (systemData() != null) { - systemData().validate(); - } if (location() == null) { throw LOGGER.atError() .log(new IllegalArgumentException( @@ -190,16 +184,16 @@ public static NetworkSecurityPerimeterInner fromJson(JsonReader jsonReader) thro String fieldName = reader.getFieldName(); reader.nextToken(); - if ("location".equals(fieldName)) { - deserializedNetworkSecurityPerimeterInner.withLocation(reader.getString()); - } else if ("id".equals(fieldName)) { + if ("id".equals(fieldName)) { deserializedNetworkSecurityPerimeterInner.id = reader.getString(); } else if ("name".equals(fieldName)) { deserializedNetworkSecurityPerimeterInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedNetworkSecurityPerimeterInner.type = reader.getString(); + } else if ("location".equals(fieldName)) { + deserializedNetworkSecurityPerimeterInner.withLocation(reader.getString()); } else if ("systemData".equals(fieldName)) { - deserializedNetworkSecurityPerimeterInner.systemData = SecurityPerimeterSystemData.fromJson(reader); + deserializedNetworkSecurityPerimeterInner.systemData = SystemData.fromJson(reader); } else if ("tags".equals(fieldName)) { Map tags = reader.readMap(reader1 -> reader1.getString()); deserializedNetworkSecurityPerimeterInner.withTags(tags); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspAccessRuleInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspAccessRuleInner.java index 9378f372e519..1f46ecab58f8 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspAccessRuleInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspAccessRuleInner.java @@ -5,6 +5,7 @@ package com.azure.resourcemanager.network.fluent.models; import com.azure.core.annotation.Fluent; +import com.azure.core.management.SystemData; import com.azure.json.JsonReader; import com.azure.json.JsonToken; import com.azure.json.JsonWriter; @@ -12,7 +13,6 @@ import com.azure.resourcemanager.network.models.NspProvisioningState; import com.azure.resourcemanager.network.models.PerimeterBasedAccessRule; import com.azure.resourcemanager.network.models.SecurityPerimeterProxyResource; -import com.azure.resourcemanager.network.models.SecurityPerimeterSystemData; import com.azure.resourcemanager.network.models.SubscriptionId; import java.io.IOException; import java.util.List; @@ -30,7 +30,7 @@ public final class NspAccessRuleInner extends SecurityPerimeterProxyResource { /* * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ - private SecurityPerimeterSystemData systemData; + private SystemData systemData; /* * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" @@ -69,7 +69,7 @@ private NspAccessRuleProperties innerProperties() { * @return the systemData value. */ @Override - public SecurityPerimeterSystemData systemData() { + public SystemData systemData() { return this.systemData; } @@ -300,9 +300,6 @@ public void validate() { if (innerProperties() != null) { innerProperties().validate(); } - if (systemData() != null) { - systemData().validate(); - } } /** @@ -338,7 +335,7 @@ public static NspAccessRuleInner fromJson(JsonReader jsonReader) throws IOExcept } else if ("type".equals(fieldName)) { deserializedNspAccessRuleInner.type = reader.getString(); } else if ("systemData".equals(fieldName)) { - deserializedNspAccessRuleInner.systemData = SecurityPerimeterSystemData.fromJson(reader); + deserializedNspAccessRuleInner.systemData = SystemData.fromJson(reader); } else if ("properties".equals(fieldName)) { deserializedNspAccessRuleInner.innerProperties = NspAccessRuleProperties.fromJson(reader); } else { diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspAssociationInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspAssociationInner.java index 4009844ea3c6..85238027c3c9 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspAssociationInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspAssociationInner.java @@ -6,13 +6,13 @@ import com.azure.core.annotation.Fluent; import com.azure.core.management.SubResource; +import com.azure.core.management.SystemData; import com.azure.json.JsonReader; import com.azure.json.JsonToken; import com.azure.json.JsonWriter; import com.azure.resourcemanager.network.models.AssociationAccessMode; import com.azure.resourcemanager.network.models.NspProvisioningState; import com.azure.resourcemanager.network.models.SecurityPerimeterProxyResource; -import com.azure.resourcemanager.network.models.SecurityPerimeterSystemData; import java.io.IOException; /** @@ -28,7 +28,7 @@ public final class NspAssociationInner extends SecurityPerimeterProxyResource { /* * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ - private SecurityPerimeterSystemData systemData; + private SystemData systemData; /* * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" @@ -67,7 +67,7 @@ private NspAssociationProperties innerProperties() { * @return the systemData value. */ @Override - public SecurityPerimeterSystemData systemData() { + public SystemData systemData() { return this.systemData; } @@ -200,9 +200,6 @@ public void validate() { if (innerProperties() != null) { innerProperties().validate(); } - if (systemData() != null) { - systemData().validate(); - } } /** @@ -238,7 +235,7 @@ public static NspAssociationInner fromJson(JsonReader jsonReader) throws IOExcep } else if ("type".equals(fieldName)) { deserializedNspAssociationInner.type = reader.getString(); } else if ("systemData".equals(fieldName)) { - deserializedNspAssociationInner.systemData = SecurityPerimeterSystemData.fromJson(reader); + deserializedNspAssociationInner.systemData = SystemData.fromJson(reader); } else if ("properties".equals(fieldName)) { deserializedNspAssociationInner.innerProperties = NspAssociationProperties.fromJson(reader); } else { diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspLinkInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspLinkInner.java index 8e2f85af0828..bbbed4770c65 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspLinkInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspLinkInner.java @@ -5,13 +5,13 @@ package com.azure.resourcemanager.network.fluent.models; import com.azure.core.annotation.Fluent; +import com.azure.core.management.SystemData; import com.azure.json.JsonReader; import com.azure.json.JsonToken; import com.azure.json.JsonWriter; import com.azure.resourcemanager.network.models.NspLinkProvisioningState; import com.azure.resourcemanager.network.models.NspLinkStatus; import com.azure.resourcemanager.network.models.SecurityPerimeterProxyResource; -import com.azure.resourcemanager.network.models.SecurityPerimeterSystemData; import java.io.IOException; import java.util.List; @@ -28,7 +28,7 @@ public final class NspLinkInner extends SecurityPerimeterProxyResource { /* * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ - private SecurityPerimeterSystemData systemData; + private SystemData systemData; /* * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" @@ -67,7 +67,7 @@ private NspLinkProperties innerProperties() { * @return the systemData value. */ @Override - public SecurityPerimeterSystemData systemData() { + public SystemData systemData() { return this.systemData; } @@ -273,9 +273,6 @@ public void validate() { if (innerProperties() != null) { innerProperties().validate(); } - if (systemData() != null) { - systemData().validate(); - } } /** @@ -311,7 +308,7 @@ public static NspLinkInner fromJson(JsonReader jsonReader) throws IOException { } else if ("type".equals(fieldName)) { deserializedNspLinkInner.type = reader.getString(); } else if ("systemData".equals(fieldName)) { - deserializedNspLinkInner.systemData = SecurityPerimeterSystemData.fromJson(reader); + deserializedNspLinkInner.systemData = SystemData.fromJson(reader); } else if ("properties".equals(fieldName)) { deserializedNspLinkInner.innerProperties = NspLinkProperties.fromJson(reader); } else { diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspLinkReferenceInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspLinkReferenceInner.java index 00e16b8e1308..54b07b6992cf 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspLinkReferenceInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspLinkReferenceInner.java @@ -5,13 +5,13 @@ package com.azure.resourcemanager.network.fluent.models; import com.azure.core.annotation.Immutable; +import com.azure.core.management.SystemData; import com.azure.json.JsonReader; import com.azure.json.JsonToken; import com.azure.json.JsonWriter; import com.azure.resourcemanager.network.models.NspLinkProvisioningState; import com.azure.resourcemanager.network.models.NspLinkStatus; import com.azure.resourcemanager.network.models.SecurityPerimeterProxyResource; -import com.azure.resourcemanager.network.models.SecurityPerimeterSystemData; import java.io.IOException; import java.util.List; @@ -28,21 +28,20 @@ public final class NspLinkReferenceInner extends SecurityPerimeterProxyResource /* * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ - private SecurityPerimeterSystemData systemData; + private SystemData systemData; /* - * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + * The type of the resource. */ private String type; /* - * The name of the resource + * The name of the resource. */ private String name; /* - * Fully qualified resource ID for the resource. E.g. - * "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + * Fully qualified resource Id for the resource. */ private String id; @@ -67,13 +66,12 @@ private NspLinkReferenceProperties innerProperties() { * @return the systemData value. */ @Override - public SecurityPerimeterSystemData systemData() { + public SystemData systemData() { return this.systemData; } /** - * Get the type property: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or - * "Microsoft.Storage/storageAccounts". + * Get the type property: The type of the resource. * * @return the type value. */ @@ -93,8 +91,7 @@ public String name() { } /** - * Get the id property: Fully qualified resource ID for the resource. E.g. - * "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + * Get the id property: Fully qualified resource Id for the resource. * * @return the id value. */ @@ -212,9 +209,6 @@ public void validate() { if (innerProperties() != null) { innerProperties().validate(); } - if (systemData() != null) { - systemData().validate(); - } } /** @@ -250,7 +244,7 @@ public static NspLinkReferenceInner fromJson(JsonReader jsonReader) throws IOExc } else if ("type".equals(fieldName)) { deserializedNspLinkReferenceInner.type = reader.getString(); } else if ("systemData".equals(fieldName)) { - deserializedNspLinkReferenceInner.systemData = SecurityPerimeterSystemData.fromJson(reader); + deserializedNspLinkReferenceInner.systemData = SystemData.fromJson(reader); } else if ("properties".equals(fieldName)) { deserializedNspLinkReferenceInner.innerProperties = NspLinkReferenceProperties.fromJson(reader); } else { diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspLoggingConfigurationInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspLoggingConfigurationInner.java index 7347d31535c6..3b416df5379a 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspLoggingConfigurationInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspLoggingConfigurationInner.java @@ -5,11 +5,11 @@ package com.azure.resourcemanager.network.fluent.models; import com.azure.core.annotation.Fluent; +import com.azure.core.management.SystemData; import com.azure.json.JsonReader; import com.azure.json.JsonToken; import com.azure.json.JsonWriter; import com.azure.resourcemanager.network.models.SecurityPerimeterProxyResource; -import com.azure.resourcemanager.network.models.SecurityPerimeterSystemData; import java.io.IOException; import java.util.List; @@ -26,7 +26,7 @@ public final class NspLoggingConfigurationInner extends SecurityPerimeterProxyRe /* * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ - private SecurityPerimeterSystemData systemData; + private SystemData systemData; /* * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" @@ -65,7 +65,7 @@ private NspLoggingConfigurationProperties innerProperties() { * @return the systemData value. */ @Override - public SecurityPerimeterSystemData systemData() { + public SystemData systemData() { return this.systemData; } @@ -157,9 +157,6 @@ public void validate() { if (innerProperties() != null) { innerProperties().validate(); } - if (systemData() != null) { - systemData().validate(); - } } /** @@ -195,7 +192,7 @@ public static NspLoggingConfigurationInner fromJson(JsonReader jsonReader) throw } else if ("type".equals(fieldName)) { deserializedNspLoggingConfigurationInner.type = reader.getString(); } else if ("systemData".equals(fieldName)) { - deserializedNspLoggingConfigurationInner.systemData = SecurityPerimeterSystemData.fromJson(reader); + deserializedNspLoggingConfigurationInner.systemData = SystemData.fromJson(reader); } else if ("properties".equals(fieldName)) { deserializedNspLoggingConfigurationInner.innerProperties = NspLoggingConfigurationProperties.fromJson(reader); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspProfileInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspProfileInner.java index 544ebd21bbe4..e51a5ee19c81 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspProfileInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/NspProfileInner.java @@ -5,11 +5,11 @@ package com.azure.resourcemanager.network.fluent.models; import com.azure.core.annotation.Immutable; +import com.azure.core.management.SystemData; import com.azure.json.JsonReader; import com.azure.json.JsonToken; import com.azure.json.JsonWriter; import com.azure.resourcemanager.network.models.SecurityPerimeterProxyResource; -import com.azure.resourcemanager.network.models.SecurityPerimeterSystemData; import java.io.IOException; /** @@ -25,7 +25,7 @@ public final class NspProfileInner extends SecurityPerimeterProxyResource { /* * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ - private SecurityPerimeterSystemData systemData; + private SystemData systemData; /* * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" @@ -64,7 +64,7 @@ private NspProfileProperties innerProperties() { * @return the systemData value. */ @Override - public SecurityPerimeterSystemData systemData() { + public SystemData systemData() { return this.systemData; } @@ -130,9 +130,6 @@ public void validate() { if (innerProperties() != null) { innerProperties().validate(); } - if (systemData() != null) { - systemData().validate(); - } } /** @@ -168,7 +165,7 @@ public static NspProfileInner fromJson(JsonReader jsonReader) throws IOException } else if ("type".equals(fieldName)) { deserializedNspProfileInner.type = reader.getString(); } else if ("systemData".equals(fieldName)) { - deserializedNspProfileInner.systemData = SecurityPerimeterSystemData.fromJson(reader); + deserializedNspProfileInner.systemData = SystemData.fromJson(reader); } else if ("properties".equals(fieldName)) { deserializedNspProfileInner.innerProperties = NspProfileProperties.fromJson(reader); } else { diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/RoutingRuleCollectionInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/RoutingRuleCollectionInner.java index 80c3b5e0bc4c..dfb3ca7c7aef 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/RoutingRuleCollectionInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/RoutingRuleCollectionInner.java @@ -37,20 +37,15 @@ public final class RoutingRuleCollectionInner extends ChildResource { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of RoutingRuleCollectionInner class. */ @@ -86,7 +81,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -96,7 +91,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -106,13 +101,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public RoutingRuleCollectionInner withId(String id) { + super.withId(id); + return this; } /** @@ -223,6 +217,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); } @@ -243,14 +238,14 @@ public static RoutingRuleCollectionInner fromJson(JsonReader jsonReader) throws String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedRoutingRuleCollectionInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedRoutingRuleCollectionInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedRoutingRuleCollectionInner.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedRoutingRuleCollectionInner.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedRoutingRuleCollectionInner.withId(reader.getString()); } else if ("properties".equals(fieldName)) { deserializedRoutingRuleCollectionInner.innerProperties = RoutingRuleCollectionPropertiesFormat.fromJson(reader); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/RoutingRuleInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/RoutingRuleInner.java index 2d58f7db781d..c568c6650f7f 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/RoutingRuleInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/RoutingRuleInner.java @@ -36,20 +36,15 @@ public final class RoutingRuleInner extends ChildResource { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of RoutingRuleInner class. */ @@ -85,7 +80,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -95,7 +90,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -105,13 +100,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public RoutingRuleInner withId(String id) { + super.withId(id); + return this; } /** @@ -219,6 +213,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); } @@ -239,14 +234,14 @@ public static RoutingRuleInner fromJson(JsonReader jsonReader) throws IOExceptio String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedRoutingRuleInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedRoutingRuleInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedRoutingRuleInner.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedRoutingRuleInner.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedRoutingRuleInner.withId(reader.getString()); } else if ("properties".equals(fieldName)) { deserializedRoutingRuleInner.innerProperties = RoutingRulePropertiesFormat.fromJson(reader); } else if ("systemData".equals(fieldName)) { diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/ScopeConnectionInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/ScopeConnectionInner.java index 9c43d13223af..9b6f96456d72 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/ScopeConnectionInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/ScopeConnectionInner.java @@ -34,20 +34,15 @@ public final class ScopeConnectionInner extends ChildResource { private SystemData systemData; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of ScopeConnectionInner class. */ @@ -83,7 +78,7 @@ public SystemData systemData() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -93,7 +88,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -103,13 +98,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public ScopeConnectionInner withId(String id) { + super.withId(id); + return this; } /** @@ -208,6 +202,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); } @@ -228,12 +223,12 @@ public static ScopeConnectionInner fromJson(JsonReader jsonReader) throws IOExce String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedScopeConnectionInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedScopeConnectionInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedScopeConnectionInner.type = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedScopeConnectionInner.withId(reader.getString()); } else if ("properties".equals(fieldName)) { deserializedScopeConnectionInner.innerProperties = ScopeConnectionProperties.fromJson(reader); } else if ("etag".equals(fieldName)) { diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityAdminConfigurationInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityAdminConfigurationInner.java index 4ccc523f46fa..c039a8cca554 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityAdminConfigurationInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityAdminConfigurationInner.java @@ -37,20 +37,15 @@ public final class SecurityAdminConfigurationInner extends ChildResource { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of SecurityAdminConfigurationInner class. */ @@ -86,7 +81,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -96,7 +91,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -106,13 +101,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public SecurityAdminConfigurationInner withId(String id) { + super.withId(id); + return this; } /** @@ -226,6 +220,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); } @@ -247,14 +242,14 @@ public static SecurityAdminConfigurationInner fromJson(JsonReader jsonReader) th String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedSecurityAdminConfigurationInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedSecurityAdminConfigurationInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedSecurityAdminConfigurationInner.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedSecurityAdminConfigurationInner.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedSecurityAdminConfigurationInner.withId(reader.getString()); } else if ("properties".equals(fieldName)) { deserializedSecurityAdminConfigurationInner.innerProperties = SecurityAdminConfigurationPropertiesFormat.fromJson(reader); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityUserConfigurationInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityUserConfigurationInner.java index 863b5f9607da..5df231e42789 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityUserConfigurationInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityUserConfigurationInner.java @@ -34,20 +34,15 @@ public final class SecurityUserConfigurationInner extends ChildResource { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of SecurityUserConfigurationInner class. */ @@ -83,7 +78,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -93,7 +88,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -103,13 +98,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public SecurityUserConfigurationInner withId(String id) { + super.withId(id); + return this; } /** @@ -171,6 +165,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); } @@ -192,14 +187,14 @@ public static SecurityUserConfigurationInner fromJson(JsonReader jsonReader) thr String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedSecurityUserConfigurationInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedSecurityUserConfigurationInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedSecurityUserConfigurationInner.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedSecurityUserConfigurationInner.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedSecurityUserConfigurationInner.withId(reader.getString()); } else if ("properties".equals(fieldName)) { deserializedSecurityUserConfigurationInner.innerProperties = SecurityUserConfigurationPropertiesFormat.fromJson(reader); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityUserRuleCollectionInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityUserRuleCollectionInner.java index 5a5089ab811d..cdec4f4299d2 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityUserRuleCollectionInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityUserRuleCollectionInner.java @@ -36,20 +36,15 @@ public final class SecurityUserRuleCollectionInner extends ChildResource { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of SecurityUserRuleCollectionInner class. */ @@ -85,7 +80,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -95,7 +90,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -105,13 +100,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public SecurityUserRuleCollectionInner withId(String id) { + super.withId(id); + return this; } /** @@ -196,6 +190,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); } @@ -217,14 +212,14 @@ public static SecurityUserRuleCollectionInner fromJson(JsonReader jsonReader) th String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedSecurityUserRuleCollectionInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedSecurityUserRuleCollectionInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedSecurityUserRuleCollectionInner.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedSecurityUserRuleCollectionInner.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedSecurityUserRuleCollectionInner.withId(reader.getString()); } else if ("properties".equals(fieldName)) { deserializedSecurityUserRuleCollectionInner.innerProperties = SecurityUserRuleCollectionPropertiesFormat.fromJson(reader); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityUserRuleInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityUserRuleInner.java index 1dcdd432f1c6..3fbdb61961d0 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityUserRuleInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/SecurityUserRuleInner.java @@ -38,20 +38,15 @@ public final class SecurityUserRuleInner extends ChildResource { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of SecurityUserRuleInner class. */ @@ -87,7 +82,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -97,7 +92,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -107,13 +102,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public SecurityUserRuleInner withId(String id) { + super.withId(id); + return this; } /** @@ -313,6 +307,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); } @@ -333,14 +328,14 @@ public static SecurityUserRuleInner fromJson(JsonReader jsonReader) throws IOExc String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedSecurityUserRuleInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedSecurityUserRuleInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedSecurityUserRuleInner.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedSecurityUserRuleInner.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedSecurityUserRuleInner.withId(reader.getString()); } else if ("properties".equals(fieldName)) { deserializedSecurityUserRuleInner.innerProperties = SecurityUserRulePropertiesFormat.fromJson(reader); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/ServiceGatewayInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/ServiceGatewayInner.java index 1fe279ec9db3..ef97baf1c83a 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/ServiceGatewayInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/ServiceGatewayInner.java @@ -5,12 +5,12 @@ package com.azure.resourcemanager.network.fluent.models; import com.azure.core.annotation.Fluent; +import com.azure.core.management.SystemData; import com.azure.core.util.logging.ClientLogger; import com.azure.json.JsonReader; import com.azure.json.JsonToken; import com.azure.json.JsonWriter; import com.azure.resourcemanager.network.models.ProvisioningState; -import com.azure.resourcemanager.network.models.SecurityPerimeterSystemData; import com.azure.resourcemanager.network.models.SecurityPerimeterTrackedResource; import com.azure.resourcemanager.network.models.ServiceGatewaySku; import java.io.IOException; @@ -47,21 +47,20 @@ public final class ServiceGatewayInner extends SecurityPerimeterTrackedResource /* * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ - private SecurityPerimeterSystemData systemData; + private SystemData systemData; /* - * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + * The type of the resource. */ private String type; /* - * The name of the resource + * The name of the resource. */ private String name; /* - * Fully qualified resource ID for the resource. E.g. - * "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + * Fully qualified resource Id for the resource. */ private String id; @@ -141,13 +140,12 @@ public ServiceGatewayInner withZones(List zones) { * @return the systemData value. */ @Override - public SecurityPerimeterSystemData systemData() { + public SystemData systemData() { return this.systemData; } /** - * Get the type property: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or - * "Microsoft.Storage/storageAccounts". + * Get the type property: The type of the resource. * * @return the type value. */ @@ -167,8 +165,7 @@ public String name() { } /** - * Get the id property: Fully qualified resource ID for the resource. E.g. - * "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + * Get the id property: Fully qualified resource Id for the resource. * * @return the id value. */ @@ -295,9 +292,6 @@ public void validate() { if (sku() != null) { sku().validate(); } - if (systemData() != null) { - systemData().validate(); - } if (location() == null) { throw LOGGER.atError() .log(new IllegalArgumentException("Missing required property location in model ServiceGatewayInner")); @@ -336,16 +330,16 @@ public static ServiceGatewayInner fromJson(JsonReader jsonReader) throws IOExcep String fieldName = reader.getFieldName(); reader.nextToken(); - if ("location".equals(fieldName)) { - deserializedServiceGatewayInner.withLocation(reader.getString()); - } else if ("id".equals(fieldName)) { + if ("id".equals(fieldName)) { deserializedServiceGatewayInner.id = reader.getString(); } else if ("name".equals(fieldName)) { deserializedServiceGatewayInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedServiceGatewayInner.type = reader.getString(); + } else if ("location".equals(fieldName)) { + deserializedServiceGatewayInner.withLocation(reader.getString()); } else if ("systemData".equals(fieldName)) { - deserializedServiceGatewayInner.systemData = SecurityPerimeterSystemData.fromJson(reader); + deserializedServiceGatewayInner.systemData = SystemData.fromJson(reader); } else if ("tags".equals(fieldName)) { Map tags = reader.readMap(reader1 -> reader1.getString()); deserializedServiceGatewayInner.withTags(tags); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/StaticMemberInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/StaticMemberInner.java index d6710f8d3c56..f899d57269ed 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/StaticMemberInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/StaticMemberInner.java @@ -34,20 +34,15 @@ public final class StaticMemberInner extends ChildResource { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of StaticMemberInner class. */ @@ -83,7 +78,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -93,7 +88,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -103,13 +98,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public StaticMemberInner withId(String id) { + super.withId(id); + return this; } /** @@ -171,6 +165,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); } @@ -191,14 +186,14 @@ public static StaticMemberInner fromJson(JsonReader jsonReader) throws IOExcepti String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedStaticMemberInner.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedStaticMemberInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedStaticMemberInner.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedStaticMemberInner.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedStaticMemberInner.withId(reader.getString()); } else if ("properties".equals(fieldName)) { deserializedStaticMemberInner.innerProperties = StaticMemberProperties.fromJson(reader); } else if ("systemData".equals(fieldName)) { diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/VerifierWorkspaceInner.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/VerifierWorkspaceInner.java index b2674d336159..64ef167aad93 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/VerifierWorkspaceInner.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/VerifierWorkspaceInner.java @@ -36,18 +36,17 @@ public final class VerifierWorkspaceInner extends CommonTrackedResource { private SystemData systemData; /* - * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + * The type of the resource. */ private String type; /* - * The name of the resource + * The name of the resource. */ private String name; /* - * Fully qualified resource ID for the resource. E.g. - * "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + * Fully qualified resource Id for the resource. */ private String id; @@ -97,8 +96,7 @@ public SystemData systemData() { } /** - * Get the type property: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or - * "Microsoft.Storage/storageAccounts". + * Get the type property: The type of the resource. * * @return the type value. */ @@ -118,8 +116,7 @@ public String name() { } /** - * Get the id property: Fully qualified resource ID for the resource. E.g. - * "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + * Get the id property: Fully qualified resource Id for the resource. * * @return the id value. */ @@ -193,14 +190,14 @@ public static VerifierWorkspaceInner fromJson(JsonReader jsonReader) throws IOEx String fieldName = reader.getFieldName(); reader.nextToken(); - if ("location".equals(fieldName)) { - deserializedVerifierWorkspaceInner.withLocation(reader.getString()); - } else if ("id".equals(fieldName)) { + if ("id".equals(fieldName)) { deserializedVerifierWorkspaceInner.id = reader.getString(); } else if ("name".equals(fieldName)) { deserializedVerifierWorkspaceInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedVerifierWorkspaceInner.type = reader.getString(); + } else if ("location".equals(fieldName)) { + deserializedVerifierWorkspaceInner.withLocation(reader.getString()); } else if ("tags".equals(fieldName)) { Map tags = reader.readMap(reader1 -> reader1.getString()); deserializedVerifierWorkspaceInner.withTags(tags); diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/implementation/NetworkVirtualAppliancesClientImpl.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/implementation/NetworkVirtualAppliancesClientImpl.java index 008be58d0187..ea55397a3226 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/implementation/NetworkVirtualAppliancesClientImpl.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/implementation/NetworkVirtualAppliancesClientImpl.java @@ -1165,7 +1165,8 @@ public PagedIterable list(Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances along + * with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> restartWithResponseAsync(String resourceGroupName, @@ -1210,7 +1211,8 @@ public Mono>> restartWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances along + * with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> restartWithResponseAsync(String resourceGroupName, @@ -1252,7 +1254,8 @@ private Mono>> restartWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, NetworkVirtualApplianceInstanceIdsInner> @@ -1274,7 +1277,8 @@ private Mono>> restartWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, NetworkVirtualApplianceInstanceIdsInner> @@ -1299,7 +1303,8 @@ private Mono>> restartWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, NetworkVirtualApplianceInstanceIdsInner> @@ -1322,7 +1327,8 @@ private Mono>> restartWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, NetworkVirtualApplianceInstanceIdsInner> @@ -1344,7 +1350,8 @@ private Mono>> restartWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, NetworkVirtualApplianceInstanceIdsInner> @@ -1366,7 +1373,8 @@ private Mono>> restartWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono restartAsync(String resourceGroupName, @@ -1385,7 +1393,8 @@ public Mono restartAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono restartAsync(String resourceGroupName, @@ -1407,7 +1416,8 @@ public Mono restartAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono restartAsync(String resourceGroupName, @@ -1425,7 +1435,7 @@ private Mono restartAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.SINGLE) public NetworkVirtualApplianceInstanceIdsInner restart(String resourceGroupName, @@ -1445,7 +1455,7 @@ public NetworkVirtualApplianceInstanceIdsInner restart(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.SINGLE) public NetworkVirtualApplianceInstanceIdsInner restart(String resourceGroupName, String networkVirtualApplianceName, @@ -1464,7 +1474,8 @@ public NetworkVirtualApplianceInstanceIdsInner restart(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances along + * with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> reimageWithResponseAsync(String resourceGroupName, @@ -1509,7 +1520,8 @@ public Mono>> reimageWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances along + * with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> reimageWithResponseAsync(String resourceGroupName, @@ -1551,7 +1563,8 @@ private Mono>> reimageWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, NetworkVirtualApplianceInstanceIdsInner> @@ -1573,7 +1586,8 @@ private Mono>> reimageWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, NetworkVirtualApplianceInstanceIdsInner> @@ -1598,7 +1612,8 @@ private Mono>> reimageWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, NetworkVirtualApplianceInstanceIdsInner> @@ -1621,7 +1636,8 @@ private Mono>> reimageWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, NetworkVirtualApplianceInstanceIdsInner> @@ -1643,7 +1659,8 @@ private Mono>> reimageWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of specifies a list of virtual machine instance IDs from the Network + * Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, NetworkVirtualApplianceInstanceIdsInner> @@ -1665,7 +1682,8 @@ private Mono>> reimageWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono reimageAsync(String resourceGroupName, @@ -1684,7 +1702,8 @@ public Mono reimageAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono reimageAsync(String resourceGroupName, @@ -1706,7 +1725,8 @@ public Mono reimageAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono reimageAsync(String resourceGroupName, @@ -1724,7 +1744,7 @@ private Mono reimageAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.SINGLE) public NetworkVirtualApplianceInstanceIdsInner reimage(String resourceGroupName, @@ -1744,7 +1764,7 @@ public NetworkVirtualApplianceInstanceIdsInner reimage(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return specifies a list of virtual machine instance IDs from the Network Virtual Appliance VM instances. */ @ServiceMethod(returns = ReturnType.SINGLE) public NetworkVirtualApplianceInstanceIdsInner reimage(String resourceGroupName, String networkVirtualApplianceName, diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/implementation/VpnGatewaysClientImpl.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/implementation/VpnGatewaysClientImpl.java index 9a25c18d13b5..089503890e60 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/implementation/VpnGatewaysClientImpl.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/implementation/VpnGatewaysClientImpl.java @@ -1221,7 +1221,7 @@ public PagedIterable list(Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return vpnGateway Resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> resetWithResponseAsync(String resourceGroupName, String gatewayName, @@ -1259,7 +1259,7 @@ public Mono>> resetWithResponseAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return vpnGateway Resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> resetWithResponseAsync(String resourceGroupName, String gatewayName, @@ -1295,7 +1295,7 @@ private Mono>> resetWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of vpnGateway Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, VpnGatewayInner> beginResetAsync(String resourceGroupName, @@ -1314,7 +1314,7 @@ public PollerFlux, VpnGatewayInner> beginResetAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of vpnGateway Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, VpnGatewayInner> beginResetAsync(String resourceGroupName, @@ -1336,7 +1336,7 @@ public PollerFlux, VpnGatewayInner> beginResetAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of vpnGateway Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, VpnGatewayInner> beginResetAsync(String resourceGroupName, @@ -1356,7 +1356,7 @@ private PollerFlux, VpnGatewayInner> beginResetAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of vpnGateway Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, VpnGatewayInner> beginReset(String resourceGroupName, @@ -1375,7 +1375,7 @@ public SyncPoller, VpnGatewayInner> beginReset(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of vpnGateway Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, VpnGatewayInner> beginReset(String resourceGroupName, @@ -1392,7 +1392,7 @@ public SyncPoller, VpnGatewayInner> beginReset(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return vpnGateway Resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono resetAsync(String resourceGroupName, String gatewayName, String ipConfigurationId) { @@ -1408,7 +1408,7 @@ public Mono resetAsync(String resourceGroupName, String gateway * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return vpnGateway Resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono resetAsync(String resourceGroupName, String gatewayName) { @@ -1427,7 +1427,7 @@ public Mono resetAsync(String resourceGroupName, String gateway * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return vpnGateway Resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono resetAsync(String resourceGroupName, String gatewayName, String ipConfigurationId, @@ -1444,7 +1444,7 @@ private Mono resetAsync(String resourceGroupName, String gatewa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return vpnGateway Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public VpnGatewayInner reset(String resourceGroupName, String gatewayName) { @@ -1462,7 +1462,7 @@ public VpnGatewayInner reset(String resourceGroupName, String gatewayName) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return vpnGateway Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public VpnGatewayInner reset(String resourceGroupName, String gatewayName, String ipConfigurationId, diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/AdminRule.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/AdminRule.java index 3e8a25b93c4e..b4da2b8b9b36 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/AdminRule.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/AdminRule.java @@ -40,20 +40,15 @@ public final class AdminRule extends BaseAdminRuleInner { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of AdminRule class. */ @@ -100,7 +95,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -110,7 +105,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -120,13 +115,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public AdminRule withId(String id) { + super.withId(id); + return this; } /** @@ -376,6 +370,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeStringField("kind", this.kind == null ? null : this.kind.toString()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); @@ -397,14 +392,14 @@ public static AdminRule fromJson(JsonReader jsonReader) throws IOException { String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedAdminRule.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedAdminRule.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedAdminRule.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedAdminRule.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedAdminRule.withId(reader.getString()); } else if ("systemData".equals(fieldName)) { deserializedAdminRule.systemData = SystemData.fromJson(reader); } else if ("kind".equals(fieldName)) { diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/ChildResource.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/ChildResource.java index 52a9e8cbc6c9..2475cd328a9c 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/ChildResource.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/ChildResource.java @@ -4,7 +4,7 @@ package com.azure.resourcemanager.network.models; -import com.azure.core.annotation.Immutable; +import com.azure.core.annotation.Fluent; import com.azure.core.management.ProxyResource; import com.azure.json.JsonReader; import com.azure.json.JsonToken; @@ -14,27 +14,27 @@ /** * Proxy resource representation. */ -@Immutable +@Fluent public class ChildResource extends ProxyResource { /* - * Resource ID. + * A unique read-only string that changes whenever the resource is updated. */ - private String id; + private String etag; /* - * Resource name. + * Resource ID. */ - private String name; + private String id; /* - * Resource type. + * The type of the resource. */ private String type; /* - * A unique read-only string that changes whenever the resource is updated. + * The name of the resource. */ - private String etag; + private String name; /** * Creates an instance of ChildResource class. @@ -42,28 +42,48 @@ public class ChildResource extends ProxyResource { public ChildResource() { } + /** + * Get the etag property: A unique read-only string that changes whenever the resource is updated. + * + * @return the etag value. + */ + public String etag() { + return this.etag; + } + + /** + * Set the etag property: A unique read-only string that changes whenever the resource is updated. + * + * @param etag the etag value to set. + * @return the ChildResource object itself. + */ + ChildResource withEtag(String etag) { + this.etag = etag; + return this; + } + /** * Get the id property: Resource ID. * * @return the id value. */ - @Override public String id() { return this.id; } /** - * Get the name property: Resource name. + * Set the id property: Resource ID. * - * @return the name value. + * @param id the id value to set. + * @return the ChildResource object itself. */ - @Override - public String name() { - return this.name; + public ChildResource withId(String id) { + this.id = id; + return this; } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -73,23 +93,13 @@ public String type() { } /** - * Get the etag property: A unique read-only string that changes whenever the resource is updated. + * Get the name property: The name of the resource. * - * @return the etag value. - */ - public String etag() { - return this.etag; - } - - /** - * Set the etag property: A unique read-only string that changes whenever the resource is updated. - * - * @param etag the etag value to set. - * @return the ChildResource object itself. + * @return the name value. */ - ChildResource withEtag(String etag) { - this.etag = etag; - return this; + @Override + public String name() { + return this.name; } /** @@ -106,6 +116,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", this.id); return jsonWriter.writeEndObject(); } @@ -115,6 +126,7 @@ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { * @param jsonReader The JsonReader being read. * @return An instance of ChildResource if the JsonReader was pointing to an instance of it, or null if it was * pointing to JSON null. + * @throws IllegalStateException If the deserialized JSON object was missing any required properties. * @throws IOException If an error occurs while reading the ChildResource. */ public static ChildResource fromJson(JsonReader jsonReader) throws IOException { @@ -124,14 +136,14 @@ public static ChildResource fromJson(JsonReader jsonReader) throws IOException { String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedChildResource.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedChildResource.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedChildResource.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedChildResource.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedChildResource.id = reader.getString(); } else { reader.skipChildren(); } diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/CreatedByType.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/CreatedByType.java deleted file mode 100644 index e4ae19e90046..000000000000 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/CreatedByType.java +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -// Code generated by Microsoft (R) TypeSpec Code Generator. - -package com.azure.resourcemanager.network.models; - -import com.azure.core.util.ExpandableStringEnum; -import java.util.Collection; - -/** - * The kind of entity that created the resource. - */ -public final class CreatedByType extends ExpandableStringEnum { - /** - * The entity was created by a user. - */ - public static final CreatedByType USER = fromString("User"); - - /** - * The entity was created by an application. - */ - public static final CreatedByType APPLICATION = fromString("Application"); - - /** - * The entity was created by a managed identity. - */ - public static final CreatedByType MANAGED_IDENTITY = fromString("ManagedIdentity"); - - /** - * The entity was created by a key. - */ - public static final CreatedByType KEY = fromString("Key"); - - /** - * Creates a new instance of CreatedByType value. - * - * @deprecated Use the {@link #fromString(String)} factory method. - */ - @Deprecated - public CreatedByType() { - } - - /** - * Creates or finds a CreatedByType from its string representation. - * - * @param name a name to look for. - * @return the corresponding CreatedByType. - */ - public static CreatedByType fromString(String name) { - return fromString(name, CreatedByType.class); - } - - /** - * Gets known CreatedByType values. - * - * @return known CreatedByType values. - */ - public static Collection values() { - return values(CreatedByType.class); - } -} diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/DefaultAdminRule.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/DefaultAdminRule.java index 419430598678..7252895e519d 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/DefaultAdminRule.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/DefaultAdminRule.java @@ -40,20 +40,15 @@ public final class DefaultAdminRule extends BaseAdminRuleInner { private String etag; /* - * Resource type. + * The type of the resource. */ private String type; /* - * Resource name. + * The name of the resource. */ private String name; - /* - * Resource ID. - */ - private String id; - /** * Creates an instance of DefaultAdminRule class. */ @@ -100,7 +95,7 @@ public String etag() { } /** - * Get the type property: Resource type. + * Get the type property: The type of the resource. * * @return the type value. */ @@ -110,7 +105,7 @@ public String type() { } /** - * Get the name property: Resource name. + * Get the name property: The name of the resource. * * @return the name value. */ @@ -120,13 +115,12 @@ public String name() { } /** - * Get the id property: Resource ID. - * - * @return the id value. + * {@inheritDoc} */ @Override - public String id() { - return this.id; + public DefaultAdminRule withId(String id) { + super.withId(id); + return this; } /** @@ -271,6 +265,7 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("id", id()); jsonWriter.writeStringField("kind", this.kind == null ? null : this.kind.toString()); jsonWriter.writeJsonField("properties", this.innerProperties); return jsonWriter.writeEndObject(); @@ -292,14 +287,14 @@ public static DefaultAdminRule fromJson(JsonReader jsonReader) throws IOExceptio String fieldName = reader.getFieldName(); reader.nextToken(); - if ("id".equals(fieldName)) { - deserializedDefaultAdminRule.id = reader.getString(); - } else if ("name".equals(fieldName)) { + if ("name".equals(fieldName)) { deserializedDefaultAdminRule.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedDefaultAdminRule.type = reader.getString(); } else if ("etag".equals(fieldName)) { deserializedDefaultAdminRule.etag = reader.getString(); + } else if ("id".equals(fieldName)) { + deserializedDefaultAdminRule.withId(reader.getString()); } else if ("systemData".equals(fieldName)) { deserializedDefaultAdminRule.systemData = SystemData.fromJson(reader); } else if ("kind".equals(fieldName)) { diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterProxyResource.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterProxyResource.java index f0b6eba1f69c..984b806e60cb 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterProxyResource.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterProxyResource.java @@ -5,6 +5,7 @@ package com.azure.resourcemanager.network.models; import com.azure.core.annotation.Immutable; +import com.azure.core.management.SystemData; import com.azure.json.JsonReader; import com.azure.json.JsonToken; import com.azure.json.JsonWriter; @@ -18,7 +19,7 @@ public class SecurityPerimeterProxyResource extends SecurityPerimeterResource { /* * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ - private SecurityPerimeterSystemData systemData; + private SystemData systemData; /* * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" @@ -48,7 +49,7 @@ public SecurityPerimeterProxyResource() { * @return the systemData value. */ @Override - public SecurityPerimeterSystemData systemData() { + public SystemData systemData() { return this.systemData; } @@ -91,9 +92,6 @@ public String id() { */ @Override public void validate() { - if (systemData() != null) { - systemData().validate(); - } } /** @@ -129,8 +127,7 @@ public static SecurityPerimeterProxyResource fromJson(JsonReader jsonReader) thr } else if ("type".equals(fieldName)) { deserializedSecurityPerimeterProxyResource.type = reader.getString(); } else if ("systemData".equals(fieldName)) { - deserializedSecurityPerimeterProxyResource.systemData - = SecurityPerimeterSystemData.fromJson(reader); + deserializedSecurityPerimeterProxyResource.systemData = SystemData.fromJson(reader); } else { reader.skipChildren(); } diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterResource.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterResource.java index b4208c820bb9..3bc042d893ff 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterResource.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterResource.java @@ -6,6 +6,7 @@ import com.azure.core.annotation.Immutable; import com.azure.core.management.ProxyResource; +import com.azure.core.management.SystemData; import com.azure.json.JsonReader; import com.azure.json.JsonToken; import com.azure.json.JsonWriter; @@ -17,25 +18,24 @@ @Immutable public class SecurityPerimeterResource extends ProxyResource { /* - * Fully qualified resource ID for the resource. E.g. - * "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ - private String id; + private SystemData systemData; /* - * The name of the resource + * The type of the resource. */ - private String name; + private String type; /* - * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + * The name of the resource. */ - private String type; + private String name; /* - * Azure Resource Manager metadata containing createdBy and modifiedBy information. + * Fully qualified resource Id for the resource. */ - private SecurityPerimeterSystemData systemData; + private String id; /** * Creates an instance of SecurityPerimeterResource class. @@ -44,29 +44,27 @@ public SecurityPerimeterResource() { } /** - * Get the id property: Fully qualified resource ID for the resource. E.g. - * "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + * Get the systemData property: Azure Resource Manager metadata containing createdBy and modifiedBy information. * - * @return the id value. + * @return the systemData value. */ - @Override - public String id() { - return this.id; + public SystemData systemData() { + return this.systemData; } /** - * Get the name property: The name of the resource. + * Set the systemData property: Azure Resource Manager metadata containing createdBy and modifiedBy information. * - * @return the name value. + * @param systemData the systemData value to set. + * @return the SecurityPerimeterResource object itself. */ - @Override - public String name() { - return this.name; + SecurityPerimeterResource withSystemData(SystemData systemData) { + this.systemData = systemData; + return this; } /** - * Get the type property: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or - * "Microsoft.Storage/storageAccounts". + * Get the type property: The type of the resource. * * @return the type value. */ @@ -76,23 +74,23 @@ public String type() { } /** - * Get the systemData property: Azure Resource Manager metadata containing createdBy and modifiedBy information. + * Get the name property: The name of the resource. * - * @return the systemData value. + * @return the name value. */ - public SecurityPerimeterSystemData systemData() { - return this.systemData; + @Override + public String name() { + return this.name; } /** - * Set the systemData property: Azure Resource Manager metadata containing createdBy and modifiedBy information. + * Get the id property: Fully qualified resource Id for the resource. * - * @param systemData the systemData value to set. - * @return the SecurityPerimeterResource object itself. + * @return the id value. */ - SecurityPerimeterResource withSystemData(SecurityPerimeterSystemData systemData) { - this.systemData = systemData; - return this; + @Override + public String id() { + return this.id; } /** @@ -101,9 +99,6 @@ SecurityPerimeterResource withSystemData(SecurityPerimeterSystemData systemData) * @throws IllegalArgumentException thrown if the instance is not valid. */ public void validate() { - if (systemData() != null) { - systemData().validate(); - } } /** @@ -121,6 +116,7 @@ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { * @param jsonReader The JsonReader being read. * @return An instance of SecurityPerimeterResource if the JsonReader was pointing to an instance of it, or null if * it was pointing to JSON null. + * @throws IllegalStateException If the deserialized JSON object was missing any required properties. * @throws IOException If an error occurs while reading the SecurityPerimeterResource. */ public static SecurityPerimeterResource fromJson(JsonReader jsonReader) throws IOException { @@ -137,7 +133,7 @@ public static SecurityPerimeterResource fromJson(JsonReader jsonReader) throws I } else if ("type".equals(fieldName)) { deserializedSecurityPerimeterResource.type = reader.getString(); } else if ("systemData".equals(fieldName)) { - deserializedSecurityPerimeterResource.systemData = SecurityPerimeterSystemData.fromJson(reader); + deserializedSecurityPerimeterResource.systemData = SystemData.fromJson(reader); } else { reader.skipChildren(); } diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterSystemData.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterSystemData.java deleted file mode 100644 index 2a2e4ded22ed..000000000000 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterSystemData.java +++ /dev/null @@ -1,177 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -// Code generated by Microsoft (R) TypeSpec Code Generator. - -package com.azure.resourcemanager.network.models; - -import com.azure.core.annotation.Immutable; -import com.azure.core.util.CoreUtils; -import com.azure.json.JsonReader; -import com.azure.json.JsonSerializable; -import com.azure.json.JsonToken; -import com.azure.json.JsonWriter; -import java.io.IOException; -import java.time.OffsetDateTime; -import java.time.format.DateTimeFormatter; - -/** - * Metadata pertaining to creation and last modification of the resource. - */ -@Immutable -public final class SecurityPerimeterSystemData implements JsonSerializable { - /* - * The identity that created the resource. - */ - private String createdBy; - - /* - * The type of identity that created the resource. - */ - private CreatedByType createdByType; - - /* - * The timestamp of resource creation (UTC). - */ - private OffsetDateTime createdAt; - - /* - * The identity that last modified the resource. - */ - private String lastModifiedBy; - - /* - * The type of identity that last modified the resource. - */ - private CreatedByType lastModifiedByType; - - /* - * The timestamp of resource last modification (UTC) - */ - private OffsetDateTime lastModifiedAt; - - /** - * Creates an instance of SecurityPerimeterSystemData class. - */ - private SecurityPerimeterSystemData() { - } - - /** - * Get the createdBy property: The identity that created the resource. - * - * @return the createdBy value. - */ - public String createdBy() { - return this.createdBy; - } - - /** - * Get the createdByType property: The type of identity that created the resource. - * - * @return the createdByType value. - */ - public CreatedByType createdByType() { - return this.createdByType; - } - - /** - * Get the createdAt property: The timestamp of resource creation (UTC). - * - * @return the createdAt value. - */ - public OffsetDateTime createdAt() { - return this.createdAt; - } - - /** - * Get the lastModifiedBy property: The identity that last modified the resource. - * - * @return the lastModifiedBy value. - */ - public String lastModifiedBy() { - return this.lastModifiedBy; - } - - /** - * Get the lastModifiedByType property: The type of identity that last modified the resource. - * - * @return the lastModifiedByType value. - */ - public CreatedByType lastModifiedByType() { - return this.lastModifiedByType; - } - - /** - * Get the lastModifiedAt property: The timestamp of resource last modification (UTC). - * - * @return the lastModifiedAt value. - */ - public OffsetDateTime lastModifiedAt() { - return this.lastModifiedAt; - } - - /** - * Validates the instance. - * - * @throws IllegalArgumentException thrown if the instance is not valid. - */ - public void validate() { - } - - /** - * {@inheritDoc} - */ - @Override - public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { - jsonWriter.writeStartObject(); - jsonWriter.writeStringField("createdBy", this.createdBy); - jsonWriter.writeStringField("createdByType", this.createdByType == null ? null : this.createdByType.toString()); - jsonWriter.writeStringField("createdAt", - this.createdAt == null ? null : DateTimeFormatter.ISO_OFFSET_DATE_TIME.format(this.createdAt)); - jsonWriter.writeStringField("lastModifiedBy", this.lastModifiedBy); - jsonWriter.writeStringField("lastModifiedByType", - this.lastModifiedByType == null ? null : this.lastModifiedByType.toString()); - jsonWriter.writeStringField("lastModifiedAt", - this.lastModifiedAt == null ? null : DateTimeFormatter.ISO_OFFSET_DATE_TIME.format(this.lastModifiedAt)); - return jsonWriter.writeEndObject(); - } - - /** - * Reads an instance of SecurityPerimeterSystemData from the JsonReader. - * - * @param jsonReader The JsonReader being read. - * @return An instance of SecurityPerimeterSystemData if the JsonReader was pointing to an instance of it, or null - * if it was pointing to JSON null. - * @throws IOException If an error occurs while reading the SecurityPerimeterSystemData. - */ - public static SecurityPerimeterSystemData fromJson(JsonReader jsonReader) throws IOException { - return jsonReader.readObject(reader -> { - SecurityPerimeterSystemData deserializedSecurityPerimeterSystemData = new SecurityPerimeterSystemData(); - while (reader.nextToken() != JsonToken.END_OBJECT) { - String fieldName = reader.getFieldName(); - reader.nextToken(); - - if ("createdBy".equals(fieldName)) { - deserializedSecurityPerimeterSystemData.createdBy = reader.getString(); - } else if ("createdByType".equals(fieldName)) { - deserializedSecurityPerimeterSystemData.createdByType - = CreatedByType.fromString(reader.getString()); - } else if ("createdAt".equals(fieldName)) { - deserializedSecurityPerimeterSystemData.createdAt = reader - .getNullable(nonNullReader -> CoreUtils.parseBestOffsetDateTime(nonNullReader.getString())); - } else if ("lastModifiedBy".equals(fieldName)) { - deserializedSecurityPerimeterSystemData.lastModifiedBy = reader.getString(); - } else if ("lastModifiedByType".equals(fieldName)) { - deserializedSecurityPerimeterSystemData.lastModifiedByType - = CreatedByType.fromString(reader.getString()); - } else if ("lastModifiedAt".equals(fieldName)) { - deserializedSecurityPerimeterSystemData.lastModifiedAt = reader - .getNullable(nonNullReader -> CoreUtils.parseBestOffsetDateTime(nonNullReader.getString())); - } else { - reader.skipChildren(); - } - } - - return deserializedSecurityPerimeterSystemData; - }); - } -} diff --git a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterTrackedResource.java b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterTrackedResource.java index 1272476760ef..67ec0742c1c3 100644 --- a/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterTrackedResource.java +++ b/sdk/network/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/models/SecurityPerimeterTrackedResource.java @@ -5,6 +5,7 @@ package com.azure.resourcemanager.network.models; import com.azure.core.annotation.Fluent; +import com.azure.core.management.SystemData; import com.azure.core.util.logging.ClientLogger; import com.azure.json.JsonReader; import com.azure.json.JsonToken; @@ -30,21 +31,20 @@ public class SecurityPerimeterTrackedResource extends SecurityPerimeterResource /* * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ - private SecurityPerimeterSystemData systemData; + private SystemData systemData; /* - * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + * The type of the resource. */ private String type; /* - * The name of the resource + * The name of the resource. */ private String name; /* - * Fully qualified resource ID for the resource. E.g. - * "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + * Fully qualified resource Id for the resource. */ private String id; @@ -100,13 +100,12 @@ public SecurityPerimeterTrackedResource withLocation(String location) { * @return the systemData value. */ @Override - public SecurityPerimeterSystemData systemData() { + public SystemData systemData() { return this.systemData; } /** - * Get the type property: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or - * "Microsoft.Storage/storageAccounts". + * Get the type property: The type of the resource. * * @return the type value. */ @@ -126,8 +125,7 @@ public String name() { } /** - * Get the id property: Fully qualified resource ID for the resource. E.g. - * "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". + * Get the id property: Fully qualified resource Id for the resource. * * @return the id value. */ @@ -148,9 +146,6 @@ public void validate() { .log(new IllegalArgumentException( "Missing required property location in model SecurityPerimeterTrackedResource")); } - if (systemData() != null) { - systemData().validate(); - } } private static final ClientLogger LOGGER = new ClientLogger(SecurityPerimeterTrackedResource.class); @@ -190,8 +185,7 @@ public static SecurityPerimeterTrackedResource fromJson(JsonReader jsonReader) t } else if ("type".equals(fieldName)) { deserializedSecurityPerimeterTrackedResource.type = reader.getString(); } else if ("systemData".equals(fieldName)) { - deserializedSecurityPerimeterTrackedResource.systemData - = SecurityPerimeterSystemData.fromJson(reader); + deserializedSecurityPerimeterTrackedResource.systemData = SystemData.fromJson(reader); } else if ("location".equals(fieldName)) { deserializedSecurityPerimeterTrackedResource.location = reader.getString(); } else if ("tags".equals(fieldName)) { diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/AutonomousDatabasesClient.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/AutonomousDatabasesClient.java index b40590ba8476..1f9e5e9b9d0a 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/AutonomousDatabasesClient.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/AutonomousDatabasesClient.java @@ -285,7 +285,7 @@ AutonomousDatabaseInner update(String resourceGroupName, String autonomousdataba * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, AutonomousDatabaseInner> beginSwitchover(String resourceGroupName, @@ -301,7 +301,7 @@ SyncPoller, AutonomousDatabaseInner> beginSw * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, AutonomousDatabaseInner> beginSwitchover(String resourceGroupName, @@ -316,7 +316,7 @@ SyncPoller, AutonomousDatabaseInner> beginSw * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) AutonomousDatabaseInner switchover(String resourceGroupName, String autonomousdatabasename, PeerDbDetails body); @@ -331,7 +331,7 @@ SyncPoller, AutonomousDatabaseInner> beginSw * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) AutonomousDatabaseInner switchover(String resourceGroupName, String autonomousdatabasename, PeerDbDetails body, @@ -346,7 +346,7 @@ AutonomousDatabaseInner switchover(String resourceGroupName, String autonomousda * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, AutonomousDatabaseInner> beginFailover(String resourceGroupName, @@ -362,7 +362,7 @@ SyncPoller, AutonomousDatabaseInner> beginFa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, AutonomousDatabaseInner> beginFailover(String resourceGroupName, @@ -377,7 +377,7 @@ SyncPoller, AutonomousDatabaseInner> beginFa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) AutonomousDatabaseInner failover(String resourceGroupName, String autonomousdatabasename, PeerDbDetails body); @@ -392,7 +392,7 @@ SyncPoller, AutonomousDatabaseInner> beginFa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) AutonomousDatabaseInner failover(String resourceGroupName, String autonomousdatabasename, PeerDbDetails body, @@ -438,7 +438,7 @@ AutonomousDatabaseWalletFileInner generateWallet(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, AutonomousDatabaseInner> beginRestore(String resourceGroupName, @@ -454,7 +454,7 @@ SyncPoller, AutonomousDatabaseInner> beginRe * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, AutonomousDatabaseInner> beginRestore(String resourceGroupName, @@ -469,7 +469,7 @@ SyncPoller, AutonomousDatabaseInner> beginRe * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) AutonomousDatabaseInner restore(String resourceGroupName, String autonomousdatabasename, @@ -485,7 +485,7 @@ AutonomousDatabaseInner restore(String resourceGroupName, String autonomousdatab * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) AutonomousDatabaseInner restore(String resourceGroupName, String autonomousdatabasename, @@ -499,7 +499,7 @@ AutonomousDatabaseInner restore(String resourceGroupName, String autonomousdatab * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, AutonomousDatabaseInner> beginShrink(String resourceGroupName, @@ -514,7 +514,7 @@ SyncPoller, AutonomousDatabaseInner> beginSh * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, AutonomousDatabaseInner> beginShrink(String resourceGroupName, @@ -528,7 +528,7 @@ SyncPoller, AutonomousDatabaseInner> beginSh * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) AutonomousDatabaseInner shrink(String resourceGroupName, String autonomousdatabasename); @@ -542,7 +542,7 @@ SyncPoller, AutonomousDatabaseInner> beginSh * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) AutonomousDatabaseInner shrink(String resourceGroupName, String autonomousdatabasename, Context context); @@ -556,7 +556,7 @@ SyncPoller, AutonomousDatabaseInner> beginSh * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, AutonomousDatabaseInner> beginChangeDisasterRecoveryConfiguration( @@ -572,7 +572,7 @@ SyncPoller, AutonomousDatabaseInner> beginCh * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, AutonomousDatabaseInner> beginChangeDisasterRecoveryConfiguration( @@ -588,7 +588,7 @@ SyncPoller, AutonomousDatabaseInner> beginCh * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) AutonomousDatabaseInner changeDisasterRecoveryConfiguration(String resourceGroupName, String autonomousdatabasename, @@ -604,7 +604,7 @@ AutonomousDatabaseInner changeDisasterRecoveryConfiguration(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) AutonomousDatabaseInner changeDisasterRecoveryConfiguration(String resourceGroupName, String autonomousdatabasename, @@ -619,7 +619,7 @@ AutonomousDatabaseInner changeDisasterRecoveryConfiguration(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, AutonomousDatabaseInner> beginAction(String resourceGroupName, @@ -635,7 +635,7 @@ SyncPoller, AutonomousDatabaseInner> beginAc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, AutonomousDatabaseInner> beginAction(String resourceGroupName, @@ -650,7 +650,7 @@ SyncPoller, AutonomousDatabaseInner> beginAc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) AutonomousDatabaseInner action(String resourceGroupName, String autonomousdatabasename, @@ -666,7 +666,7 @@ AutonomousDatabaseInner action(String resourceGroupName, String autonomousdataba * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) AutonomousDatabaseInner action(String resourceGroupName, String autonomousdatabasename, diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/CloudExadataInfrastructuresClient.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/CloudExadataInfrastructuresClient.java index 1d79ee1445e5..24d67ffe89a0 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/CloudExadataInfrastructuresClient.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/CloudExadataInfrastructuresClient.java @@ -285,7 +285,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, CloudExadataInfrastructureInner> @@ -300,7 +300,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, CloudExadataInfrastructureInner> @@ -314,7 +314,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) CloudExadataInfrastructureInner addStorageCapacity(String resourceGroupName, String cloudexadatainfrastructurename); @@ -328,7 +328,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) CloudExadataInfrastructureInner addStorageCapacity(String resourceGroupName, String cloudexadatainfrastructurename, @@ -343,7 +343,7 @@ CloudExadataInfrastructureInner addStorageCapacity(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, CloudExadataInfrastructureInner> beginConfigureExascale( @@ -360,7 +360,7 @@ SyncPoller, CloudExadataInfrastructu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, CloudExadataInfrastructureInner> beginConfigureExascale( @@ -376,7 +376,7 @@ SyncPoller, CloudExadataInfrastructu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) CloudExadataInfrastructureInner configureExascale(String resourceGroupName, String cloudexadatainfrastructurename, @@ -392,7 +392,7 @@ CloudExadataInfrastructureInner configureExascale(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) CloudExadataInfrastructureInner configureExascale(String resourceGroupName, String cloudexadatainfrastructurename, diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/CloudVmClustersClient.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/CloudVmClustersClient.java index 394c122b405a..1e124ffc8ee4 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/CloudVmClustersClient.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/CloudVmClustersClient.java @@ -282,7 +282,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, CloudVmClusterInner> beginAddVms(String resourceGroupName, @@ -298,7 +298,7 @@ SyncPoller, CloudVmClusterInner> beginAddVms(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, CloudVmClusterInner> beginAddVms(String resourceGroupName, @@ -313,7 +313,7 @@ SyncPoller, CloudVmClusterInner> beginAddVms(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) CloudVmClusterInner addVms(String resourceGroupName, String cloudvmclustername, AddRemoveDbNode body); @@ -328,7 +328,7 @@ SyncPoller, CloudVmClusterInner> beginAddVms(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) CloudVmClusterInner addVms(String resourceGroupName, String cloudvmclustername, AddRemoveDbNode body, @@ -343,7 +343,7 @@ CloudVmClusterInner addVms(String resourceGroupName, String cloudvmclustername, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, CloudVmClusterInner> beginRemoveVms(String resourceGroupName, @@ -359,7 +359,7 @@ SyncPoller, CloudVmClusterInner> beginRemoveVms( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, CloudVmClusterInner> beginRemoveVms(String resourceGroupName, @@ -374,7 +374,7 @@ SyncPoller, CloudVmClusterInner> beginRemoveVms( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) CloudVmClusterInner removeVms(String resourceGroupName, String cloudvmclustername, AddRemoveDbNode body); @@ -389,7 +389,7 @@ SyncPoller, CloudVmClusterInner> beginRemoveVms( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) CloudVmClusterInner removeVms(String resourceGroupName, String cloudvmclustername, AddRemoveDbNode body, diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/DbNodesClient.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/DbNodesClient.java index 0174b669290a..2aec74ed51d1 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/DbNodesClient.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/DbNodesClient.java @@ -86,7 +86,7 @@ PagedIterable listByCloudVmCluster(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the DbNode resource belonging to vmCluster. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DbNodeInner> beginAction(String resourceGroupName, String cloudvmclustername, @@ -103,7 +103,7 @@ SyncPoller, DbNodeInner> beginAction(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the DbNode resource belonging to vmCluster. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DbNodeInner> beginAction(String resourceGroupName, String cloudvmclustername, @@ -119,7 +119,7 @@ SyncPoller, DbNodeInner> beginAction(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the DbNode resource belonging to vmCluster. */ @ServiceMethod(returns = ReturnType.SINGLE) DbNodeInner action(String resourceGroupName, String cloudvmclustername, String dbnodeocid, DbNodeAction body); @@ -135,7 +135,7 @@ SyncPoller, DbNodeInner> beginAction(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the DbNode resource belonging to vmCluster. */ @ServiceMethod(returns = ReturnType.SINGLE) DbNodeInner action(String resourceGroupName, String cloudvmclustername, String dbnodeocid, DbNodeAction body, diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/ExadbVmClustersClient.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/ExadbVmClustersClient.java index d1fd88967404..a641ffd2ab8e 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/ExadbVmClustersClient.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/ExadbVmClustersClient.java @@ -279,7 +279,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of exadbVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ExadbVmClusterInner> beginRemoveVms(String resourceGroupName, @@ -295,7 +295,7 @@ SyncPoller, ExadbVmClusterInner> beginRemoveVms( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of exadbVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ExadbVmClusterInner> beginRemoveVms(String resourceGroupName, @@ -310,7 +310,7 @@ SyncPoller, ExadbVmClusterInner> beginRemoveVms( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exadbVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) ExadbVmClusterInner removeVms(String resourceGroupName, String exadbVmClusterName, @@ -326,7 +326,7 @@ ExadbVmClusterInner removeVms(String resourceGroupName, String exadbVmClusterNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exadbVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) ExadbVmClusterInner removeVms(String resourceGroupName, String exadbVmClusterName, diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/ExascaleDbNodesClient.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/ExascaleDbNodesClient.java index de6ad7ff58af..39ed29395b7a 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/ExascaleDbNodesClient.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/fluent/ExascaleDbNodesClient.java @@ -87,7 +87,7 @@ PagedIterable listByParent(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of exascaleDbNode action response. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DbActionResponseInner> beginAction(String resourceGroupName, @@ -104,7 +104,7 @@ SyncPoller, DbActionResponseInner> beginAction * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of exascaleDbNode action response. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DbActionResponseInner> beginAction(String resourceGroupName, @@ -120,7 +120,7 @@ SyncPoller, DbActionResponseInner> beginAction * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exascaleDbNode action response. */ @ServiceMethod(returns = ReturnType.SINGLE) DbActionResponseInner action(String resourceGroupName, String exadbVmClusterName, String exascaleDbNodeName, @@ -137,7 +137,7 @@ DbActionResponseInner action(String resourceGroupName, String exadbVmClusterName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exascaleDbNode action response. */ @ServiceMethod(returns = ReturnType.SINGLE) DbActionResponseInner action(String resourceGroupName, String exadbVmClusterName, String exascaleDbNodeName, diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/AutonomousDatabasesClientImpl.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/AutonomousDatabasesClientImpl.java index 475c592bcb52..2450e616553d 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/AutonomousDatabasesClientImpl.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/AutonomousDatabasesClientImpl.java @@ -1153,7 +1153,7 @@ public PagedIterable listByResourceGroup(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return autonomous Database resource model along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> switchoverWithResponseAsync(String resourceGroupName, @@ -1176,7 +1176,7 @@ private Mono>> switchoverWithResponseAsync(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return autonomous Database resource model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response switchoverWithResponse(String resourceGroupName, String autonomousdatabasename, @@ -1198,7 +1198,7 @@ private Response switchoverWithResponse(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return autonomous Database resource model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response switchoverWithResponse(String resourceGroupName, String autonomousdatabasename, @@ -1219,7 +1219,7 @@ private Response switchoverWithResponse(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, AutonomousDatabaseInner> @@ -1240,7 +1240,7 @@ private Response switchoverWithResponse(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, AutonomousDatabaseInner> @@ -1260,7 +1260,7 @@ private Response switchoverWithResponse(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, AutonomousDatabaseInner> @@ -1280,7 +1280,7 @@ private Response switchoverWithResponse(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return autonomous Database resource model on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono switchoverAsync(String resourceGroupName, String autonomousdatabasename, @@ -1298,7 +1298,7 @@ private Mono switchoverAsync(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) public AutonomousDatabaseInner switchover(String resourceGroupName, String autonomousdatabasename, @@ -1316,7 +1316,7 @@ public AutonomousDatabaseInner switchover(String resourceGroupName, String auton * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) public AutonomousDatabaseInner switchover(String resourceGroupName, String autonomousdatabasename, @@ -1333,7 +1333,7 @@ public AutonomousDatabaseInner switchover(String resourceGroupName, String auton * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return autonomous Database resource model along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> failoverWithResponseAsync(String resourceGroupName, @@ -1356,7 +1356,7 @@ private Mono>> failoverWithResponseAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return autonomous Database resource model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response failoverWithResponse(String resourceGroupName, String autonomousdatabasename, @@ -1378,7 +1378,7 @@ private Response failoverWithResponse(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return autonomous Database resource model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response failoverWithResponse(String resourceGroupName, String autonomousdatabasename, @@ -1399,7 +1399,7 @@ private Response failoverWithResponse(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, AutonomousDatabaseInner> @@ -1420,7 +1420,7 @@ private Response failoverWithResponse(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, AutonomousDatabaseInner> @@ -1440,7 +1440,7 @@ private Response failoverWithResponse(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, AutonomousDatabaseInner> @@ -1459,7 +1459,7 @@ private Response failoverWithResponse(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return autonomous Database resource model on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono failoverAsync(String resourceGroupName, String autonomousdatabasename, @@ -1477,7 +1477,7 @@ private Mono failoverAsync(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) public AutonomousDatabaseInner failover(String resourceGroupName, String autonomousdatabasename, @@ -1495,7 +1495,7 @@ public AutonomousDatabaseInner failover(String resourceGroupName, String autonom * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) public AutonomousDatabaseInner failover(String resourceGroupName, String autonomousdatabasename, PeerDbDetails body, @@ -1593,7 +1593,7 @@ public AutonomousDatabaseWalletFileInner generateWallet(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return autonomous Database resource model along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> restoreWithResponseAsync(String resourceGroupName, @@ -1616,7 +1616,7 @@ private Mono>> restoreWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return autonomous Database resource model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response restoreWithResponse(String resourceGroupName, String autonomousdatabasename, @@ -1638,7 +1638,7 @@ private Response restoreWithResponse(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return autonomous Database resource model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response restoreWithResponse(String resourceGroupName, String autonomousdatabasename, @@ -1659,7 +1659,7 @@ private Response restoreWithResponse(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, AutonomousDatabaseInner> beginRestoreAsync( @@ -1680,7 +1680,7 @@ private PollerFlux, AutonomousDatabaseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, AutonomousDatabaseInner> @@ -1700,7 +1700,7 @@ private PollerFlux, AutonomousDatabaseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, AutonomousDatabaseInner> beginRestore( @@ -1720,7 +1720,7 @@ public SyncPoller, AutonomousDatabaseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return autonomous Database resource model on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono restoreAsync(String resourceGroupName, String autonomousdatabasename, @@ -1738,7 +1738,7 @@ private Mono restoreAsync(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) public AutonomousDatabaseInner restore(String resourceGroupName, String autonomousdatabasename, @@ -1756,7 +1756,7 @@ public AutonomousDatabaseInner restore(String resourceGroupName, String autonomo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) public AutonomousDatabaseInner restore(String resourceGroupName, String autonomousdatabasename, @@ -1772,7 +1772,7 @@ public AutonomousDatabaseInner restore(String resourceGroupName, String autonomo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return autonomous Database resource model along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> shrinkWithResponseAsync(String resourceGroupName, @@ -1792,7 +1792,7 @@ private Mono>> shrinkWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return autonomous Database resource model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response shrinkWithResponse(String resourceGroupName, String autonomousdatabasename) { @@ -1810,7 +1810,7 @@ private Response shrinkWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return autonomous Database resource model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response shrinkWithResponse(String resourceGroupName, String autonomousdatabasename, @@ -1828,7 +1828,7 @@ private Response shrinkWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, AutonomousDatabaseInner> @@ -1847,7 +1847,7 @@ private Response shrinkWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, AutonomousDatabaseInner> @@ -1866,7 +1866,7 @@ private Response shrinkWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, AutonomousDatabaseInner> @@ -1884,7 +1884,7 @@ private Response shrinkWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return autonomous Database resource model on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono shrinkAsync(String resourceGroupName, String autonomousdatabasename) { @@ -1900,7 +1900,7 @@ private Mono shrinkAsync(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) public AutonomousDatabaseInner shrink(String resourceGroupName, String autonomousdatabasename) { @@ -1916,7 +1916,7 @@ public AutonomousDatabaseInner shrink(String resourceGroupName, String autonomou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) public AutonomousDatabaseInner shrink(String resourceGroupName, String autonomousdatabasename, Context context) { @@ -1932,7 +1932,7 @@ public AutonomousDatabaseInner shrink(String resourceGroupName, String autonomou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return autonomous Database resource model along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> changeDisasterRecoveryConfigurationWithResponseAsync( @@ -1955,7 +1955,7 @@ private Mono>> changeDisasterRecoveryConfigurationWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return autonomous Database resource model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response changeDisasterRecoveryConfigurationWithResponse(String resourceGroupName, @@ -1977,7 +1977,7 @@ private Response changeDisasterRecoveryConfigurationWithResponse(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return autonomous Database resource model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response changeDisasterRecoveryConfigurationWithResponse(String resourceGroupName, @@ -1998,7 +1998,7 @@ private Response changeDisasterRecoveryConfigurationWithResponse(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, AutonomousDatabaseInner> @@ -2020,7 +2020,7 @@ private Response changeDisasterRecoveryConfigurationWithResponse(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, AutonomousDatabaseInner> @@ -2042,7 +2042,7 @@ private Response changeDisasterRecoveryConfigurationWithResponse(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, AutonomousDatabaseInner> @@ -2063,7 +2063,7 @@ private Response changeDisasterRecoveryConfigurationWithResponse(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return autonomous Database resource model on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono changeDisasterRecoveryConfigurationAsync(String resourceGroupName, @@ -2081,7 +2081,7 @@ private Mono changeDisasterRecoveryConfigurationAsync(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) public AutonomousDatabaseInner changeDisasterRecoveryConfiguration(String resourceGroupName, @@ -2100,7 +2100,7 @@ public AutonomousDatabaseInner changeDisasterRecoveryConfiguration(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) public AutonomousDatabaseInner changeDisasterRecoveryConfiguration(String resourceGroupName, @@ -2118,7 +2118,7 @@ public AutonomousDatabaseInner changeDisasterRecoveryConfiguration(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return autonomous Database resource model along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> actionWithResponseAsync(String resourceGroupName, @@ -2141,7 +2141,7 @@ private Mono>> actionWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return autonomous Database resource model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response actionWithResponse(String resourceGroupName, String autonomousdatabasename, @@ -2163,7 +2163,7 @@ private Response actionWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return autonomous Database resource model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response actionWithResponse(String resourceGroupName, String autonomousdatabasename, @@ -2184,7 +2184,7 @@ private Response actionWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, AutonomousDatabaseInner> beginActionAsync( @@ -2205,7 +2205,7 @@ private PollerFlux, AutonomousDatabaseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, AutonomousDatabaseInner> @@ -2225,7 +2225,7 @@ private PollerFlux, AutonomousDatabaseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, AutonomousDatabaseInner> beginAction( @@ -2245,7 +2245,7 @@ public SyncPoller, AutonomousDatabaseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return autonomous Database resource model on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono actionAsync(String resourceGroupName, String autonomousdatabasename, @@ -2263,7 +2263,7 @@ private Mono actionAsync(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) public AutonomousDatabaseInner action(String resourceGroupName, String autonomousdatabasename, @@ -2281,7 +2281,7 @@ public AutonomousDatabaseInner action(String resourceGroupName, String autonomou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ @ServiceMethod(returns = ReturnType.SINGLE) public AutonomousDatabaseInner action(String resourceGroupName, String autonomousdatabasename, diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/CloudExadataInfrastructuresClientImpl.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/CloudExadataInfrastructuresClientImpl.java index 4a18ad0d4e41..0662507c3947 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/CloudExadataInfrastructuresClientImpl.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/CloudExadataInfrastructuresClientImpl.java @@ -1065,7 +1065,8 @@ public PagedIterable listByResourceGroup(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return cloudExadataInfrastructure resource definition along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> addStorageCapacityWithResponseAsync(String resourceGroupName, @@ -1085,7 +1086,7 @@ private Mono>> addStorageCapacityWithResponseAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cloudExadataInfrastructure resource definition along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response addStorageCapacityWithResponse(String resourceGroupName, @@ -1104,7 +1105,7 @@ private Response addStorageCapacityWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cloudExadataInfrastructure resource definition along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response addStorageCapacityWithResponse(String resourceGroupName, @@ -1122,7 +1123,7 @@ private Response addStorageCapacityWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, CloudExadataInfrastructureInner> @@ -1142,7 +1143,7 @@ private Response addStorageCapacityWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, CloudExadataInfrastructureInner> @@ -1162,7 +1163,7 @@ private Response addStorageCapacityWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, CloudExadataInfrastructureInner> @@ -1181,7 +1182,7 @@ private Response addStorageCapacityWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return cloudExadataInfrastructure resource definition on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono addStorageCapacityAsync(String resourceGroupName, @@ -1198,7 +1199,7 @@ private Mono addStorageCapacityAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) public CloudExadataInfrastructureInner addStorageCapacity(String resourceGroupName, @@ -1215,7 +1216,7 @@ public CloudExadataInfrastructureInner addStorageCapacity(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) public CloudExadataInfrastructureInner addStorageCapacity(String resourceGroupName, @@ -1232,7 +1233,8 @@ public CloudExadataInfrastructureInner addStorageCapacity(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return cloudExadataInfrastructure resource definition along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> configureExascaleWithResponseAsync(String resourceGroupName, @@ -1255,7 +1257,7 @@ private Mono>> configureExascaleWithResponseAsync(Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cloudExadataInfrastructure resource definition along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response configureExascaleWithResponse(String resourceGroupName, @@ -1277,7 +1279,7 @@ private Response configureExascaleWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cloudExadataInfrastructure resource definition along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response configureExascaleWithResponse(String resourceGroupName, @@ -1299,7 +1301,7 @@ private Response configureExascaleWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, CloudExadataInfrastructureInner> @@ -1321,7 +1323,7 @@ private Response configureExascaleWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, CloudExadataInfrastructureInner> @@ -1343,7 +1345,7 @@ private Response configureExascaleWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, CloudExadataInfrastructureInner> @@ -1364,7 +1366,7 @@ private Response configureExascaleWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return cloudExadataInfrastructure resource definition on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono configureExascaleAsync(String resourceGroupName, @@ -1382,7 +1384,7 @@ private Mono configureExascaleAsync(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) public CloudExadataInfrastructureInner configureExascale(String resourceGroupName, @@ -1400,7 +1402,7 @@ public CloudExadataInfrastructureInner configureExascale(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) public CloudExadataInfrastructureInner configureExascale(String resourceGroupName, diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/CloudVmClustersClientImpl.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/CloudVmClustersClientImpl.java index fc95aa07e471..cf6b694ae2f7 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/CloudVmClustersClientImpl.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/CloudVmClustersClientImpl.java @@ -1064,7 +1064,7 @@ public PagedIterable listByResourceGroup(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return cloudVmCluster resource definition along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> addVmsWithResponseAsync(String resourceGroupName, @@ -1085,7 +1085,7 @@ private Mono>> addVmsWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cloudVmCluster resource definition along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response addVmsWithResponse(String resourceGroupName, String cloudvmclustername, @@ -1107,7 +1107,7 @@ private Response addVmsWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cloudVmCluster resource definition along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response addVmsWithResponse(String resourceGroupName, String cloudvmclustername, @@ -1127,7 +1127,7 @@ private Response addVmsWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, CloudVmClusterInner> beginAddVmsAsync(String resourceGroupName, @@ -1146,7 +1146,7 @@ private PollerFlux, CloudVmClusterInner> beginAd * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, CloudVmClusterInner> beginAddVms(String resourceGroupName, @@ -1166,7 +1166,7 @@ public SyncPoller, CloudVmClusterInner> beginAdd * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, CloudVmClusterInner> beginAddVms(String resourceGroupName, @@ -1185,7 +1185,7 @@ public SyncPoller, CloudVmClusterInner> beginAdd * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return cloudVmCluster resource definition on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono addVmsAsync(String resourceGroupName, String cloudvmclustername, @@ -1203,7 +1203,7 @@ private Mono addVmsAsync(String resourceGroupName, String c * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) public CloudVmClusterInner addVms(String resourceGroupName, String cloudvmclustername, AddRemoveDbNode body) { @@ -1220,7 +1220,7 @@ public CloudVmClusterInner addVms(String resourceGroupName, String cloudvmcluste * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) public CloudVmClusterInner addVms(String resourceGroupName, String cloudvmclustername, AddRemoveDbNode body, @@ -1237,7 +1237,7 @@ public CloudVmClusterInner addVms(String resourceGroupName, String cloudvmcluste * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return cloudVmCluster resource definition along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> removeVmsWithResponseAsync(String resourceGroupName, @@ -1258,7 +1258,7 @@ private Mono>> removeVmsWithResponseAsync(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cloudVmCluster resource definition along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response removeVmsWithResponse(String resourceGroupName, String cloudvmclustername, @@ -1280,7 +1280,7 @@ private Response removeVmsWithResponse(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return cloudVmCluster resource definition along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response removeVmsWithResponse(String resourceGroupName, String cloudvmclustername, @@ -1300,7 +1300,7 @@ private Response removeVmsWithResponse(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, CloudVmClusterInner> @@ -1319,7 +1319,7 @@ private Response removeVmsWithResponse(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, CloudVmClusterInner> beginRemoveVms(String resourceGroupName, @@ -1339,7 +1339,7 @@ public SyncPoller, CloudVmClusterInner> beginRem * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, CloudVmClusterInner> beginRemoveVms(String resourceGroupName, @@ -1358,7 +1358,7 @@ public SyncPoller, CloudVmClusterInner> beginRem * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return cloudVmCluster resource definition on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono removeVmsAsync(String resourceGroupName, String cloudvmclustername, @@ -1376,7 +1376,7 @@ private Mono removeVmsAsync(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) public CloudVmClusterInner removeVms(String resourceGroupName, String cloudvmclustername, AddRemoveDbNode body) { @@ -1393,7 +1393,7 @@ public CloudVmClusterInner removeVms(String resourceGroupName, String cloudvmclu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) public CloudVmClusterInner removeVms(String resourceGroupName, String cloudvmclustername, AddRemoveDbNode body, diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/DbNodesClientImpl.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/DbNodesClientImpl.java index ac2bafa67d90..fe87c82ec361 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/DbNodesClientImpl.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/DbNodesClientImpl.java @@ -347,7 +347,8 @@ public PagedIterable listByCloudVmCluster(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the DbNode resource belonging to vmCluster along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> actionWithResponseAsync(String resourceGroupName, @@ -371,7 +372,7 @@ private Mono>> actionWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the DbNode resource belonging to vmCluster along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response actionWithResponse(String resourceGroupName, String cloudvmclustername, @@ -394,7 +395,7 @@ private Response actionWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the DbNode resource belonging to vmCluster along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response actionWithResponse(String resourceGroupName, String cloudvmclustername, @@ -416,7 +417,7 @@ private Response actionWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the DbNode resource belonging to vmCluster. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, DbNodeInner> beginActionAsync(String resourceGroupName, @@ -437,7 +438,7 @@ private PollerFlux, DbNodeInner> beginActionAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the DbNode resource belonging to vmCluster. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DbNodeInner> beginAction(String resourceGroupName, @@ -458,7 +459,7 @@ public SyncPoller, DbNodeInner> beginAction(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the DbNode resource belonging to vmCluster. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DbNodeInner> beginAction(String resourceGroupName, @@ -479,7 +480,7 @@ public SyncPoller, DbNodeInner> beginAction(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the DbNode resource belonging to vmCluster on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono actionAsync(String resourceGroupName, String cloudvmclustername, String dbnodeocid, @@ -498,7 +499,7 @@ private Mono actionAsync(String resourceGroupName, String cloudvmcl * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the DbNode resource belonging to vmCluster. */ @ServiceMethod(returns = ReturnType.SINGLE) public DbNodeInner action(String resourceGroupName, String cloudvmclustername, String dbnodeocid, @@ -517,7 +518,7 @@ public DbNodeInner action(String resourceGroupName, String cloudvmclustername, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the DbNode resource belonging to vmCluster. */ @ServiceMethod(returns = ReturnType.SINGLE) public DbNodeInner action(String resourceGroupName, String cloudvmclustername, String dbnodeocid, DbNodeAction body, diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/ExadbVmClustersClientImpl.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/ExadbVmClustersClientImpl.java index 3c87d51f72c2..fdc674e04243 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/ExadbVmClustersClientImpl.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/ExadbVmClustersClientImpl.java @@ -1023,7 +1023,7 @@ public PagedIterable listByResourceGroup(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return exadbVmCluster resource definition along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> removeVmsWithResponseAsync(String resourceGroupName, @@ -1044,7 +1044,7 @@ private Mono>> removeVmsWithResponseAsync(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return exadbVmCluster resource definition along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response removeVmsWithResponse(String resourceGroupName, String exadbVmClusterName, @@ -1066,7 +1066,7 @@ private Response removeVmsWithResponse(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return exadbVmCluster resource definition along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response removeVmsWithResponse(String resourceGroupName, String exadbVmClusterName, @@ -1086,7 +1086,7 @@ private Response removeVmsWithResponse(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of exadbVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ExadbVmClusterInner> beginRemoveVmsAsync( @@ -1105,7 +1105,7 @@ private PollerFlux, ExadbVmClusterInner> beginRe * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of exadbVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ExadbVmClusterInner> beginRemoveVms(String resourceGroupName, @@ -1125,7 +1125,7 @@ public SyncPoller, ExadbVmClusterInner> beginRem * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of exadbVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ExadbVmClusterInner> beginRemoveVms(String resourceGroupName, @@ -1144,7 +1144,7 @@ public SyncPoller, ExadbVmClusterInner> beginRem * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return exadbVmCluster resource definition on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono removeVmsAsync(String resourceGroupName, String exadbVmClusterName, @@ -1162,7 +1162,7 @@ private Mono removeVmsAsync(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exadbVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) public ExadbVmClusterInner removeVms(String resourceGroupName, String exadbVmClusterName, @@ -1180,7 +1180,7 @@ public ExadbVmClusterInner removeVms(String resourceGroupName, String exadbVmClu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exadbVmCluster resource definition. */ @ServiceMethod(returns = ReturnType.SINGLE) public ExadbVmClusterInner removeVms(String resourceGroupName, String exadbVmClusterName, diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/ExascaleDbNodesClientImpl.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/ExascaleDbNodesClientImpl.java index 044937e5a60b..224eb650ffa6 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/ExascaleDbNodesClientImpl.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/implementation/ExascaleDbNodesClientImpl.java @@ -353,7 +353,7 @@ public PagedIterable listByParent(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return exascaleDbNode action response along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> actionWithResponseAsync(String resourceGroupName, @@ -377,7 +377,7 @@ private Mono>> actionWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return exascaleDbNode action response along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response actionWithResponse(String resourceGroupName, String exadbVmClusterName, @@ -400,7 +400,7 @@ private Response actionWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return exascaleDbNode action response along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response actionWithResponse(String resourceGroupName, String exadbVmClusterName, @@ -422,7 +422,7 @@ private Response actionWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of exascaleDbNode action response. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, DbActionResponseInner> beginActionAsync( @@ -444,7 +444,7 @@ private PollerFlux, DbActionResponseInner> beg * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of exascaleDbNode action response. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DbActionResponseInner> beginAction(String resourceGroupName, @@ -466,7 +466,7 @@ public SyncPoller, DbActionResponseInner> begi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of exascaleDbNode action response. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DbActionResponseInner> beginAction(String resourceGroupName, @@ -487,7 +487,7 @@ public SyncPoller, DbActionResponseInner> begi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return exascaleDbNode action response on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono actionAsync(String resourceGroupName, String exadbVmClusterName, @@ -506,7 +506,7 @@ private Mono actionAsync(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exascaleDbNode action response. */ @ServiceMethod(returns = ReturnType.SINGLE) public DbActionResponseInner action(String resourceGroupName, String exadbVmClusterName, String exascaleDbNodeName, @@ -525,7 +525,7 @@ public DbActionResponseInner action(String resourceGroupName, String exadbVmClus * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exascaleDbNode action response. */ @ServiceMethod(returns = ReturnType.SINGLE) public DbActionResponseInner action(String resourceGroupName, String exadbVmClusterName, String exascaleDbNodeName, diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/AutonomousDatabase.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/AutonomousDatabase.java index b53a6639867b..33f51ee1af00 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/AutonomousDatabase.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/AutonomousDatabase.java @@ -271,7 +271,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase switchover(PeerDbDetails body); @@ -283,7 +283,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase switchover(PeerDbDetails body, Context context); @@ -294,7 +294,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase failover(PeerDbDetails body); @@ -306,7 +306,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase failover(PeerDbDetails body, Context context); @@ -341,7 +341,7 @@ Response generateWalletWithResponse(GenerateAutono * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase restore(RestoreAutonomousDatabaseDetails body); @@ -353,7 +353,7 @@ Response generateWalletWithResponse(GenerateAutono * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase restore(RestoreAutonomousDatabaseDetails body, Context context); @@ -362,7 +362,7 @@ Response generateWalletWithResponse(GenerateAutono * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase shrink(); @@ -373,7 +373,7 @@ Response generateWalletWithResponse(GenerateAutono * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase shrink(Context context); @@ -384,7 +384,7 @@ Response generateWalletWithResponse(GenerateAutono * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase changeDisasterRecoveryConfiguration(DisasterRecoveryConfigurationDetails body); @@ -396,7 +396,7 @@ Response generateWalletWithResponse(GenerateAutono * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase changeDisasterRecoveryConfiguration(DisasterRecoveryConfigurationDetails body, Context context); @@ -407,7 +407,7 @@ Response generateWalletWithResponse(GenerateAutono * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase action(AutonomousDatabaseLifecycleAction body); @@ -419,7 +419,7 @@ Response generateWalletWithResponse(GenerateAutono * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase action(AutonomousDatabaseLifecycleAction body, Context context); } diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/AutonomousDatabases.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/AutonomousDatabases.java index f4c300001f1d..60066cc95f50 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/AutonomousDatabases.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/AutonomousDatabases.java @@ -113,7 +113,7 @@ Response getByResourceGroupWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase switchover(String resourceGroupName, String autonomousdatabasename, PeerDbDetails body); @@ -127,7 +127,7 @@ Response getByResourceGroupWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase switchover(String resourceGroupName, String autonomousdatabasename, PeerDbDetails body, Context context); @@ -141,7 +141,7 @@ AutonomousDatabase switchover(String resourceGroupName, String autonomousdatabas * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase failover(String resourceGroupName, String autonomousdatabasename, PeerDbDetails body); @@ -155,7 +155,7 @@ AutonomousDatabase switchover(String resourceGroupName, String autonomousdatabas * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase failover(String resourceGroupName, String autonomousdatabasename, PeerDbDetails body, Context context); @@ -198,7 +198,7 @@ AutonomousDatabaseWalletFile generateWallet(String resourceGroupName, String aut * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase restore(String resourceGroupName, String autonomousdatabasename, RestoreAutonomousDatabaseDetails body); @@ -213,7 +213,7 @@ AutonomousDatabase restore(String resourceGroupName, String autonomousdatabasena * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase restore(String resourceGroupName, String autonomousdatabasename, RestoreAutonomousDatabaseDetails body, Context context); @@ -226,7 +226,7 @@ AutonomousDatabase restore(String resourceGroupName, String autonomousdatabasena * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase shrink(String resourceGroupName, String autonomousdatabasename); @@ -239,7 +239,7 @@ AutonomousDatabase restore(String resourceGroupName, String autonomousdatabasena * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase shrink(String resourceGroupName, String autonomousdatabasename, Context context); @@ -252,7 +252,7 @@ AutonomousDatabase restore(String resourceGroupName, String autonomousdatabasena * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase changeDisasterRecoveryConfiguration(String resourceGroupName, String autonomousdatabasename, DisasterRecoveryConfigurationDetails body); @@ -267,7 +267,7 @@ AutonomousDatabase changeDisasterRecoveryConfiguration(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase changeDisasterRecoveryConfiguration(String resourceGroupName, String autonomousdatabasename, DisasterRecoveryConfigurationDetails body, Context context); @@ -281,7 +281,7 @@ AutonomousDatabase changeDisasterRecoveryConfiguration(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase action(String resourceGroupName, String autonomousdatabasename, AutonomousDatabaseLifecycleAction body); @@ -296,7 +296,7 @@ AutonomousDatabase action(String resourceGroupName, String autonomousdatabasenam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return autonomous Database resource model. */ AutonomousDatabase action(String resourceGroupName, String autonomousdatabasename, AutonomousDatabaseLifecycleAction body, Context context); diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudExadataInfrastructure.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudExadataInfrastructure.java index f41860a50d86..62186454b797 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudExadataInfrastructure.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudExadataInfrastructure.java @@ -302,7 +302,7 @@ interface WithProperties { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ CloudExadataInfrastructure addStorageCapacity(); @@ -313,7 +313,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ CloudExadataInfrastructure addStorageCapacity(Context context); @@ -324,7 +324,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ CloudExadataInfrastructure configureExascale(ConfigureExascaleCloudExadataInfrastructureDetails body); @@ -336,7 +336,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ CloudExadataInfrastructure configureExascale(ConfigureExascaleCloudExadataInfrastructureDetails body, Context context); diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudExadataInfrastructures.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudExadataInfrastructures.java index eb4a83411052..ad35284927aa 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudExadataInfrastructures.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudExadataInfrastructures.java @@ -116,7 +116,7 @@ Response getByResourceGroupWithResponse(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ CloudExadataInfrastructure addStorageCapacity(String resourceGroupName, String cloudexadatainfrastructurename); @@ -129,7 +129,7 @@ Response getByResourceGroupWithResponse(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ CloudExadataInfrastructure addStorageCapacity(String resourceGroupName, String cloudexadatainfrastructurename, Context context); @@ -143,7 +143,7 @@ CloudExadataInfrastructure addStorageCapacity(String resourceGroupName, String c * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ CloudExadataInfrastructure configureExascale(String resourceGroupName, String cloudexadatainfrastructurename, ConfigureExascaleCloudExadataInfrastructureDetails body); @@ -158,7 +158,7 @@ CloudExadataInfrastructure configureExascale(String resourceGroupName, String cl * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudExadataInfrastructure resource definition. */ CloudExadataInfrastructure configureExascale(String resourceGroupName, String cloudexadatainfrastructurename, ConfigureExascaleCloudExadataInfrastructureDetails body, Context context); diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudVmCluster.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudVmCluster.java index f1af7edcad79..7963029b51e5 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudVmCluster.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudVmCluster.java @@ -272,7 +272,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ CloudVmCluster addVms(AddRemoveDbNode body); @@ -284,7 +284,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ CloudVmCluster addVms(AddRemoveDbNode body, Context context); @@ -295,7 +295,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ CloudVmCluster removeVms(AddRemoveDbNode body); @@ -307,7 +307,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ CloudVmCluster removeVms(AddRemoveDbNode body, Context context); diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudVmClusters.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudVmClusters.java index 13d22d419e54..da6ebf637522 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudVmClusters.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/CloudVmClusters.java @@ -114,7 +114,7 @@ Response getByResourceGroupWithResponse(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ CloudVmCluster addVms(String resourceGroupName, String cloudvmclustername, AddRemoveDbNode body); @@ -128,7 +128,7 @@ Response getByResourceGroupWithResponse(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ CloudVmCluster addVms(String resourceGroupName, String cloudvmclustername, AddRemoveDbNode body, Context context); @@ -141,7 +141,7 @@ Response getByResourceGroupWithResponse(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ CloudVmCluster removeVms(String resourceGroupName, String cloudvmclustername, AddRemoveDbNode body); @@ -155,7 +155,7 @@ Response getByResourceGroupWithResponse(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return cloudVmCluster resource definition. */ CloudVmCluster removeVms(String resourceGroupName, String cloudvmclustername, AddRemoveDbNode body, Context context); diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/DbNodes.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/DbNodes.java index 44bd4b217e13..0261723c29da 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/DbNodes.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/DbNodes.java @@ -75,7 +75,7 @@ Response getWithResponse(String resourceGroupName, String cloudvmcluster * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the DbNode resource belonging to vmCluster. */ DbNode action(String resourceGroupName, String cloudvmclustername, String dbnodeocid, DbNodeAction body); @@ -90,7 +90,7 @@ Response getWithResponse(String resourceGroupName, String cloudvmcluster * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the DbNode resource belonging to vmCluster. */ DbNode action(String resourceGroupName, String cloudvmclustername, String dbnodeocid, DbNodeAction body, Context context); diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/ExadbVmCluster.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/ExadbVmCluster.java index e684a9fa84f5..89c2feb2b59e 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/ExadbVmCluster.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/ExadbVmCluster.java @@ -305,7 +305,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exadbVmCluster resource definition. */ ExadbVmCluster removeVms(RemoveVirtualMachineFromExadbVmClusterDetails body); @@ -317,7 +317,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exadbVmCluster resource definition. */ ExadbVmCluster removeVms(RemoveVirtualMachineFromExadbVmClusterDetails body, Context context); } diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/ExadbVmClusters.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/ExadbVmClusters.java index e658c4550b1f..68f29bc14e23 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/ExadbVmClusters.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/ExadbVmClusters.java @@ -113,7 +113,7 @@ Response getByResourceGroupWithResponse(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exadbVmCluster resource definition. */ ExadbVmCluster removeVms(String resourceGroupName, String exadbVmClusterName, RemoveVirtualMachineFromExadbVmClusterDetails body); @@ -128,7 +128,7 @@ ExadbVmCluster removeVms(String resourceGroupName, String exadbVmClusterName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exadbVmCluster resource definition. */ ExadbVmCluster removeVms(String resourceGroupName, String exadbVmClusterName, RemoveVirtualMachineFromExadbVmClusterDetails body, Context context); diff --git a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/ExascaleDbNodes.java b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/ExascaleDbNodes.java index 09370238579f..acd88089fccc 100644 --- a/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/ExascaleDbNodes.java +++ b/sdk/oracledatabase/azure-resourcemanager-oracledatabase/src/main/java/com/azure/resourcemanager/oracledatabase/models/ExascaleDbNodes.java @@ -75,7 +75,7 @@ Response getWithResponse(String resourceGroupName, String exadbV * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exascaleDbNode action response. */ DbActionResponse action(String resourceGroupName, String exadbVmClusterName, String exascaleDbNodeName, DbNodeAction body); @@ -91,7 +91,7 @@ DbActionResponse action(String resourceGroupName, String exadbVmClusterName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return exascaleDbNode action response. */ DbActionResponse action(String resourceGroupName, String exadbVmClusterName, String exascaleDbNodeName, DbNodeAction body, Context context); diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/assets.json b/sdk/planetarycomputer/azure-analytics-planetarycomputer/assets.json index 9edf9dc238d7..a104fa38f0a5 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/assets.json +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/assets.json @@ -2,5 +2,5 @@ "AssetsRepo":"Azure/azure-sdk-assets", "AssetsRepoPrefixPath":"java", "TagPrefix":"java/planetarycomputer/azure-analytics-planetarycomputer", - "Tag": "java/planetarycomputer/azure-analytics-planetarycomputer_6c360ce743" + "Tag": "java/planetarycomputer/azure-analytics-planetarycomputer_fb1a365bf2" } \ No newline at end of file diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/DataAsyncClient.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/DataAsyncClient.java index be89b1ea7fe9..aba4dc301c3d 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/DataAsyncClient.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/DataAsyncClient.java @@ -9,24 +9,16 @@ import com.azure.analytics.planetarycomputer.models.AssetStatisticsResponse; import com.azure.analytics.planetarycomputer.models.ClassMapLegendResponse; import com.azure.analytics.planetarycomputer.models.ColorMapNames; -import com.azure.analytics.planetarycomputer.models.CropGeoJsonContentType; import com.azure.analytics.planetarycomputer.models.CropGeoJsonOptions; -import com.azure.analytics.planetarycomputer.models.CropGeoJsonWithDimensionsContentType; import com.azure.analytics.planetarycomputer.models.Feature; import com.azure.analytics.planetarycomputer.models.GetAssetStatisticsOptions; import com.azure.analytics.planetarycomputer.models.GetGeoJsonStatisticsOptions; import com.azure.analytics.planetarycomputer.models.GetMosaicTileJsonOptions; import com.azure.analytics.planetarycomputer.models.GetMosaicTileOptions; import com.azure.analytics.planetarycomputer.models.GetMosaicWmtsCapabilitiesOptions; -import com.azure.analytics.planetarycomputer.models.GetMosaicsTileContentType; -import com.azure.analytics.planetarycomputer.models.GetPartContentType; import com.azure.analytics.planetarycomputer.models.GetPartOptions; -import com.azure.analytics.planetarycomputer.models.GetPartWithDimensionsContentType; -import com.azure.analytics.planetarycomputer.models.GetPreviewContentType; import com.azure.analytics.planetarycomputer.models.GetPreviewOptions; -import com.azure.analytics.planetarycomputer.models.GetPreviewWithFormatContentType; import com.azure.analytics.planetarycomputer.models.GetStatisticsOptions; -import com.azure.analytics.planetarycomputer.models.GetTileContentType; import com.azure.analytics.planetarycomputer.models.GetTileJsonOptions; import com.azure.analytics.planetarycomputer.models.GetTileOptions; import com.azure.analytics.planetarycomputer.models.GetWmtsCapabilitiesOptions; @@ -452,8 +444,6 @@ public Mono> getBoundsWithResponse(String collectionId, Str * @param collectionId STAC Collection Identifier. * @param itemId STAC Item Identifier. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param body Request GeoJson body. * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. @@ -465,9 +455,8 @@ public Mono> getBoundsWithResponse(String collectionId, Str @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono> cropGeoJsonWithResponse(String collectionId, String itemId, String format, - String accept, BinaryData body, RequestOptions requestOptions) { - return this.serviceClient.cropGeoJsonWithResponseAsync(collectionId, itemId, format, accept, body, - requestOptions); + BinaryData body, RequestOptions requestOptions) { + return this.serviceClient.cropGeoJsonWithResponseAsync(collectionId, itemId, format, body, requestOptions); } /** @@ -561,8 +550,6 @@ public Mono> cropGeoJsonWithResponse(String collectionId, S * @param width Width in pixels for the output image. * @param height Height in pixels for the output image. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param body Request GeoJson body. * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. @@ -574,9 +561,9 @@ public Mono> cropGeoJsonWithResponse(String collectionId, S @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono> cropGeoJsonWithDimensionsWithResponse(String collectionId, String itemId, - int width, int height, String format, String accept, BinaryData body, RequestOptions requestOptions) { + int width, int height, String format, BinaryData body, RequestOptions requestOptions) { return this.serviceClient.cropGeoJsonWithDimensionsWithResponseAsync(collectionId, itemId, width, height, - format, accept, body, requestOptions); + format, body, requestOptions); } /** @@ -957,8 +944,6 @@ public Mono> getItemAssetDetailsWithResponse(String collect * @param maxx Bounding box max X. * @param maxy Bounding box max Y. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -969,8 +954,8 @@ public Mono> getItemAssetDetailsWithResponse(String collect @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getPartWithResponse(String collectionId, String itemId, double minx, double miny, - double maxx, double maxy, String format, String accept, RequestOptions requestOptions) { - return this.serviceClient.getPartWithResponseAsync(collectionId, itemId, minx, miny, maxx, maxy, format, accept, + double maxx, double maxy, String format, RequestOptions requestOptions) { + return this.serviceClient.getPartWithResponseAsync(collectionId, itemId, minx, miny, maxx, maxy, format, requestOptions); } @@ -1051,8 +1036,6 @@ public Mono> getPartWithResponse(String collectionId, Strin * @param width Width in pixels for the output image. * @param height Height in pixels for the output image. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -1063,10 +1046,9 @@ public Mono> getPartWithResponse(String collectionId, Strin @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getPartWithDimensionsWithResponse(String collectionId, String itemId, double minx, - double miny, double maxx, double maxy, int width, int height, String format, String accept, - RequestOptions requestOptions) { + double miny, double maxx, double maxy, int width, int height, String format, RequestOptions requestOptions) { return this.serviceClient.getPartWithDimensionsWithResponseAsync(collectionId, itemId, minx, miny, maxx, maxy, - width, height, format, accept, requestOptions); + width, height, format, requestOptions); } /** @@ -1200,8 +1182,6 @@ public Mono> getPointWithResponse(String collectionId, Stri * * @param collectionId STAC Collection Identifier. * @param itemId STAC Item Identifier. - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -1211,9 +1191,9 @@ public Mono> getPointWithResponse(String collectionId, Stri */ @Generated @ServiceMethod(returns = ReturnType.SINGLE) - public Mono> getPreviewWithResponse(String collectionId, String itemId, String accept, + public Mono> getPreviewWithResponse(String collectionId, String itemId, RequestOptions requestOptions) { - return this.serviceClient.getPreviewWithResponseAsync(collectionId, itemId, accept, requestOptions); + return this.serviceClient.getPreviewWithResponseAsync(collectionId, itemId, requestOptions); } /** @@ -1287,8 +1267,6 @@ public Mono> getPreviewWithResponse(String collectionId, St * @param collectionId STAC Collection Identifier. * @param itemId STAC Item Identifier. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -1299,9 +1277,8 @@ public Mono> getPreviewWithResponse(String collectionId, St @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getPreviewWithFormatWithResponse(String collectionId, String itemId, - String format, String accept, RequestOptions requestOptions) { - return this.serviceClient.getPreviewWithFormatWithResponseAsync(collectionId, itemId, format, accept, - requestOptions); + String format, RequestOptions requestOptions) { + return this.serviceClient.getPreviewWithFormatWithResponseAsync(collectionId, itemId, format, requestOptions); } /** @@ -1683,8 +1660,6 @@ public Mono> getTileJsonWithResponse(String collectionId, S * MatrixWidth-1 for the selected TileMatrix. * @param scale Numeric scale factor for the tile. Higher values produce larger tiles. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -1695,9 +1670,9 @@ public Mono> getTileJsonWithResponse(String collectionId, S @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getTileWithResponse(String collectionId, String itemId, String tileMatrixSetId, - double z, double x, double y, double scale, String format, String accept, RequestOptions requestOptions) { + double z, double x, double y, double scale, String format, RequestOptions requestOptions) { return this.serviceClient.getTileWithResponseAsync(collectionId, itemId, tileMatrixSetId, z, x, y, scale, - format, accept, requestOptions); + format, requestOptions); } /** @@ -2548,8 +2523,6 @@ public Mono> getMosaicsTileJsonWithResponse(String searchId * MatrixWidth-1 for the selected TileMatrix. * @param scale Numeric scale factor for the tile. Higher values produce larger tiles. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -2560,9 +2533,9 @@ public Mono> getMosaicsTileJsonWithResponse(String searchId @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getMosaicsTileWithResponse(String searchId, String tileMatrixSetId, double z, - double x, double y, double scale, String format, String accept, RequestOptions requestOptions) { + double x, double y, double scale, String format, RequestOptions requestOptions) { return this.serviceClient.getMosaicsTileWithResponseAsync(searchId, tileMatrixSetId, z, x, y, scale, format, - accept, requestOptions); + requestOptions); } /** @@ -2851,7 +2824,6 @@ public Mono getBounds(String collectionId, String itemId) { * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for GeoJSON cropping including asset selection, terrain algorithms, and visual rendering. * @param body Request GeoJson body. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -2863,7 +2835,7 @@ public Mono getBounds(String collectionId, String itemId) { @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono cropGeoJson(String collectionId, String itemId, String format, CropGeoJsonOptions options, - Feature body, CropGeoJsonContentType accept) { + Feature body) { // Generated convenience method for cropGeoJsonWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -2938,8 +2910,8 @@ public Mono cropGeoJson(String collectionId, String itemId, String f if (returnMask != null) { requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } - return cropGeoJsonWithResponse(collectionId, itemId, format, accept.toString(), BinaryData.fromObject(body), - requestOptions).flatMap(FluxUtil::toMono); + return cropGeoJsonWithResponse(collectionId, itemId, format, BinaryData.fromObject(body), requestOptions) + .flatMap(FluxUtil::toMono); } /** @@ -2954,7 +2926,6 @@ public Mono cropGeoJson(String collectionId, String itemId, String f * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for GeoJSON cropping including asset selection, terrain algorithms, and visual rendering. * @param body Request GeoJson body. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -2966,7 +2937,7 @@ public Mono cropGeoJson(String collectionId, String itemId, String f @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono cropGeoJsonWithDimensions(String collectionId, String itemId, int width, int height, - String format, CropGeoJsonOptions options, Feature body, CropGeoJsonWithDimensionsContentType accept) { + String format, CropGeoJsonOptions options, Feature body) { // Generated convenience method for cropGeoJsonWithDimensionsWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -3041,7 +3012,7 @@ public Mono cropGeoJsonWithDimensions(String collectionId, String it if (returnMask != null) { requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } - return cropGeoJsonWithDimensionsWithResponse(collectionId, itemId, width, height, format, accept.toString(), + return cropGeoJsonWithDimensionsWithResponse(collectionId, itemId, width, height, format, BinaryData.fromObject(body), requestOptions).flatMap(FluxUtil::toMono); } @@ -3261,7 +3232,6 @@ public Mono getItemAssetDetails(String collectionId, Strin * @param maxy Bounding box max Y. * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for part generation including asset selection, terrain algorithms, and visual rendering. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -3273,7 +3243,7 @@ public Mono getItemAssetDetails(String collectionId, Strin @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono getPart(String collectionId, String itemId, double minx, double miny, double maxx, - double maxy, String format, GetPartOptions options, GetPartContentType accept) { + double maxy, String format, GetPartOptions options) { // Generated convenience method for getPartWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -3352,8 +3322,8 @@ public Mono getPart(String collectionId, String itemId, double minx, if (returnMask != null) { requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } - return getPartWithResponse(collectionId, itemId, minx, miny, maxx, maxy, format, accept.toString(), - requestOptions).flatMap(FluxUtil::toMono); + return getPartWithResponse(collectionId, itemId, minx, miny, maxx, maxy, format, requestOptions) + .flatMap(FluxUtil::toMono); } /** @@ -3371,7 +3341,6 @@ public Mono getPart(String collectionId, String itemId, double minx, * @param height Height in pixels for the output image. * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for part generation including asset selection, terrain algorithms, and visual rendering. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -3383,8 +3352,7 @@ public Mono getPart(String collectionId, String itemId, double minx, @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono getPartWithDimensions(String collectionId, String itemId, double minx, double miny, - double maxx, double maxy, int width, int height, String format, GetPartOptions options, - GetPartWithDimensionsContentType accept) { + double maxx, double maxy, int width, int height, String format, GetPartOptions options) { // Generated convenience method for getPartWithDimensionsWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -3464,7 +3432,7 @@ public Mono getPartWithDimensions(String collectionId, String itemId requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } return getPartWithDimensionsWithResponse(collectionId, itemId, minx, miny, maxx, maxy, width, height, format, - accept.toString(), requestOptions).flatMap(FluxUtil::toMono); + requestOptions).flatMap(FluxUtil::toMono); } /** @@ -3570,7 +3538,6 @@ public Mono getPoint(String collectionId, String * @param itemId STAC Item Identifier. * @param options Options for preview generation including asset selection, terrain algorithms, and visual * rendering. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -3581,8 +3548,7 @@ public Mono getPoint(String collectionId, String */ @Generated @ServiceMethod(returns = ReturnType.SINGLE) - public Mono getPreview(String collectionId, String itemId, GetPreviewOptions options, - GetPreviewContentType accept) { + public Mono getPreview(String collectionId, String itemId, GetPreviewOptions options) { // Generated convenience method for getPreviewWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -3665,8 +3631,7 @@ public Mono getPreview(String collectionId, String itemId, GetPrevie if (returnMask != null) { requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } - return getPreviewWithResponse(collectionId, itemId, accept.toString(), requestOptions) - .flatMap(FluxUtil::toMono); + return getPreviewWithResponse(collectionId, itemId, requestOptions).flatMap(FluxUtil::toMono); } /** @@ -3679,7 +3644,6 @@ public Mono getPreview(String collectionId, String itemId, GetPrevie * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for preview generation including asset selection, terrain algorithms, and visual * rendering. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -3691,7 +3655,7 @@ public Mono getPreview(String collectionId, String itemId, GetPrevie @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono getPreviewWithFormat(String collectionId, String itemId, String format, - GetPreviewOptions options, GetPreviewWithFormatContentType accept) { + GetPreviewOptions options) { // Generated convenience method for getPreviewWithFormatWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -3774,8 +3738,7 @@ public Mono getPreviewWithFormat(String collectionId, String itemId, if (returnMask != null) { requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } - return getPreviewWithFormatWithResponse(collectionId, itemId, format, accept.toString(), requestOptions) - .flatMap(FluxUtil::toMono); + return getPreviewWithFormatWithResponse(collectionId, itemId, format, requestOptions).flatMap(FluxUtil::toMono); } /** @@ -4047,7 +4010,6 @@ public Mono getTileJson(String collectionId, String itemId, St * @param scale Numeric scale factor for the tile. Higher values produce larger tiles. * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for tile generation including asset selection, terrain algorithms, and visual rendering. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -4059,7 +4021,7 @@ public Mono getTileJson(String collectionId, String itemId, St @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono getTile(String collectionId, String itemId, String tileMatrixSetId, double z, double x, - double y, double scale, String format, GetTileOptions options, GetTileContentType accept) { + double y, double scale, String format, GetTileOptions options) { // Generated convenience method for getTileWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -4142,8 +4104,8 @@ public Mono getTile(String collectionId, String itemId, String tileM .collect(Collectors.joining(",")), false); } - return getTileWithResponse(collectionId, itemId, tileMatrixSetId, z, x, y, scale, format, accept.toString(), - requestOptions).flatMap(FluxUtil::toMono); + return getTileWithResponse(collectionId, itemId, tileMatrixSetId, z, x, y, scale, format, requestOptions) + .flatMap(FluxUtil::toMono); } /** @@ -4933,7 +4895,6 @@ public Mono getMosaicsTileJson(String searchId, String tileMat * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for mosaic tile generation including asset selection, terrain algorithms, and visual * rendering. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -4945,7 +4906,7 @@ public Mono getMosaicsTileJson(String searchId, String tileMat @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Mono getMosaicsTile(String searchId, String tileMatrixSetId, double z, double x, double y, - double scale, String format, GetMosaicTileOptions options, GetMosaicsTileContentType accept) { + double scale, String format, GetMosaicTileOptions options) { // Generated convenience method for getMosaicsTileWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -5044,8 +5005,8 @@ public Mono getMosaicsTile(String searchId, String tileMatrixSetId, if (returnMask != null) { requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } - return getMosaicsTileWithResponse(searchId, tileMatrixSetId, z, x, y, scale, format, accept.toString(), - requestOptions).flatMap(FluxUtil::toMono); + return getMosaicsTileWithResponse(searchId, tileMatrixSetId, z, x, y, scale, format, requestOptions) + .flatMap(FluxUtil::toMono); } /** diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/DataClient.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/DataClient.java index d74125a6fe8f..527d6e873add 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/DataClient.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/DataClient.java @@ -9,24 +9,16 @@ import com.azure.analytics.planetarycomputer.models.AssetStatisticsResponse; import com.azure.analytics.planetarycomputer.models.ClassMapLegendResponse; import com.azure.analytics.planetarycomputer.models.ColorMapNames; -import com.azure.analytics.planetarycomputer.models.CropGeoJsonContentType; import com.azure.analytics.planetarycomputer.models.CropGeoJsonOptions; -import com.azure.analytics.planetarycomputer.models.CropGeoJsonWithDimensionsContentType; import com.azure.analytics.planetarycomputer.models.Feature; import com.azure.analytics.planetarycomputer.models.GetAssetStatisticsOptions; import com.azure.analytics.planetarycomputer.models.GetGeoJsonStatisticsOptions; import com.azure.analytics.planetarycomputer.models.GetMosaicTileJsonOptions; import com.azure.analytics.planetarycomputer.models.GetMosaicTileOptions; import com.azure.analytics.planetarycomputer.models.GetMosaicWmtsCapabilitiesOptions; -import com.azure.analytics.planetarycomputer.models.GetMosaicsTileContentType; -import com.azure.analytics.planetarycomputer.models.GetPartContentType; import com.azure.analytics.planetarycomputer.models.GetPartOptions; -import com.azure.analytics.planetarycomputer.models.GetPartWithDimensionsContentType; -import com.azure.analytics.planetarycomputer.models.GetPreviewContentType; import com.azure.analytics.planetarycomputer.models.GetPreviewOptions; -import com.azure.analytics.planetarycomputer.models.GetPreviewWithFormatContentType; import com.azure.analytics.planetarycomputer.models.GetStatisticsOptions; -import com.azure.analytics.planetarycomputer.models.GetTileContentType; import com.azure.analytics.planetarycomputer.models.GetTileJsonOptions; import com.azure.analytics.planetarycomputer.models.GetTileOptions; import com.azure.analytics.planetarycomputer.models.GetWmtsCapabilitiesOptions; @@ -448,8 +440,6 @@ public Response getBoundsWithResponse(String collectionId, String it * @param collectionId STAC Collection Identifier. * @param itemId STAC Item Identifier. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param body Request GeoJson body. * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. @@ -461,8 +451,8 @@ public Response getBoundsWithResponse(String collectionId, String it @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Response cropGeoJsonWithResponse(String collectionId, String itemId, String format, - String accept, BinaryData body, RequestOptions requestOptions) { - return this.serviceClient.cropGeoJsonWithResponse(collectionId, itemId, format, accept, body, requestOptions); + BinaryData body, RequestOptions requestOptions) { + return this.serviceClient.cropGeoJsonWithResponse(collectionId, itemId, format, body, requestOptions); } /** @@ -556,8 +546,6 @@ public Response cropGeoJsonWithResponse(String collectionId, String * @param width Width in pixels for the output image. * @param height Height in pixels for the output image. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param body Request GeoJson body. * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. @@ -569,9 +557,9 @@ public Response cropGeoJsonWithResponse(String collectionId, String @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Response cropGeoJsonWithDimensionsWithResponse(String collectionId, String itemId, int width, - int height, String format, String accept, BinaryData body, RequestOptions requestOptions) { + int height, String format, BinaryData body, RequestOptions requestOptions) { return this.serviceClient.cropGeoJsonWithDimensionsWithResponse(collectionId, itemId, width, height, format, - accept, body, requestOptions); + body, requestOptions); } /** @@ -950,8 +938,6 @@ public Response getItemAssetDetailsWithResponse(String collectionId, * @param maxx Bounding box max X. * @param maxy Bounding box max Y. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -962,8 +948,8 @@ public Response getItemAssetDetailsWithResponse(String collectionId, @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Response getPartWithResponse(String collectionId, String itemId, double minx, double miny, - double maxx, double maxy, String format, String accept, RequestOptions requestOptions) { - return this.serviceClient.getPartWithResponse(collectionId, itemId, minx, miny, maxx, maxy, format, accept, + double maxx, double maxy, String format, RequestOptions requestOptions) { + return this.serviceClient.getPartWithResponse(collectionId, itemId, minx, miny, maxx, maxy, format, requestOptions); } @@ -1044,8 +1030,6 @@ public Response getPartWithResponse(String collectionId, String item * @param width Width in pixels for the output image. * @param height Height in pixels for the output image. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -1056,10 +1040,9 @@ public Response getPartWithResponse(String collectionId, String item @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Response getPartWithDimensionsWithResponse(String collectionId, String itemId, double minx, - double miny, double maxx, double maxy, int width, int height, String format, String accept, - RequestOptions requestOptions) { + double miny, double maxx, double maxy, int width, int height, String format, RequestOptions requestOptions) { return this.serviceClient.getPartWithDimensionsWithResponse(collectionId, itemId, minx, miny, maxx, maxy, width, - height, format, accept, requestOptions); + height, format, requestOptions); } /** @@ -1193,8 +1176,6 @@ public Response getPointWithResponse(String collectionId, String ite * * @param collectionId STAC Collection Identifier. * @param itemId STAC Item Identifier. - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -1204,9 +1185,9 @@ public Response getPointWithResponse(String collectionId, String ite */ @Generated @ServiceMethod(returns = ReturnType.SINGLE) - public Response getPreviewWithResponse(String collectionId, String itemId, String accept, + public Response getPreviewWithResponse(String collectionId, String itemId, RequestOptions requestOptions) { - return this.serviceClient.getPreviewWithResponse(collectionId, itemId, accept, requestOptions); + return this.serviceClient.getPreviewWithResponse(collectionId, itemId, requestOptions); } /** @@ -1280,8 +1261,6 @@ public Response getPreviewWithResponse(String collectionId, String i * @param collectionId STAC Collection Identifier. * @param itemId STAC Item Identifier. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -1292,9 +1271,8 @@ public Response getPreviewWithResponse(String collectionId, String i @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Response getPreviewWithFormatWithResponse(String collectionId, String itemId, String format, - String accept, RequestOptions requestOptions) { - return this.serviceClient.getPreviewWithFormatWithResponse(collectionId, itemId, format, accept, - requestOptions); + RequestOptions requestOptions) { + return this.serviceClient.getPreviewWithFormatWithResponse(collectionId, itemId, format, requestOptions); } /** @@ -1675,8 +1653,6 @@ public Response getTileJsonWithResponse(String collectionId, String * MatrixWidth-1 for the selected TileMatrix. * @param scale Numeric scale factor for the tile. Higher values produce larger tiles. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -1687,9 +1663,9 @@ public Response getTileJsonWithResponse(String collectionId, String @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Response getTileWithResponse(String collectionId, String itemId, String tileMatrixSetId, - double z, double x, double y, double scale, String format, String accept, RequestOptions requestOptions) { + double z, double x, double y, double scale, String format, RequestOptions requestOptions) { return this.serviceClient.getTileWithResponse(collectionId, itemId, tileMatrixSetId, z, x, y, scale, format, - accept, requestOptions); + requestOptions); } /** @@ -2534,8 +2510,6 @@ public Response getMosaicsTileJsonWithResponse(String searchId, Stri * MatrixWidth-1 for the selected TileMatrix. * @param scale Numeric scale factor for the tile. Higher values produce larger tiles. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -2546,8 +2520,8 @@ public Response getMosaicsTileJsonWithResponse(String searchId, Stri @Generated @ServiceMethod(returns = ReturnType.SINGLE) public Response getMosaicsTileWithResponse(String searchId, String tileMatrixSetId, double z, double x, - double y, double scale, String format, String accept, RequestOptions requestOptions) { - return this.serviceClient.getMosaicsTileWithResponse(searchId, tileMatrixSetId, z, x, y, scale, format, accept, + double y, double scale, String format, RequestOptions requestOptions) { + return this.serviceClient.getMosaicsTileWithResponse(searchId, tileMatrixSetId, z, x, y, scale, format, requestOptions); } @@ -2834,7 +2808,6 @@ public StacItemBounds getBounds(String collectionId, String itemId) { * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for GeoJSON cropping including asset selection, terrain algorithms, and visual rendering. * @param body Request GeoJson body. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -2846,7 +2819,7 @@ public StacItemBounds getBounds(String collectionId, String itemId) { @Generated @ServiceMethod(returns = ReturnType.SINGLE) public BinaryData cropGeoJson(String collectionId, String itemId, String format, CropGeoJsonOptions options, - Feature body, CropGeoJsonContentType accept) { + Feature body) { // Generated convenience method for cropGeoJsonWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -2921,8 +2894,8 @@ public BinaryData cropGeoJson(String collectionId, String itemId, String format, if (returnMask != null) { requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } - return cropGeoJsonWithResponse(collectionId, itemId, format, accept.toString(), BinaryData.fromObject(body), - requestOptions).getValue(); + return cropGeoJsonWithResponse(collectionId, itemId, format, BinaryData.fromObject(body), requestOptions) + .getValue(); } /** @@ -2937,7 +2910,6 @@ public BinaryData cropGeoJson(String collectionId, String itemId, String format, * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for GeoJSON cropping including asset selection, terrain algorithms, and visual rendering. * @param body Request GeoJson body. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -2949,7 +2921,7 @@ public BinaryData cropGeoJson(String collectionId, String itemId, String format, @Generated @ServiceMethod(returns = ReturnType.SINGLE) public BinaryData cropGeoJsonWithDimensions(String collectionId, String itemId, int width, int height, - String format, CropGeoJsonOptions options, Feature body, CropGeoJsonWithDimensionsContentType accept) { + String format, CropGeoJsonOptions options, Feature body) { // Generated convenience method for cropGeoJsonWithDimensionsWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -3024,7 +2996,7 @@ public BinaryData cropGeoJsonWithDimensions(String collectionId, String itemId, if (returnMask != null) { requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } - return cropGeoJsonWithDimensionsWithResponse(collectionId, itemId, width, height, format, accept.toString(), + return cropGeoJsonWithDimensionsWithResponse(collectionId, itemId, width, height, format, BinaryData.fromObject(body), requestOptions).getValue(); } @@ -3243,7 +3215,6 @@ public TilerInfoMapResponse getItemAssetDetails(String collectionId, String item * @param maxy Bounding box max Y. * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for part generation including asset selection, terrain algorithms, and visual rendering. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -3255,7 +3226,7 @@ public TilerInfoMapResponse getItemAssetDetails(String collectionId, String item @Generated @ServiceMethod(returns = ReturnType.SINGLE) public BinaryData getPart(String collectionId, String itemId, double minx, double miny, double maxx, double maxy, - String format, GetPartOptions options, GetPartContentType accept) { + String format, GetPartOptions options) { // Generated convenience method for getPartWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -3334,8 +3305,7 @@ public BinaryData getPart(String collectionId, String itemId, double minx, doubl if (returnMask != null) { requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } - return getPartWithResponse(collectionId, itemId, minx, miny, maxx, maxy, format, accept.toString(), - requestOptions).getValue(); + return getPartWithResponse(collectionId, itemId, minx, miny, maxx, maxy, format, requestOptions).getValue(); } /** @@ -3353,7 +3323,6 @@ public BinaryData getPart(String collectionId, String itemId, double minx, doubl * @param height Height in pixels for the output image. * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for part generation including asset selection, terrain algorithms, and visual rendering. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -3365,8 +3334,7 @@ public BinaryData getPart(String collectionId, String itemId, double minx, doubl @Generated @ServiceMethod(returns = ReturnType.SINGLE) public BinaryData getPartWithDimensions(String collectionId, String itemId, double minx, double miny, double maxx, - double maxy, int width, int height, String format, GetPartOptions options, - GetPartWithDimensionsContentType accept) { + double maxy, int width, int height, String format, GetPartOptions options) { // Generated convenience method for getPartWithDimensionsWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -3446,7 +3414,7 @@ public BinaryData getPartWithDimensions(String collectionId, String itemId, doub requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } return getPartWithDimensionsWithResponse(collectionId, itemId, minx, miny, maxx, maxy, width, height, format, - accept.toString(), requestOptions).getValue(); + requestOptions).getValue(); } /** @@ -3550,7 +3518,6 @@ public TilerCoreModelsResponsesPoint getPoint(String collectionId, String itemId * @param itemId STAC Item Identifier. * @param options Options for preview generation including asset selection, terrain algorithms, and visual * rendering. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -3561,8 +3528,7 @@ public TilerCoreModelsResponsesPoint getPoint(String collectionId, String itemId */ @Generated @ServiceMethod(returns = ReturnType.SINGLE) - public BinaryData getPreview(String collectionId, String itemId, GetPreviewOptions options, - GetPreviewContentType accept) { + public BinaryData getPreview(String collectionId, String itemId, GetPreviewOptions options) { // Generated convenience method for getPreviewWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -3645,7 +3611,7 @@ public BinaryData getPreview(String collectionId, String itemId, GetPreviewOptio if (returnMask != null) { requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } - return getPreviewWithResponse(collectionId, itemId, accept.toString(), requestOptions).getValue(); + return getPreviewWithResponse(collectionId, itemId, requestOptions).getValue(); } /** @@ -3658,7 +3624,6 @@ public BinaryData getPreview(String collectionId, String itemId, GetPreviewOptio * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for preview generation including asset selection, terrain algorithms, and visual * rendering. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -3669,8 +3634,8 @@ public BinaryData getPreview(String collectionId, String itemId, GetPreviewOptio */ @Generated @ServiceMethod(returns = ReturnType.SINGLE) - public BinaryData getPreviewWithFormat(String collectionId, String itemId, String format, GetPreviewOptions options, - GetPreviewWithFormatContentType accept) { + public BinaryData getPreviewWithFormat(String collectionId, String itemId, String format, + GetPreviewOptions options) { // Generated convenience method for getPreviewWithFormatWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -3753,8 +3718,7 @@ public BinaryData getPreviewWithFormat(String collectionId, String itemId, Strin if (returnMask != null) { requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } - return getPreviewWithFormatWithResponse(collectionId, itemId, format, accept.toString(), requestOptions) - .getValue(); + return getPreviewWithFormatWithResponse(collectionId, itemId, format, requestOptions).getValue(); } /** @@ -4024,7 +3988,6 @@ public TileJsonMetadata getTileJson(String collectionId, String itemId, String t * @param scale Numeric scale factor for the tile. Higher values produce larger tiles. * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for tile generation including asset selection, terrain algorithms, and visual rendering. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -4036,7 +3999,7 @@ public TileJsonMetadata getTileJson(String collectionId, String itemId, String t @Generated @ServiceMethod(returns = ReturnType.SINGLE) public BinaryData getTile(String collectionId, String itemId, String tileMatrixSetId, double z, double x, double y, - double scale, String format, GetTileOptions options, GetTileContentType accept) { + double scale, String format, GetTileOptions options) { // Generated convenience method for getTileWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -4119,8 +4082,8 @@ public BinaryData getTile(String collectionId, String itemId, String tileMatrixS .collect(Collectors.joining(",")), false); } - return getTileWithResponse(collectionId, itemId, tileMatrixSetId, z, x, y, scale, format, accept.toString(), - requestOptions).getValue(); + return getTileWithResponse(collectionId, itemId, tileMatrixSetId, z, x, y, scale, format, requestOptions) + .getValue(); } /** @@ -4903,7 +4866,6 @@ public TileJsonMetadata getMosaicsTileJson(String searchId, String tileMatrixSet * @param format Output format for the tile or image (e.g., png, jpeg, webp). * @param options Options for mosaic tile generation including asset selection, terrain algorithms, and visual * rendering. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -4915,7 +4877,7 @@ public TileJsonMetadata getMosaicsTileJson(String searchId, String tileMatrixSet @Generated @ServiceMethod(returns = ReturnType.SINGLE) public BinaryData getMosaicsTile(String searchId, String tileMatrixSetId, double z, double x, double y, - double scale, String format, GetMosaicTileOptions options, GetMosaicsTileContentType accept) { + double scale, String format, GetMosaicTileOptions options) { // Generated convenience method for getMosaicsTileWithResponse RequestOptions requestOptions = new RequestOptions(); List assets = options.getAssets(); @@ -5014,8 +4976,7 @@ public BinaryData getMosaicsTile(String searchId, String tileMatrixSetId, double if (returnMask != null) { requestOptions.addQueryParam("return_mask", String.valueOf(returnMask), false); } - return getMosaicsTileWithResponse(searchId, tileMatrixSetId, z, x, y, scale, format, accept.toString(), - requestOptions).getValue(); + return getMosaicsTileWithResponse(searchId, tileMatrixSetId, z, x, y, scale, format, requestOptions).getValue(); } /** diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/StacAsyncClient.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/StacAsyncClient.java index 22ae070dc383..0d27bb4214e9 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/StacAsyncClient.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/StacAsyncClient.java @@ -6,7 +6,6 @@ import com.azure.analytics.planetarycomputer.implementation.MultipartFormDataHelper; import com.azure.analytics.planetarycomputer.implementation.StacsImpl; -import com.azure.analytics.planetarycomputer.models.GetCollectionThumbnailContentType; import com.azure.analytics.planetarycomputer.models.Operation; import com.azure.analytics.planetarycomputer.models.PartitionType; import com.azure.analytics.planetarycomputer.models.QueryableDefinitionsResponse; @@ -2066,8 +2065,6 @@ public Mono> listRenderOptionsWithResponse(String collectio * * * @param collectionId STAC Collection ID. - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -2079,9 +2076,9 @@ public Mono> listRenderOptionsWithResponse(String collectio */ @Generated @ServiceMethod(returns = ReturnType.SINGLE) - public Mono> getCollectionThumbnailWithResponse(String collectionId, String accept, + public Mono> getCollectionThumbnailWithResponse(String collectionId, RequestOptions requestOptions) { - return this.serviceClient.getCollectionThumbnailWithResponseAsync(collectionId, accept, requestOptions); + return this.serviceClient.getCollectionThumbnailWithResponseAsync(collectionId, requestOptions); } /** @@ -4065,7 +4062,6 @@ public Mono> listRenderOptions(String collectionId) { * Get thumbnail for given collection. * * @param collectionId STAC Collection ID. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -4078,11 +4074,10 @@ public Mono> listRenderOptions(String collectionId) { */ @Generated @ServiceMethod(returns = ReturnType.SINGLE) - public Mono getCollectionThumbnail(String collectionId, GetCollectionThumbnailContentType accept) { + public Mono getCollectionThumbnail(String collectionId) { // Generated convenience method for getCollectionThumbnailWithResponse RequestOptions requestOptions = new RequestOptions(); - return getCollectionThumbnailWithResponse(collectionId, accept.toString(), requestOptions) - .flatMap(FluxUtil::toMono); + return getCollectionThumbnailWithResponse(collectionId, requestOptions).flatMap(FluxUtil::toMono); } /** diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/StacClient.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/StacClient.java index acec789bb004..f9fd634511ac 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/StacClient.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/StacClient.java @@ -6,7 +6,6 @@ import com.azure.analytics.planetarycomputer.implementation.MultipartFormDataHelper; import com.azure.analytics.planetarycomputer.implementation.StacsImpl; -import com.azure.analytics.planetarycomputer.models.GetCollectionThumbnailContentType; import com.azure.analytics.planetarycomputer.models.Operation; import com.azure.analytics.planetarycomputer.models.PartitionType; import com.azure.analytics.planetarycomputer.models.QueryableDefinitionsResponse; @@ -2052,8 +2051,6 @@ public Response listRenderOptionsWithResponse(String collectionId, R * * * @param collectionId STAC Collection ID. - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -2065,9 +2062,8 @@ public Response listRenderOptionsWithResponse(String collectionId, R */ @Generated @ServiceMethod(returns = ReturnType.SINGLE) - public Response getCollectionThumbnailWithResponse(String collectionId, String accept, - RequestOptions requestOptions) { - return this.serviceClient.getCollectionThumbnailWithResponse(collectionId, accept, requestOptions); + public Response getCollectionThumbnailWithResponse(String collectionId, RequestOptions requestOptions) { + return this.serviceClient.getCollectionThumbnailWithResponse(collectionId, requestOptions); } /** @@ -4024,7 +4020,6 @@ public List listRenderOptions(String collectionId) { * Get thumbnail for given collection. * * @param collectionId STAC Collection ID. - * @param accept The accept parameter. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -4037,10 +4032,10 @@ public List listRenderOptions(String collectionId) { */ @Generated @ServiceMethod(returns = ReturnType.SINGLE) - public BinaryData getCollectionThumbnail(String collectionId, GetCollectionThumbnailContentType accept) { + public BinaryData getCollectionThumbnail(String collectionId) { // Generated convenience method for getCollectionThumbnailWithResponse RequestOptions requestOptions = new RequestOptions(); - return getCollectionThumbnailWithResponse(collectionId, accept.toString(), requestOptions).getValue(); + return getCollectionThumbnailWithResponse(collectionId, requestOptions).getValue(); } /** diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/implementation/DatasImpl.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/implementation/DatasImpl.java index 6b2c59a8bd80..e9df22e1ca48 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/implementation/DatasImpl.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/implementation/DatasImpl.java @@ -1414,8 +1414,6 @@ public Response getBoundsWithResponse(String collectionId, String it * @param collectionId STAC Collection Identifier. * @param itemId STAC Item Identifier. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param body Request GeoJson body. * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. @@ -1426,8 +1424,10 @@ public Response getBoundsWithResponse(String collectionId, String it */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> cropGeoJsonWithResponseAsync(String collectionId, String itemId, String format, - String accept, BinaryData body, RequestOptions requestOptions) { + BinaryData body, RequestOptions requestOptions) { final String contentType = "application/json"; + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return FluxUtil.withContext( context -> service.cropGeoJson(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, format, contentType, accept, body, requestOptions, context)); @@ -1524,8 +1524,6 @@ public Mono> cropGeoJsonWithResponseAsync(String collection * @param collectionId STAC Collection Identifier. * @param itemId STAC Item Identifier. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param body Request GeoJson body. * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. @@ -1536,8 +1534,10 @@ public Mono> cropGeoJsonWithResponseAsync(String collection */ @ServiceMethod(returns = ReturnType.SINGLE) public Response cropGeoJsonWithResponse(String collectionId, String itemId, String format, - String accept, BinaryData body, RequestOptions requestOptions) { + BinaryData body, RequestOptions requestOptions) { final String contentType = "application/json"; + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return service.cropGeoJsonSync(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, format, contentType, accept, body, requestOptions, Context.NONE); } @@ -1633,8 +1633,6 @@ public Response cropGeoJsonWithResponse(String collectionId, String * @param width Width in pixels for the output image. * @param height Height in pixels for the output image. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param body Request GeoJson body. * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. @@ -1645,8 +1643,10 @@ public Response cropGeoJsonWithResponse(String collectionId, String */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> cropGeoJsonWithDimensionsWithResponseAsync(String collectionId, String itemId, - int width, int height, String format, String accept, BinaryData body, RequestOptions requestOptions) { + int width, int height, String format, BinaryData body, RequestOptions requestOptions) { final String contentType = "application/json"; + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return FluxUtil.withContext(context -> service.cropGeoJsonWithDimensions(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, width, height, format, contentType, accept, body, requestOptions, context)); @@ -1743,8 +1743,6 @@ public Mono> cropGeoJsonWithDimensionsWithResponseAsync(Str * @param width Width in pixels for the output image. * @param height Height in pixels for the output image. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param body Request GeoJson body. * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. @@ -1755,8 +1753,10 @@ public Mono> cropGeoJsonWithDimensionsWithResponseAsync(Str */ @ServiceMethod(returns = ReturnType.SINGLE) public Response cropGeoJsonWithDimensionsWithResponse(String collectionId, String itemId, int width, - int height, String format, String accept, BinaryData body, RequestOptions requestOptions) { + int height, String format, BinaryData body, RequestOptions requestOptions) { final String contentType = "application/json"; + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return service.cropGeoJsonWithDimensionsSync(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, width, height, format, contentType, accept, body, requestOptions, Context.NONE); @@ -2448,8 +2448,6 @@ public Response getItemAssetDetailsWithResponse(String collectionId, * @param maxx Bounding box max X. * @param maxy Bounding box max Y. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -2459,7 +2457,9 @@ public Response getItemAssetDetailsWithResponse(String collectionId, */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getPartWithResponseAsync(String collectionId, String itemId, double minx, - double miny, double maxx, double maxy, String format, String accept, RequestOptions requestOptions) { + double miny, double maxx, double maxy, String format, RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return FluxUtil.withContext( context -> service.getPart(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, minx, miny, maxx, maxy, format, accept, requestOptions, context)); @@ -2542,8 +2542,6 @@ public Mono> getPartWithResponseAsync(String collectionId, * @param maxx Bounding box max X. * @param maxy Bounding box max Y. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -2553,7 +2551,9 @@ public Mono> getPartWithResponseAsync(String collectionId, */ @ServiceMethod(returns = ReturnType.SINGLE) public Response getPartWithResponse(String collectionId, String itemId, double minx, double miny, - double maxx, double maxy, String format, String accept, RequestOptions requestOptions) { + double maxx, double maxy, String format, RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return service.getPartSync(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, minx, miny, maxx, maxy, format, accept, requestOptions, Context.NONE); } @@ -2635,8 +2635,6 @@ public Response getPartWithResponse(String collectionId, String item * @param width Width in pixels for the output image. * @param height Height in pixels for the output image. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -2646,8 +2644,10 @@ public Response getPartWithResponse(String collectionId, String item */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getPartWithDimensionsWithResponseAsync(String collectionId, String itemId, - double minx, double miny, double maxx, double maxy, int width, int height, String format, String accept, + double minx, double miny, double maxx, double maxy, int width, int height, String format, RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return FluxUtil.withContext(context -> service.getPartWithDimensions(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, minx, miny, maxx, maxy, width, height, format, accept, requestOptions, context)); @@ -2730,8 +2730,6 @@ public Mono> getPartWithDimensionsWithResponseAsync(String * @param width Width in pixels for the output image. * @param height Height in pixels for the output image. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -2741,8 +2739,9 @@ public Mono> getPartWithDimensionsWithResponseAsync(String */ @ServiceMethod(returns = ReturnType.SINGLE) public Response getPartWithDimensionsWithResponse(String collectionId, String itemId, double minx, - double miny, double maxx, double maxy, int width, int height, String format, String accept, - RequestOptions requestOptions) { + double miny, double maxx, double maxy, int width, int height, String format, RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return service.getPartWithDimensionsSync(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, minx, miny, maxx, maxy, width, height, format, accept, requestOptions, Context.NONE); @@ -2941,8 +2940,6 @@ public Response getPointWithResponse(String collectionId, String ite * * @param collectionId STAC Collection Identifier. * @param itemId STAC Item Identifier. - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -2951,8 +2948,10 @@ public Response getPointWithResponse(String collectionId, String ite * @return the response body along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) - public Mono> getPreviewWithResponseAsync(String collectionId, String itemId, String accept, + public Mono> getPreviewWithResponseAsync(String collectionId, String itemId, RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return FluxUtil.withContext(context -> service.getPreview(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, accept, requestOptions, context)); } @@ -3029,8 +3028,6 @@ public Mono> getPreviewWithResponseAsync(String collectionI * * @param collectionId STAC Collection Identifier. * @param itemId STAC Item Identifier. - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -3039,8 +3036,10 @@ public Mono> getPreviewWithResponseAsync(String collectionI * @return the response body along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) - public Response getPreviewWithResponse(String collectionId, String itemId, String accept, + public Response getPreviewWithResponse(String collectionId, String itemId, RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return service.getPreviewSync(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, accept, requestOptions, Context.NONE); } @@ -3116,8 +3115,6 @@ public Response getPreviewWithResponse(String collectionId, String i * @param collectionId STAC Collection Identifier. * @param itemId STAC Item Identifier. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -3127,7 +3124,9 @@ public Response getPreviewWithResponse(String collectionId, String i */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getPreviewWithFormatWithResponseAsync(String collectionId, String itemId, - String format, String accept, RequestOptions requestOptions) { + String format, RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return FluxUtil.withContext(context -> service.getPreviewWithFormat(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, format, accept, requestOptions, context)); @@ -3204,8 +3203,6 @@ public Mono> getPreviewWithFormatWithResponseAsync(String c * @param collectionId STAC Collection Identifier. * @param itemId STAC Item Identifier. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -3215,7 +3212,9 @@ public Mono> getPreviewWithFormatWithResponseAsync(String c */ @ServiceMethod(returns = ReturnType.SINGLE) public Response getPreviewWithFormatWithResponse(String collectionId, String itemId, String format, - String accept, RequestOptions requestOptions) { + RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return service.getPreviewWithFormatSync(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, format, accept, requestOptions, Context.NONE); } @@ -3908,8 +3907,6 @@ public Response getTileJsonWithResponse(String collectionId, String * MatrixWidth-1 for the selected TileMatrix. * @param scale Numeric scale factor for the tile. Higher values produce larger tiles. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -3919,8 +3916,10 @@ public Response getTileJsonWithResponse(String collectionId, String */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getTileWithResponseAsync(String collectionId, String itemId, - String tileMatrixSetId, double z, double x, double y, double scale, String format, String accept, + String tileMatrixSetId, double z, double x, double y, double scale, String format, RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return FluxUtil.withContext( context -> service.getTile(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, tileMatrixSetId, z, x, y, scale, format, accept, requestOptions, context)); @@ -4007,8 +4006,6 @@ public Mono> getTileWithResponseAsync(String collectionId, * MatrixWidth-1 for the selected TileMatrix. * @param scale Numeric scale factor for the tile. Higher values produce larger tiles. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -4018,7 +4015,9 @@ public Mono> getTileWithResponseAsync(String collectionId, */ @ServiceMethod(returns = ReturnType.SINGLE) public Response getTileWithResponse(String collectionId, String itemId, String tileMatrixSetId, - double z, double x, double y, double scale, String format, String accept, RequestOptions requestOptions) { + double z, double x, double y, double scale, String format, RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return service.getTileSync(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, itemId, tileMatrixSetId, z, x, y, scale, format, accept, requestOptions, Context.NONE); } @@ -5645,8 +5644,6 @@ public Response getMosaicsTileJsonWithResponse(String searchId, Stri * MatrixWidth-1 for the selected TileMatrix. * @param scale Numeric scale factor for the tile. Higher values produce larger tiles. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -5656,7 +5653,9 @@ public Response getMosaicsTileJsonWithResponse(String searchId, Stri */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getMosaicsTileWithResponseAsync(String searchId, String tileMatrixSetId, double z, - double x, double y, double scale, String format, String accept, RequestOptions requestOptions) { + double x, double y, double scale, String format, RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return FluxUtil.withContext( context -> service.getMosaicsTile(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), searchId, tileMatrixSetId, z, x, y, scale, format, accept, requestOptions, context)); @@ -5753,8 +5752,6 @@ public Mono> getMosaicsTileWithResponseAsync(String searchI * MatrixWidth-1 for the selected TileMatrix. * @param scale Numeric scale factor for the tile. Higher values produce larger tiles. * @param format Output format for the tile or image (e.g., png, jpeg, webp). - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -5764,7 +5761,9 @@ public Mono> getMosaicsTileWithResponseAsync(String searchI */ @ServiceMethod(returns = ReturnType.SINGLE) public Response getMosaicsTileWithResponse(String searchId, String tileMatrixSetId, double z, double x, - double y, double scale, String format, String accept, RequestOptions requestOptions) { + double y, double scale, String format, RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return service.getMosaicsTileSync(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), searchId, tileMatrixSetId, z, x, y, scale, format, accept, requestOptions, Context.NONE); } diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/implementation/StacsImpl.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/implementation/StacsImpl.java index 5617011b30c0..67c1e40927f5 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/implementation/StacsImpl.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/main/java/com/azure/analytics/planetarycomputer/implementation/StacsImpl.java @@ -5909,8 +5909,6 @@ public Response listRenderOptionsWithResponse(String collectionId, R * * * @param collectionId STAC Collection ID. - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -5921,8 +5919,10 @@ public Response listRenderOptionsWithResponse(String collectionId, R * Get thumbnail for given collection along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) - public Mono> getCollectionThumbnailWithResponseAsync(String collectionId, String accept, + public Mono> getCollectionThumbnailWithResponseAsync(String collectionId, RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return FluxUtil.withContext(context -> service.getCollectionThumbnail(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, accept, requestOptions, context)); } @@ -5940,8 +5940,6 @@ public Mono> getCollectionThumbnailWithResponseAsync(String * * * @param collectionId STAC Collection ID. - * @param accept The accept parameter. Allowed values: "image/png", "image/jpeg", "image/jpg", "image/webp", - * "image/jp2", "image/tiff; application=geotiff", "application/x-binary". * @param requestOptions The options to configure the HTTP request before HTTP client sends it. * @throws HttpResponseException thrown if the request is rejected by server. * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401. @@ -5952,8 +5950,9 @@ public Mono> getCollectionThumbnailWithResponseAsync(String * Get thumbnail for given collection along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) - public Response getCollectionThumbnailWithResponse(String collectionId, String accept, - RequestOptions requestOptions) { + public Response getCollectionThumbnailWithResponse(String collectionId, RequestOptions requestOptions) { + final String accept + = "image/png, image/jpeg, image/jpg, image/webp, image/jp2, image/tiff; application=geotiff, application/x-binary"; return service.getCollectionThumbnailSync(this.client.getEndpoint(), this.client.getServiceVersion().getVersion(), collectionId, accept, requestOptions, Context.NONE); } diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/MosaicsTileMatrixSetsGetZxyScaleByFormat.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/MosaicsTileMatrixSetsGetZxyScaleByFormat.java index 3fc1110c722d..60858746b0ae 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/MosaicsTileMatrixSetsGetZxyScaleByFormat.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/MosaicsTileMatrixSetsGetZxyScaleByFormat.java @@ -23,8 +23,7 @@ public static void main(String[] args) { 2174.0, 3282.0, 1.0, "png", new GetMosaicTileOptions().setAssets(Arrays.asList("image")) .setAssetBandIndices("image|1,2,3") - .setCollection("naip-atl"), - null); + .setCollection("naip-atl")); // END:com.azure.analytics.planetarycomputer.generated.data-get-mosaics-tile.mosaics-tile-matrix-sets-get-zxy-scale-by-format } } diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/StacCollectionThumbnailsGet.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/StacCollectionThumbnailsGet.java index 92bea0a60034..2317f6701f56 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/StacCollectionThumbnailsGet.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/StacCollectionThumbnailsGet.java @@ -17,7 +17,7 @@ public static void main(String[] args) { .endpoint(Configuration.getGlobalConfiguration().get("ENDPOINT")) .buildStacClient(); // BEGIN:com.azure.analytics.planetarycomputer.generated.stac-get-collection-thumbnail.stac-collection-thumbnails-get - BinaryData response = stacClient.getCollectionThumbnail("naip-atl", null); + BinaryData response = stacClient.getCollectionThumbnail("naip-atl"); // END:com.azure.analytics.planetarycomputer.generated.stac-get-collection-thumbnail.stac-collection-thumbnails-get } } diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerGeoJsonsCropFormat.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerGeoJsonsCropFormat.java index 76a671b96a88..3e8a4fedeeee 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerGeoJsonsCropFormat.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerGeoJsonsCropFormat.java @@ -28,8 +28,7 @@ public static void main(String[] args) { new CropGeoJsonOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3"), new Feature(new Polygon().setCoordinates(Arrays.asList(Arrays.asList(Arrays.asList(-84.3906, 33.6714), Arrays.asList(-84.3814, 33.6714), Arrays.asList(-84.3814, 33.6806), Arrays.asList(-84.3906, 33.6806), - Arrays.asList(-84.3906, 33.6714)))), FeatureType.FEATURE).setProperties(mapOf()), - null); + Arrays.asList(-84.3906, 33.6714)))), FeatureType.FEATURE).setProperties(mapOf())); // END:com.azure.analytics.planetarycomputer.generated.data-crop-geo-json.tiler-geo-jsons-crop-format } diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerGeoJsonsCropWidthByHeightFormat.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerGeoJsonsCropWidthByHeightFormat.java index 7dc678351222..721f200cbd59 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerGeoJsonsCropWidthByHeightFormat.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerGeoJsonsCropWidthByHeightFormat.java @@ -28,8 +28,7 @@ public static void main(String[] args) { 256, "png", new CropGeoJsonOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3"), new Feature(new Polygon().setCoordinates(Arrays.asList(Arrays.asList(Arrays.asList(-84.3906, 33.6714), Arrays.asList(-84.3814, 33.6714), Arrays.asList(-84.3814, 33.6806), Arrays.asList(-84.3906, 33.6806), - Arrays.asList(-84.3906, 33.6714)))), FeatureType.FEATURE).setProperties(mapOf()), - null); + Arrays.asList(-84.3906, 33.6714)))), FeatureType.FEATURE).setProperties(mapOf())); // END:com.azure.analytics.planetarycomputer.generated.data-crop-geo-json-with-dimensions.tiler-geo-jsons-crop-width-by-height-format } diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPartsGetCroppedToBoundingBox.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPartsGetCroppedToBoundingBox.java index cac6c325a089..baac94d91b7f 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPartsGetCroppedToBoundingBox.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPartsGetCroppedToBoundingBox.java @@ -21,7 +21,7 @@ public static void main(String[] args) { // BEGIN:com.azure.analytics.planetarycomputer.generated.data-get-part.tiler-parts-get-cropped-to-bounding-box BinaryData response = dataClient.getPart("naip-atl", "ga_m_3308421_se_16_060_20211114", -84.393, 33.6798, -84.367, 33.7058, - "png", new GetPartOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3"), null); + "png", new GetPartOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3")); // END:com.azure.analytics.planetarycomputer.generated.data-get-part.tiler-parts-get-cropped-to-bounding-box } } diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPartsGetCroppedToBoundingBoxWidthByHeight.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPartsGetCroppedToBoundingBoxWidthByHeight.java index e110aa6a87da..2e3aa2d79066 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPartsGetCroppedToBoundingBoxWidthByHeight.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPartsGetCroppedToBoundingBoxWidthByHeight.java @@ -21,7 +21,7 @@ public static void main(String[] args) { // BEGIN:com.azure.analytics.planetarycomputer.generated.data-get-part-with-dimensions.tiler-parts-get-cropped-to-bounding-box-width-by-height BinaryData response = dataClient.getPartWithDimensions("naip-atl", "ga_m_3308421_se_16_060_20211114", -84.393, 33.6798, -84.367, 33.7058, 256, 256, "png", - new GetPartOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3"), null); + new GetPartOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3")); // END:com.azure.analytics.planetarycomputer.generated.data-get-part-with-dimensions.tiler-parts-get-cropped-to-bounding-box-width-by-height } } diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPreviewsGet.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPreviewsGet.java index ca97760f1981..2fc9e72a07d8 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPreviewsGet.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPreviewsGet.java @@ -23,8 +23,7 @@ public static void main(String[] args) { new GetPreviewOptions().setAssets(Arrays.asList("image")) .setAssetBandIndices("image|1,2,3") .setHeight(512) - .setWidth(512), - null); + .setWidth(512)); // END:com.azure.analytics.planetarycomputer.generated.data-get-preview.tiler-previews-get } } diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPreviewsGetFormat.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPreviewsGetFormat.java index c659a853fe96..79acb570287e 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPreviewsGetFormat.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerPreviewsGetFormat.java @@ -21,7 +21,7 @@ public static void main(String[] args) { // BEGIN:com.azure.analytics.planetarycomputer.generated.data-get-preview-with-format.tiler-previews-get-format BinaryData response = dataClient.getPreviewWithFormat("naip-atl", "ga_m_3308421_se_16_060_20211114", "preview.jpeg", - new GetPreviewOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3"), null); + new GetPreviewOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3")); // END:com.azure.analytics.planetarycomputer.generated.data-get-preview-with-format.tiler-previews-get-format } } diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerTileMatrixSetsGetZxyScaleByFormat.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerTileMatrixSetsGetZxyScaleByFormat.java index d31a4b949f5a..297668563a18 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerTileMatrixSetsGetZxyScaleByFormat.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/samples/java/com/azure/analytics/planetarycomputer/generated/TilerTileMatrixSetsGetZxyScaleByFormat.java @@ -19,9 +19,9 @@ public static void main(String[] args) { .endpoint(Configuration.getGlobalConfiguration().get("ENDPOINT")) .buildDataClient(); // BEGIN:com.azure.analytics.planetarycomputer.generated.data-get-tile.tiler-tile-matrix-sets-get-zxy-scale-by-format - BinaryData response = dataClient.getTile("naip-atl", "ga_m_3308421_se_16_060_20211114", "WebMercatorQuad", 14.0, - 4349.0, 6564.0, 1.0, "png", - new GetTileOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3"), null); + BinaryData response + = dataClient.getTile("naip-atl", "ga_m_3308421_se_16_060_20211114", "WebMercatorQuad", 14.0, 4349.0, 6564.0, + 1.0, "png", new GetTileOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3")); // END:com.azure.analytics.planetarycomputer.generated.data-get-tile.tiler-tile-matrix-sets-get-zxy-scale-by-format } } diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer01cStacCollectionTests.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer01cStacCollectionTests.java index 55df27e42f4b..873474a5be04 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer01cStacCollectionTests.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer01cStacCollectionTests.java @@ -47,7 +47,7 @@ public void test01_11_GetCollectionThumbnail() throws Exception { // Act - Get thumbnail as streaming response Response response - = stacClient.getCollectionThumbnailWithResponse(collectionId, "image/png", new RequestOptions()); + = stacClient.getCollectionThumbnailWithResponse(collectionId, new RequestOptions()); // Assert assertNotNull(response, "Response should not be null"); diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer05aMosaicsTilerTests.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer05aMosaicsTilerTests.java index 850b0b3669c6..973174432cab 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer05aMosaicsTilerTests.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer05aMosaicsTilerTests.java @@ -6,7 +6,6 @@ import com.azure.analytics.planetarycomputer.models.FilterLanguage; import com.azure.analytics.planetarycomputer.models.GetMosaicTileJsonOptions; import com.azure.analytics.planetarycomputer.models.GetMosaicTileOptions; -import com.azure.analytics.planetarycomputer.models.GetMosaicsTileContentType; import com.azure.analytics.planetarycomputer.models.RegisterMosaicsSearchOptions; import com.azure.analytics.planetarycomputer.models.StacSearchSortingDirection; import com.azure.analytics.planetarycomputer.models.StacSortExtension; @@ -182,8 +181,8 @@ public void test05_04_GetMosaicsTile() { GetMosaicTileOptions tileOptions = new GetMosaicTileOptions().setAssets(Arrays.asList("image")) .setAssetBandIndices("image|1,2,3") .setCollection(collectionId); - BinaryData imageData = dataClient.getMosaicsTile(searchId, "WebMercatorQuad", 13.0, 2174.0, 3282.0, 1.0, "png", - tileOptions, GetMosaicsTileContentType.IMAGE_PNG); + BinaryData imageData + = dataClient.getMosaicsTile(searchId, "WebMercatorQuad", 13.0, 2174.0, 3282.0, 1.0, "png", tileOptions); // Assert byte[] imageBytes = imageData.toBytes(); diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06aStacItemTilerTests.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06aStacItemTilerTests.java index c2b4b67e6511..9657fade6454 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06aStacItemTilerTests.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06aStacItemTilerTests.java @@ -3,7 +3,6 @@ package com.azure.analytics.planetarycomputer; -import com.azure.analytics.planetarycomputer.models.GetPreviewContentType; import com.azure.analytics.planetarycomputer.models.GetPreviewOptions; import com.azure.analytics.planetarycomputer.models.StacItemBounds; import com.azure.analytics.planetarycomputer.models.TileMatrix; @@ -149,7 +148,7 @@ public void test06_05_GetPreview() { // This is server behavior - it may return JPEG for performance reasons GetPreviewOptions options = new GetPreviewOptions().setWidth(512).setHeight(512).setAssets(Arrays.asList("image")); - BinaryData imageData = dataClient.getPreview(collectionId, itemId, options, GetPreviewContentType.IMAGE_PNG); + BinaryData imageData = dataClient.getPreview(collectionId, itemId, options); byte[] imageBytes = imageData.toBytes(); diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06bStacItemTilerTests.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06bStacItemTilerTests.java index 641bda08dba4..ab923909aa31 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06bStacItemTilerTests.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06bStacItemTilerTests.java @@ -132,8 +132,7 @@ public void test06_10_CropGeoJson() { CropGeoJsonOptions options = new CropGeoJsonOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3"); - BinaryData imageData - = dataClient.cropGeoJson(collectionId, itemId, "png", options, feature, CropGeoJsonContentType.IMAGE_PNG); + BinaryData imageData = dataClient.cropGeoJson(collectionId, itemId, "png", options, feature); byte[] imageBytes = imageData.toBytes(); System.out.println("Image size: " + imageBytes.length + " bytes"); diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06cStacItemTilerTests.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06cStacItemTilerTests.java index 1a3c1736313d..4852a80b6876 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06cStacItemTilerTests.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06cStacItemTilerTests.java @@ -33,8 +33,8 @@ public void test06_11_CropGeoJsonWithDimensions() { CropGeoJsonOptions options = new CropGeoJsonOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3"); - BinaryData imageData = dataClient.cropGeoJsonWithDimensions(collectionId, itemId, 512, 512, "png", options, - feature, CropGeoJsonWithDimensionsContentType.IMAGE_PNG); + BinaryData imageData + = dataClient.cropGeoJsonWithDimensions(collectionId, itemId, 512, 512, "png", options, feature); byte[] imageBytes = imageData.toBytes(); byte[] pngMagic = new byte[] { (byte) 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A }; @@ -87,8 +87,7 @@ public void test06_13_GetPart() { GetPartOptions options = new GetPartOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3"); - BinaryData imageData = dataClient.getPart(collectionId, itemId, minx, miny, maxx, maxy, "png", options, - GetPartContentType.IMAGE_PNG); + BinaryData imageData = dataClient.getPart(collectionId, itemId, minx, miny, maxx, maxy, "png", options); byte[] imageBytes = imageData.toBytes(); byte[] pngMagic = new byte[] { (byte) 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A }; @@ -110,8 +109,8 @@ public void test06_14_GetPartWithDimensions() { GetPartOptions options = new GetPartOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3"); - BinaryData imageData = dataClient.getPartWithDimensions(collectionId, itemId, minx, miny, maxx, maxy, 256, 256, - "png", options, GetPartWithDimensionsContentType.IMAGE_PNG); + BinaryData imageData + = dataClient.getPartWithDimensions(collectionId, itemId, minx, miny, maxx, maxy, 256, 256, "png", options); byte[] imageBytes = imageData.toBytes(); byte[] pngMagic = new byte[] { (byte) 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A }; diff --git a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06dStacItemTilerTests.java b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06dStacItemTilerTests.java index 6d4c8dc67697..d985df12d027 100644 --- a/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06dStacItemTilerTests.java +++ b/sdk/planetarycomputer/azure-analytics-planetarycomputer/src/test/java/com/azure/analytics/planetarycomputer/TestPlanetaryComputer06dStacItemTilerTests.java @@ -31,8 +31,7 @@ public void test06_16_GetPreviewWithFormat() { GetPreviewOptions options = new GetPreviewOptions().setWidth(512).setHeight(512).setAssets(Arrays.asList("image")); - BinaryData imageData = dataClient.getPreviewWithFormat(collectionId, itemId, "jpg", options, - GetPreviewWithFormatContentType.IMAGE_JPEG); + BinaryData imageData = dataClient.getPreviewWithFormat(collectionId, itemId, "jpg", options); byte[] imageBytes = imageData.toBytes(); byte[] jpegMagic = new byte[] { (byte) 0xFF, (byte) 0xD8, (byte) 0xFF }; @@ -75,8 +74,8 @@ public void test06_18_GetTile() { = new GetTileOptions().setAssets(Arrays.asList("image")).setAssetBandIndices("image|1,2,3"); // Tile coordinates matching the recording - BinaryData imageData = dataClient.getTile(collectionId, itemId, "WebMercatorQuad", 13, 2341, 3133, 1, "png", - options, GetTileContentType.IMAGE_PNG); + BinaryData imageData + = dataClient.getTile(collectionId, itemId, "WebMercatorQuad", 13, 2341, 3133, 1, "png", options); byte[] imageBytes = imageData.toBytes(); byte[] pngMagic = new byte[] { (byte) 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A }; diff --git a/sdk/privatedns/azure-resourcemanager-privatedns/src/main/java/com/azure/resourcemanager/privatedns/fluent/models/PrivateZoneInner.java b/sdk/privatedns/azure-resourcemanager-privatedns/src/main/java/com/azure/resourcemanager/privatedns/fluent/models/PrivateZoneInner.java index cc3744fa1f7e..83e2d1f01ffe 100644 --- a/sdk/privatedns/azure-resourcemanager-privatedns/src/main/java/com/azure/resourcemanager/privatedns/fluent/models/PrivateZoneInner.java +++ b/sdk/privatedns/azure-resourcemanager-privatedns/src/main/java/com/azure/resourcemanager/privatedns/fluent/models/PrivateZoneInner.java @@ -24,16 +24,6 @@ public final class PrivateZoneInner extends Resource { */ private PrivateZoneProperties innerProperties; - /* - * Resource tags. - */ - private Map tags; - - /* - * The Azure Region where the resource lives - */ - private String location; - /* * The ETag of the zone. */ @@ -74,46 +64,6 @@ private PrivateZoneProperties innerProperties() { return this.innerProperties; } - /** - * Get the tags property: Resource tags. - * - * @return the tags value. - */ - public Map tags() { - return this.tags; - } - - /** - * Set the tags property: Resource tags. - * - * @param tags the tags value to set. - * @return the PrivateZoneInner object itself. - */ - public PrivateZoneInner withTags(Map tags) { - this.tags = tags; - return this; - } - - /** - * Get the location property: The Azure Region where the resource lives. - * - * @return the location value. - */ - public String location() { - return this.location; - } - - /** - * Set the location property: The Azure Region where the resource lives. - * - * @param location the location value to set. - * @return the PrivateZoneInner object itself. - */ - public PrivateZoneInner withLocation(String location) { - this.location = location; - return this; - } - /** * Get the etag property: The ETag of the zone. * @@ -173,6 +123,24 @@ public String id() { return this.id; } + /** + * {@inheritDoc} + */ + @Override + public PrivateZoneInner withLocation(String location) { + super.withLocation(location); + return this; + } + + /** + * {@inheritDoc} + */ + @Override + public PrivateZoneInner withTags(Map tags) { + super.withTags(tags); + return this; + } + /** * Get the maxNumberOfRecordSets property: The maximum number of record sets that can be created in this Private DNS * zone. This is a read-only property and any attempt to set this value will be ignored. @@ -275,9 +243,9 @@ public void validate() { @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); + jsonWriter.writeStringField("location", location()); + jsonWriter.writeMapField("tags", tags(), (writer, element) -> writer.writeString(element)); jsonWriter.writeJsonField("properties", this.innerProperties); - jsonWriter.writeMapField("tags", this.tags, (writer, element) -> writer.writeString(element)); - jsonWriter.writeStringField("location", this.location); jsonWriter.writeStringField("etag", this.etag); return jsonWriter.writeEndObject(); } @@ -304,13 +272,13 @@ public static PrivateZoneInner fromJson(JsonReader jsonReader) throws IOExceptio deserializedPrivateZoneInner.name = reader.getString(); } else if ("type".equals(fieldName)) { deserializedPrivateZoneInner.type = reader.getString(); - } else if ("properties".equals(fieldName)) { - deserializedPrivateZoneInner.innerProperties = PrivateZoneProperties.fromJson(reader); + } else if ("location".equals(fieldName)) { + deserializedPrivateZoneInner.withLocation(reader.getString()); } else if ("tags".equals(fieldName)) { Map tags = reader.readMap(reader1 -> reader1.getString()); - deserializedPrivateZoneInner.tags = tags; - } else if ("location".equals(fieldName)) { - deserializedPrivateZoneInner.location = reader.getString(); + deserializedPrivateZoneInner.withTags(tags); + } else if ("properties".equals(fieldName)) { + deserializedPrivateZoneInner.innerProperties = PrivateZoneProperties.fromJson(reader); } else if ("etag".equals(fieldName)) { deserializedPrivateZoneInner.etag = reader.getString(); } else if ("systemData".equals(fieldName)) { diff --git a/sdk/recoveryservices/azure-resourcemanager-recoveryservices/src/main/java/com/azure/resourcemanager/recoveryservices/fluent/DeletedVaultsClient.java b/sdk/recoveryservices/azure-resourcemanager-recoveryservices/src/main/java/com/azure/resourcemanager/recoveryservices/fluent/DeletedVaultsClient.java index dbb13c53d079..f697e964fc09 100644 --- a/sdk/recoveryservices/azure-resourcemanager-recoveryservices/src/main/java/com/azure/resourcemanager/recoveryservices/fluent/DeletedVaultsClient.java +++ b/sdk/recoveryservices/azure-resourcemanager-recoveryservices/src/main/java/com/azure/resourcemanager/recoveryservices/fluent/DeletedVaultsClient.java @@ -80,7 +80,7 @@ public interface DeletedVaultsClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deletedVault information as returned by the resource provider. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginUndelete(String location, String deletedVaultName, @@ -96,7 +96,7 @@ SyncPoller, Void> beginUndelete(String location, String deleted * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deletedVault information as returned by the resource provider. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginUndelete(String location, String deletedVaultName, diff --git a/sdk/recoveryservices/azure-resourcemanager-recoveryservices/src/main/java/com/azure/resourcemanager/recoveryservices/implementation/DeletedVaultsClientImpl.java b/sdk/recoveryservices/azure-resourcemanager-recoveryservices/src/main/java/com/azure/resourcemanager/recoveryservices/implementation/DeletedVaultsClientImpl.java index dfe5a42745fd..05273baecfaa 100644 --- a/sdk/recoveryservices/azure-resourcemanager-recoveryservices/src/main/java/com/azure/resourcemanager/recoveryservices/implementation/DeletedVaultsClientImpl.java +++ b/sdk/recoveryservices/azure-resourcemanager-recoveryservices/src/main/java/com/azure/resourcemanager/recoveryservices/implementation/DeletedVaultsClientImpl.java @@ -339,7 +339,8 @@ public DeletedVaultInner get(String location, String deletedVaultName) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return deletedVault information as returned by the resource provider along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> undeleteWithResponseAsync(String location, String deletedVaultName, @@ -361,7 +362,7 @@ private Mono>> undeleteWithResponseAsync(String locati * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return deletedVault information as returned by the resource provider along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response undeleteWithResponse(String location, String deletedVaultName, @@ -382,7 +383,7 @@ private Response undeleteWithResponse(String location, String delete * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return deletedVault information as returned by the resource provider along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response undeleteWithResponse(String location, String deletedVaultName, @@ -402,7 +403,7 @@ private Response undeleteWithResponse(String location, String delete * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of deletedVault information as returned by the resource provider. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, Void> beginUndeleteAsync(String location, String deletedVaultName, @@ -421,7 +422,7 @@ private PollerFlux, Void> beginUndeleteAsync(String location, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deletedVault information as returned by the resource provider. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginUndelete(String location, String deletedVaultName, @@ -440,7 +441,7 @@ public SyncPoller, Void> beginUndelete(String location, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deletedVault information as returned by the resource provider. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginUndelete(String location, String deletedVaultName, @@ -458,7 +459,7 @@ public SyncPoller, Void> beginUndelete(String location, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return A {@link Mono} that completes when a successful response is received. + * @return deletedVault information as returned by the resource provider on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono undeleteAsync(String location, String deletedVaultName, DeletedVaultUndeleteInput body) { diff --git a/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/fluent/ProtectedItemsClient.java b/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/fluent/ProtectedItemsClient.java index 636d20babecb..e56cfec54957 100644 --- a/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/fluent/ProtectedItemsClient.java +++ b/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/fluent/ProtectedItemsClient.java @@ -283,7 +283,7 @@ PagedIterable list(String resourceGroupName, String vau * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of planned failover model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, PlannedFailoverModelInner> beginPlannedFailover( @@ -300,7 +300,7 @@ SyncPoller, PlannedFailoverModelInner> beg * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of planned failover model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, PlannedFailoverModelInner> beginPlannedFailover( @@ -317,7 +317,7 @@ SyncPoller, PlannedFailoverModelInner> beg * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return planned failover model. */ @ServiceMethod(returns = ReturnType.SINGLE) PlannedFailoverModelInner plannedFailover(String resourceGroupName, String vaultName, String protectedItemName, @@ -334,7 +334,7 @@ PlannedFailoverModelInner plannedFailover(String resourceGroupName, String vault * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return planned failover model. */ @ServiceMethod(returns = ReturnType.SINGLE) PlannedFailoverModelInner plannedFailover(String resourceGroupName, String vaultName, String protectedItemName, diff --git a/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/implementation/ProtectedItemsClientImpl.java b/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/implementation/ProtectedItemsClientImpl.java index c9f62022a3f4..61e4fa66c83f 100644 --- a/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/implementation/ProtectedItemsClientImpl.java +++ b/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/implementation/ProtectedItemsClientImpl.java @@ -1071,7 +1071,7 @@ public PagedIterable list(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return planned failover model along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> plannedFailoverWithResponseAsync(String resourceGroupName, @@ -1095,7 +1095,7 @@ private Mono>> plannedFailoverWithResponseAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return planned failover model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response plannedFailoverWithResponse(String resourceGroupName, String vaultName, @@ -1118,7 +1118,7 @@ private Response plannedFailoverWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return planned failover model along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response plannedFailoverWithResponse(String resourceGroupName, String vaultName, @@ -1140,7 +1140,7 @@ private Response plannedFailoverWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of planned failover model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, PlannedFailoverModelInner> beginPlannedFailoverAsync( @@ -1162,7 +1162,7 @@ private PollerFlux, PlannedFailoverModelIn * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of planned failover model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, PlannedFailoverModelInner> beginPlannedFailover( @@ -1184,7 +1184,7 @@ public SyncPoller, PlannedFailoverModelInn * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of planned failover model. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, PlannedFailoverModelInner> beginPlannedFailover( @@ -1206,7 +1206,7 @@ public SyncPoller, PlannedFailoverModelInn * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return planned failover model on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono plannedFailoverAsync(String resourceGroupName, String vaultName, @@ -1225,7 +1225,7 @@ private Mono plannedFailoverAsync(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return planned failover model. */ @ServiceMethod(returns = ReturnType.SINGLE) public PlannedFailoverModelInner plannedFailover(String resourceGroupName, String vaultName, @@ -1244,7 +1244,7 @@ public PlannedFailoverModelInner plannedFailover(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return planned failover model. */ @ServiceMethod(returns = ReturnType.SINGLE) public PlannedFailoverModelInner plannedFailover(String resourceGroupName, String vaultName, diff --git a/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/models/ProtectedItemModel.java b/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/models/ProtectedItemModel.java index 348a2d5663c5..42700087f0c2 100644 --- a/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/models/ProtectedItemModel.java +++ b/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/models/ProtectedItemModel.java @@ -196,7 +196,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return planned failover model. */ PlannedFailoverModel plannedFailover(PlannedFailoverModelInner body); @@ -208,7 +208,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return planned failover model. */ PlannedFailoverModel plannedFailover(PlannedFailoverModelInner body, Context context); } diff --git a/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/models/ProtectedItems.java b/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/models/ProtectedItems.java index e8444c532358..35c5c6862745 100644 --- a/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/models/ProtectedItems.java +++ b/sdk/recoveryservicesdatareplication/azure-resourcemanager-recoveryservicesdatareplication/src/main/java/com/azure/resourcemanager/recoveryservicesdatareplication/models/ProtectedItems.java @@ -107,7 +107,7 @@ PagedIterable list(String resourceGroupName, String vaultNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return planned failover model. */ PlannedFailoverModel plannedFailover(String resourceGroupName, String vaultName, String protectedItemName, PlannedFailoverModelInner body); @@ -123,7 +123,7 @@ PlannedFailoverModel plannedFailover(String resourceGroupName, String vaultName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return planned failover model. */ PlannedFailoverModel plannedFailover(String resourceGroupName, String vaultName, String protectedItemName, PlannedFailoverModelInner body, Context context); diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksClient.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksClient.java index 762ca58aa073..d767a6cd0477 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksClient.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksClient.java @@ -86,7 +86,7 @@ Response getByResourceGroupWithResponse(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DeploymentStackValidateResultInner> @@ -104,7 +104,7 @@ Response getByResourceGroupWithResponse(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DeploymentStackValidateResultInner> @@ -121,7 +121,7 @@ Response getByResourceGroupWithResponse(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.SINGLE) DeploymentStackValidateResultInner validateStackAtResourceGroup(String resourceGroupName, @@ -138,7 +138,7 @@ DeploymentStackValidateResultInner validateStackAtResourceGroup(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.SINGLE) DeploymentStackValidateResultInner validateStackAtResourceGroup(String resourceGroupName, @@ -371,7 +371,7 @@ DeploymentStackTemplateDefinitionInner exportTemplateAtResourceGroup(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DeploymentStackValidateResultInner> @@ -387,7 +387,7 @@ DeploymentStackTemplateDefinitionInner exportTemplateAtResourceGroup(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DeploymentStackValidateResultInner> @@ -403,7 +403,7 @@ DeploymentStackTemplateDefinitionInner exportTemplateAtResourceGroup(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.SINGLE) DeploymentStackValidateResultInner validateStackAtSubscription(String deploymentStackName, @@ -419,7 +419,7 @@ DeploymentStackValidateResultInner validateStackAtSubscription(String deployment * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.SINGLE) DeploymentStackValidateResultInner validateStackAtSubscription(String deploymentStackName, @@ -646,7 +646,7 @@ Response getAtManagementGroupWithResponse(String managemen * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DeploymentStackValidateResultInner> @@ -664,7 +664,7 @@ Response getAtManagementGroupWithResponse(String managemen * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DeploymentStackValidateResultInner> @@ -681,7 +681,7 @@ Response getAtManagementGroupWithResponse(String managemen * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.SINGLE) DeploymentStackValidateResultInner validateStackAtManagementGroup(String managementGroupId, @@ -698,7 +698,7 @@ DeploymentStackValidateResultInner validateStackAtManagementGroup(String managem * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.SINGLE) DeploymentStackValidateResultInner validateStackAtManagementGroup(String managementGroupId, diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksWhatIfResultsAtManagementGroupsClient.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksWhatIfResultsAtManagementGroupsClient.java index f728cface2bc..5f2613785ec2 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksWhatIfResultsAtManagementGroupsClient.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksWhatIfResultsAtManagementGroupsClient.java @@ -188,7 +188,7 @@ Response deleteWithResponse(String managementGroupId, String deploymentSta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DeploymentStacksWhatIfResultInner> @@ -203,7 +203,7 @@ Response deleteWithResponse(String managementGroupId, String deploymentSta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DeploymentStacksWhatIfResultInner> @@ -217,7 +217,7 @@ Response deleteWithResponse(String managementGroupId, String deploymentSta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ @ServiceMethod(returns = ReturnType.SINGLE) DeploymentStacksWhatIfResultInner whatIf(String managementGroupId, String deploymentStacksWhatIfResultName); @@ -231,7 +231,7 @@ Response deleteWithResponse(String managementGroupId, String deploymentSta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ @ServiceMethod(returns = ReturnType.SINGLE) DeploymentStacksWhatIfResultInner whatIf(String managementGroupId, String deploymentStacksWhatIfResultName, diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksWhatIfResultsAtResourceGroupsClient.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksWhatIfResultsAtResourceGroupsClient.java index 5f8440991da6..53bc908c6824 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksWhatIfResultsAtResourceGroupsClient.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksWhatIfResultsAtResourceGroupsClient.java @@ -189,7 +189,7 @@ Response deleteWithResponse(String resourceGroupName, String deploymentSta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DeploymentStacksWhatIfResultInner> @@ -204,7 +204,7 @@ Response deleteWithResponse(String resourceGroupName, String deploymentSta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DeploymentStacksWhatIfResultInner> @@ -218,7 +218,7 @@ Response deleteWithResponse(String resourceGroupName, String deploymentSta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ @ServiceMethod(returns = ReturnType.SINGLE) DeploymentStacksWhatIfResultInner whatIf(String resourceGroupName, String deploymentStacksWhatIfResultName); @@ -232,7 +232,7 @@ Response deleteWithResponse(String resourceGroupName, String deploymentSta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ @ServiceMethod(returns = ReturnType.SINGLE) DeploymentStacksWhatIfResultInner whatIf(String resourceGroupName, String deploymentStacksWhatIfResultName, diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksWhatIfResultsAtSubscriptionsClient.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksWhatIfResultsAtSubscriptionsClient.java index 8ac88cc6f5b5..bf892e813d15 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksWhatIfResultsAtSubscriptionsClient.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/fluent/DeploymentStacksWhatIfResultsAtSubscriptionsClient.java @@ -175,7 +175,7 @@ Response deleteWithResponse(String deploymentStacksWhatIfResultName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DeploymentStacksWhatIfResultInner> @@ -189,7 +189,7 @@ Response deleteWithResponse(String deploymentStacksWhatIfResultName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DeploymentStacksWhatIfResultInner> @@ -202,7 +202,7 @@ Response deleteWithResponse(String deploymentStacksWhatIfResultName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ @ServiceMethod(returns = ReturnType.SINGLE) DeploymentStacksWhatIfResultInner whatIf(String deploymentStacksWhatIfResultName); @@ -215,7 +215,7 @@ Response deleteWithResponse(String deploymentStacksWhatIfResultName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ @ServiceMethod(returns = ReturnType.SINGLE) DeploymentStacksWhatIfResultInner whatIf(String deploymentStacksWhatIfResultName, Context context); diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksClientImpl.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksClientImpl.java index 19c0bfd61059..a53b6fea1161 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksClientImpl.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksClientImpl.java @@ -673,7 +673,8 @@ public PagedIterable listByResourceGroup(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the Deployment stack validation result along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> validateStackAtResourceGroupWithResponseAsync(String resourceGroupName, @@ -697,7 +698,7 @@ private Mono>> validateStackAtResourceGroupWithRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the Deployment stack validation result along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response validateStackAtResourceGroupWithResponse(String resourceGroupName, @@ -720,7 +721,7 @@ private Response validateStackAtResourceGroupWithResponse(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the Deployment stack validation result along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response validateStackAtResourceGroupWithResponse(String resourceGroupName, @@ -742,7 +743,7 @@ private Response validateStackAtResourceGroupWithResponse(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, DeploymentStackValidateResultInner> @@ -765,7 +766,7 @@ private Response validateStackAtResourceGroupWithResponse(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DeploymentStackValidateResultInner> @@ -788,7 +789,7 @@ private Response validateStackAtResourceGroupWithResponse(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DeploymentStackValidateResultInner> @@ -810,7 +811,7 @@ private Response validateStackAtResourceGroupWithResponse(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the Deployment stack validation result on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono validateStackAtResourceGroupAsync(String resourceGroupName, @@ -829,7 +830,7 @@ private Mono validateStackAtResourceGroupAsy * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.SINGLE) public DeploymentStackValidateResultInner validateStackAtResourceGroup(String resourceGroupName, @@ -849,7 +850,7 @@ public DeploymentStackValidateResultInner validateStackAtResourceGroup(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.SINGLE) public DeploymentStackValidateResultInner validateStackAtResourceGroup(String resourceGroupName, @@ -1626,7 +1627,8 @@ public PagedIterable list(Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the Deployment stack validation result along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> validateStackAtSubscriptionWithResponseAsync(String deploymentStackName, @@ -1649,7 +1651,7 @@ private Mono>> validateStackAtSubscriptionWithResponse * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the Deployment stack validation result along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response validateStackAtSubscriptionWithResponse(String deploymentStackName, @@ -1670,7 +1672,7 @@ private Response validateStackAtSubscriptionWithResponse(String depl * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the Deployment stack validation result along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response validateStackAtSubscriptionWithResponse(String deploymentStackName, @@ -1690,7 +1692,7 @@ private Response validateStackAtSubscriptionWithResponse(String depl * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, DeploymentStackValidateResultInner> @@ -1711,7 +1713,7 @@ private Response validateStackAtSubscriptionWithResponse(String depl * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DeploymentStackValidateResultInner> @@ -1731,7 +1733,7 @@ private Response validateStackAtSubscriptionWithResponse(String depl * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DeploymentStackValidateResultInner> @@ -1752,7 +1754,7 @@ private Response validateStackAtSubscriptionWithResponse(String depl * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the Deployment stack validation result on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono validateStackAtSubscriptionAsync(String deploymentStackName, @@ -1770,7 +1772,7 @@ private Mono validateStackAtSubscriptionAsyn * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.SINGLE) public DeploymentStackValidateResultInner validateStackAtSubscription(String deploymentStackName, @@ -1788,7 +1790,7 @@ public DeploymentStackValidateResultInner validateStackAtSubscription(String dep * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.SINGLE) public DeploymentStackValidateResultInner validateStackAtSubscription(String deploymentStackName, @@ -2549,7 +2551,8 @@ public PagedIterable listAtManagementGroup(String manageme * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the Deployment stack validation result along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> validateStackAtManagementGroupWithResponseAsync(String managementGroupId, @@ -2573,7 +2576,7 @@ private Mono>> validateStackAtManagementGroupWithRespo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the Deployment stack validation result along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response validateStackAtManagementGroupWithResponse(String managementGroupId, @@ -2595,7 +2598,7 @@ private Response validateStackAtManagementGroupWithResponse(String m * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the Deployment stack validation result along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response validateStackAtManagementGroupWithResponse(String managementGroupId, @@ -2616,7 +2619,7 @@ private Response validateStackAtManagementGroupWithResponse(String m * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, DeploymentStackValidateResultInner> @@ -2639,7 +2642,7 @@ private Response validateStackAtManagementGroupWithResponse(String m * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DeploymentStackValidateResultInner> @@ -2662,7 +2665,7 @@ private Response validateStackAtManagementGroupWithResponse(String m * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DeploymentStackValidateResultInner> @@ -2684,7 +2687,7 @@ private Response validateStackAtManagementGroupWithResponse(String m * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the Deployment stack validation result on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono validateStackAtManagementGroupAsync(String managementGroupId, @@ -2703,7 +2706,7 @@ private Mono validateStackAtManagementGroupA * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.SINGLE) public DeploymentStackValidateResultInner validateStackAtManagementGroup(String managementGroupId, @@ -2723,7 +2726,7 @@ public DeploymentStackValidateResultInner validateStackAtManagementGroup(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ @ServiceMethod(returns = ReturnType.SINGLE) public DeploymentStackValidateResultInner validateStackAtManagementGroup(String managementGroupId, diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksWhatIfResultsAtManagementGroupsClientImpl.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksWhatIfResultsAtManagementGroupsClientImpl.java index 6b9d5cfb227c..0c8313c6d3e6 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksWhatIfResultsAtManagementGroupsClientImpl.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksWhatIfResultsAtManagementGroupsClientImpl.java @@ -670,7 +670,7 @@ public void delete(String managementGroupId, String deploymentStacksWhatIfResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return deployment stack object along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> whatIfWithResponseAsync(String managementGroupId, @@ -690,7 +690,7 @@ private Mono>> whatIfWithResponseAsync(String manageme * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return deployment stack object along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response whatIfWithResponse(String managementGroupId, String deploymentStacksWhatIfResultName) { @@ -708,7 +708,7 @@ private Response whatIfWithResponse(String managementGroupId, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return deployment stack object along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response whatIfWithResponse(String managementGroupId, String deploymentStacksWhatIfResultName, @@ -726,7 +726,7 @@ private Response whatIfWithResponse(String managementGroupId, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, DeploymentStacksWhatIfResultInner> @@ -746,7 +746,7 @@ private Response whatIfWithResponse(String managementGroupId, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DeploymentStacksWhatIfResultInner> @@ -765,7 +765,7 @@ private Response whatIfWithResponse(String managementGroupId, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DeploymentStacksWhatIfResultInner> @@ -784,7 +784,7 @@ private Response whatIfWithResponse(String managementGroupId, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return deployment stack object on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono whatIfAsync(String managementGroupId, @@ -801,7 +801,7 @@ private Mono whatIfAsync(String managementGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ @ServiceMethod(returns = ReturnType.SINGLE) public DeploymentStacksWhatIfResultInner whatIf(String managementGroupId, String deploymentStacksWhatIfResultName) { @@ -817,7 +817,7 @@ public DeploymentStacksWhatIfResultInner whatIf(String managementGroupId, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ @ServiceMethod(returns = ReturnType.SINGLE) public DeploymentStacksWhatIfResultInner whatIf(String managementGroupId, String deploymentStacksWhatIfResultName, diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksWhatIfResultsAtResourceGroupsClientImpl.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksWhatIfResultsAtResourceGroupsClientImpl.java index d3e0eb175367..671e1545dda7 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksWhatIfResultsAtResourceGroupsClientImpl.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksWhatIfResultsAtResourceGroupsClientImpl.java @@ -692,7 +692,7 @@ public void delete(String resourceGroupName, String deploymentStacksWhatIfResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return deployment stack object along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> whatIfWithResponseAsync(String resourceGroupName, @@ -712,7 +712,7 @@ private Mono>> whatIfWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return deployment stack object along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response whatIfWithResponse(String resourceGroupName, String deploymentStacksWhatIfResultName) { @@ -730,7 +730,7 @@ private Response whatIfWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return deployment stack object along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response whatIfWithResponse(String resourceGroupName, String deploymentStacksWhatIfResultName, @@ -748,7 +748,7 @@ private Response whatIfWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, DeploymentStacksWhatIfResultInner> @@ -768,7 +768,7 @@ private Response whatIfWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DeploymentStacksWhatIfResultInner> @@ -787,7 +787,7 @@ private Response whatIfWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DeploymentStacksWhatIfResultInner> @@ -806,7 +806,7 @@ private Response whatIfWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return deployment stack object on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono whatIfAsync(String resourceGroupName, @@ -823,7 +823,7 @@ private Mono whatIfAsync(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ @ServiceMethod(returns = ReturnType.SINGLE) public DeploymentStacksWhatIfResultInner whatIf(String resourceGroupName, String deploymentStacksWhatIfResultName) { @@ -839,7 +839,7 @@ public DeploymentStacksWhatIfResultInner whatIf(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ @ServiceMethod(returns = ReturnType.SINGLE) public DeploymentStacksWhatIfResultInner whatIf(String resourceGroupName, String deploymentStacksWhatIfResultName, diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksWhatIfResultsAtSubscriptionsClientImpl.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksWhatIfResultsAtSubscriptionsClientImpl.java index 21fd51308326..1806010e6ec4 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksWhatIfResultsAtSubscriptionsClientImpl.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/implementation/DeploymentStacksWhatIfResultsAtSubscriptionsClientImpl.java @@ -635,7 +635,7 @@ public void delete(String deploymentStacksWhatIfResultName) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return deployment stack object along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> whatIfWithResponseAsync(String deploymentStacksWhatIfResultName) { @@ -653,7 +653,7 @@ private Mono>> whatIfWithResponseAsync(String deployme * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return deployment stack object along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response whatIfWithResponse(String deploymentStacksWhatIfResultName) { @@ -670,7 +670,7 @@ private Response whatIfWithResponse(String deploymentStacksWhatIfRes * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return deployment stack object along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response whatIfWithResponse(String deploymentStacksWhatIfResultName, Context context) { @@ -686,7 +686,7 @@ private Response whatIfWithResponse(String deploymentStacksWhatIfRes * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, DeploymentStacksWhatIfResultInner> @@ -704,7 +704,7 @@ private Response whatIfWithResponse(String deploymentStacksWhatIfRes * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DeploymentStacksWhatIfResultInner> @@ -722,7 +722,7 @@ private Response whatIfWithResponse(String deploymentStacksWhatIfRes * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of deployment stack object. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DeploymentStacksWhatIfResultInner> @@ -739,7 +739,7 @@ private Response whatIfWithResponse(String deploymentStacksWhatIfRes * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return deployment stack object on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono whatIfAsync(String deploymentStacksWhatIfResultName) { @@ -753,7 +753,7 @@ private Mono whatIfAsync(String deploymentSta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ @ServiceMethod(returns = ReturnType.SINGLE) public DeploymentStacksWhatIfResultInner whatIf(String deploymentStacksWhatIfResultName) { @@ -768,7 +768,7 @@ public DeploymentStacksWhatIfResultInner whatIf(String deploymentStacksWhatIfRes * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ @ServiceMethod(returns = ReturnType.SINGLE) public DeploymentStacksWhatIfResultInner whatIf(String deploymentStacksWhatIfResultName, Context context) { diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStack.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStack.java index f60cc7dfd2aa..be931f8a2723 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStack.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStack.java @@ -276,7 +276,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ DeploymentStackValidateResult validateStackAtResourceGroup(DeploymentStackInner deploymentStack); @@ -289,7 +289,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ DeploymentStackValidateResult validateStackAtResourceGroup(DeploymentStackInner deploymentStack, Context context); diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacks.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacks.java index a63c4268d6e1..83232929e6f0 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacks.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacks.java @@ -72,7 +72,7 @@ Response getByResourceGroupWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ DeploymentStackValidateResult validateStackAtResourceGroup(String resourceGroupName, String deploymentStackName, DeploymentStackInner deploymentStack); @@ -88,7 +88,7 @@ DeploymentStackValidateResult validateStackAtResourceGroup(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ DeploymentStackValidateResult validateStackAtResourceGroup(String resourceGroupName, String deploymentStackName, DeploymentStackInner deploymentStack, Context context); @@ -209,7 +209,7 @@ DeploymentStackTemplateDefinition exportTemplateAtResourceGroup(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ DeploymentStackValidateResult validateStackAtSubscription(String deploymentStackName, DeploymentStackInner deploymentStack); @@ -224,7 +224,7 @@ DeploymentStackValidateResult validateStackAtSubscription(String deploymentStack * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ DeploymentStackValidateResult validateStackAtSubscription(String deploymentStackName, DeploymentStackInner deploymentStack, Context context); @@ -372,7 +372,7 @@ Response getAtManagementGroupWithResponse(String managementGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ DeploymentStackValidateResult validateStackAtManagementGroup(String managementGroupId, String deploymentStackName, DeploymentStackInner deploymentStack); @@ -388,7 +388,7 @@ DeploymentStackValidateResult validateStackAtManagementGroup(String managementGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the Deployment stack validation result. */ DeploymentStackValidateResult validateStackAtManagementGroup(String managementGroupId, String deploymentStackName, DeploymentStackInner deploymentStack, Context context); diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResult.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResult.java index 3ebcee5b3ea8..614369aba4c6 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResult.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResult.java @@ -273,7 +273,7 @@ interface WithProperties { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ DeploymentStacksWhatIfResult whatIf(); @@ -284,7 +284,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ DeploymentStacksWhatIfResult whatIf(Context context); } diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResultsAtManagementGroups.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResultsAtManagementGroups.java index a75a38ed2c07..3baaff53a7a8 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResultsAtManagementGroups.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResultsAtManagementGroups.java @@ -139,7 +139,7 @@ Response deleteWithResponse(String managementGroupId, String deploymentSta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ DeploymentStacksWhatIfResult whatIf(String managementGroupId, String deploymentStacksWhatIfResultName); @@ -152,7 +152,7 @@ Response deleteWithResponse(String managementGroupId, String deploymentSta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ DeploymentStacksWhatIfResult whatIf(String managementGroupId, String deploymentStacksWhatIfResultName, Context context); diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResultsAtResourceGroups.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResultsAtResourceGroups.java index a03eaa87ec2f..d0a4ea51c362 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResultsAtResourceGroups.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResultsAtResourceGroups.java @@ -109,7 +109,7 @@ Response deleteWithResponse(String resourceGroupName, String deploymentSta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ DeploymentStacksWhatIfResult whatIf(String resourceGroupName, String deploymentStacksWhatIfResultName); @@ -122,7 +122,7 @@ Response deleteWithResponse(String resourceGroupName, String deploymentSta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ DeploymentStacksWhatIfResult whatIf(String resourceGroupName, String deploymentStacksWhatIfResultName, Context context); diff --git a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResultsAtSubscriptions.java b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResultsAtSubscriptions.java index df173e40a32b..1dfbb507be4b 100644 --- a/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResultsAtSubscriptions.java +++ b/sdk/resources/azure-resourcemanager-resources-deploymentstacks/src/main/java/com/azure/resourcemanager/resources/deploymentstacks/models/DeploymentStacksWhatIfResultsAtSubscriptions.java @@ -128,7 +128,7 @@ Response deleteWithResponse(String deploymentStacksWhatIfResultName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ DeploymentStacksWhatIfResult whatIf(String deploymentStacksWhatIfResultName); @@ -140,7 +140,7 @@ Response deleteWithResponse(String deploymentStacksWhatIfResultName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return deployment stack object. */ DeploymentStacksWhatIfResult whatIf(String deploymentStacksWhatIfResultName, Context context); } diff --git a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java index c630a96b47db..d7a77c3b2ca0 100644 --- a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java +++ b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java @@ -6,7 +6,7 @@ package com.azure.resourcemanager.appnetwork.fluent; ======== package com.azure.resourcemanager.security.fluent; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java import com.azure.core.annotation.ReturnType; import com.azure.core.annotation.ServiceMethod; @@ -41,7 +41,7 @@ public interface DevOpsConfigurationsClient { * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param securityConnectorName The security connector name. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -131,7 +131,7 @@ SyncPoller, DevOpsConfigurationInner> begin * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param securityConnectorName The security connector name. * @param devOpsConfiguration The DevOps configuration resource payload. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -195,7 +195,7 @@ DevOpsConfigurationInner createOrUpdate(String resourceGroupName, String securit * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param securityConnectorName The security connector name. * @param devOpsConfiguration The DevOps configuration resource payload. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -258,7 +258,7 @@ SyncPoller, DevOpsConfigurationInner> begin * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param securityConnectorName The security connector name. * @param devOpsConfiguration The DevOps configuration resource payload. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -321,7 +321,7 @@ DevOpsConfigurationInner update(String resourceGroupName, String securityConnect * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param securityConnectorName The security connector name. * @param devOpsConfiguration The DevOps configuration resource payload. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -351,7 +351,7 @@ DevOpsConfigurationInner update(String resourceGroupName, String securityConnect * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param securityConnectorName The security connector name. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -376,7 +376,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param securityConnectorName The security connector name. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -403,7 +403,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param securityConnectorName The security connector name. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -426,7 +426,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param securityConnectorName The security connector name. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -475,7 +475,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param securityConnectorName The security connector name. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. @@ -491,5 +491,5 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable list(String resourceGroupName, String securityConnectorName, Context context); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/DevOpsConfigurationsClient.java } diff --git a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/SqlVulnerabilityAssessmentScansClient.java b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/SqlVulnerabilityAssessmentScansClient.java index c1044336d4a0..100fa399ceb6 100644 --- a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/SqlVulnerabilityAssessmentScansClient.java +++ b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/SqlVulnerabilityAssessmentScansClient.java @@ -25,7 +25,8 @@ public interface SqlVulnerabilityAssessmentScansClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of represents the result of a SQL Vulnerability Assessment scan + * operation, wrapped in the ARM resource envelope. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, SqlVulnerabilityAssessmentScanOperationResultInner> @@ -40,7 +41,8 @@ public interface SqlVulnerabilityAssessmentScansClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of represents the result of a SQL Vulnerability Assessment scan + * operation, wrapped in the ARM resource envelope. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, SqlVulnerabilityAssessmentScanOperationResultInner> @@ -53,7 +55,8 @@ public interface SqlVulnerabilityAssessmentScansClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents the result of a SQL Vulnerability Assessment scan operation, wrapped in the ARM resource + * envelope. */ @ServiceMethod(returns = ReturnType.SINGLE) SqlVulnerabilityAssessmentScanOperationResultInner initiateScan(String resourceId); @@ -67,7 +70,8 @@ public interface SqlVulnerabilityAssessmentScansClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents the result of a SQL Vulnerability Assessment scan operation, wrapped in the ARM resource + * envelope. */ @ServiceMethod(returns = ReturnType.SINGLE) SqlVulnerabilityAssessmentScanOperationResultInner initiateScan(String resourceId, String databaseName, diff --git a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java index 93e5ea2668f6..c9407421a33a 100644 --- a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java +++ b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java @@ -6,7 +6,7 @@ package com.azure.resourcemanager.azurestackhci.fluent.models; ======== package com.azure.resourcemanager.security.fluent.models; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java import com.azure.core.annotation.Fluent; import com.azure.core.management.ProxyResource; @@ -32,7 +32,7 @@ public final class ClusterJobInner extends ProxyResource { */ @Fluent public final class AzureDevOpsOrgInner extends ProxyResource { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java /* * Azure DevOps Organization properties. */ @@ -40,7 +40,7 @@ public final class AzureDevOpsOrgInner extends ProxyResource { private ClusterJobProperties properties; ======== private AzureDevOpsOrgProperties properties; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java /* * Azure Resource Manager metadata containing createdBy and modifiedBy information. @@ -71,7 +71,7 @@ public ClusterJobInner() { * Creates an instance of AzureDevOpsOrgInner class. */ public AzureDevOpsOrgInner() { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java } /** @@ -83,7 +83,7 @@ public AzureDevOpsOrgInner() { public ClusterJobProperties properties() { ======== public AzureDevOpsOrgProperties properties() { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java return this.properties; } @@ -99,7 +99,7 @@ public ClusterJobInner withProperties(ClusterJobProperties properties) { * @return the AzureDevOpsOrgInner object itself. */ public AzureDevOpsOrgInner withProperties(AzureDevOpsOrgProperties properties) { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java this.properties = properties; return this; } @@ -178,7 +178,7 @@ public static ClusterJobInner fromJson(JsonReader jsonReader) throws IOException public static AzureDevOpsOrgInner fromJson(JsonReader jsonReader) throws IOException { return jsonReader.readObject(reader -> { AzureDevOpsOrgInner deserializedAzureDevOpsOrgInner = new AzureDevOpsOrgInner(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java while (reader.nextToken() != JsonToken.END_OBJECT) { String fieldName = reader.getFieldName(); reader.nextToken(); @@ -204,7 +204,7 @@ public static AzureDevOpsOrgInner fromJson(JsonReader jsonReader) throws IOExcep deserializedAzureDevOpsOrgInner.properties = AzureDevOpsOrgProperties.fromJson(reader); } else if ("systemData".equals(fieldName)) { deserializedAzureDevOpsOrgInner.systemData = SystemData.fromJson(reader); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java } else { reader.skipChildren(); } @@ -214,7 +214,7 @@ public static AzureDevOpsOrgInner fromJson(JsonReader jsonReader) throws IOExcep return deserializedClusterJobInner; ======== return deserializedAzureDevOpsOrgInner; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/AzureDevOpsOrgInner.java }); } } diff --git a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java index 62b780133b46..225f572a3fbb 100644 --- a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java +++ b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java @@ -2,11 +2,7 @@ // Licensed under the MIT License. // Code generated by Microsoft (R) TypeSpec Code Generator. -<<<<<<<< HEAD:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/models/AvailableVersionInner.java -package com.azure.resourcemanager.appnetwork.fluent.models; -======== package com.azure.resourcemanager.security.fluent.models; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java import com.azure.core.annotation.Immutable; import com.azure.core.management.ProxyResource; @@ -14,19 +10,19 @@ import com.azure.json.JsonReader; import com.azure.json.JsonToken; import com.azure.json.JsonWriter; -<<<<<<<< HEAD:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/models/AvailableVersionInner.java -import com.azure.resourcemanager.appnetwork.models.AvailableVersionProperties; +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/SecurityOperatorInner.java +import com.azure.resourcemanager.security.models.Identity; import java.io.IOException; /** - * AppLink available version resource. + * Security operator under a given subscription and pricing. */ @Immutable -public final class AvailableVersionInner extends ProxyResource { +public final class SecurityOperatorInner extends ProxyResource { /* - * The resource-specific properties for this resource. + * Identity for the resource. */ - private AvailableVersionProperties properties; + private Identity identity; ======== import com.azure.resourcemanager.security.models.GitHubRepositoryProperties; import java.io.IOException; @@ -40,7 +36,7 @@ public final class GitHubRepositoryInner extends ProxyResource { * GitHub Repository properties. */ private GitHubRepositoryProperties properties; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java /* * Azure Resource Manager metadata containing createdBy and modifiedBy information. @@ -63,18 +59,19 @@ public final class GitHubRepositoryInner extends ProxyResource { private String id; /** -<<<<<<<< HEAD:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/models/AvailableVersionInner.java - * Creates an instance of AvailableVersionInner class. +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/SecurityOperatorInner.java + * Creates an instance of SecurityOperatorInner class. */ - private AvailableVersionInner() { + private SecurityOperatorInner() { } /** - * Get the properties property: The resource-specific properties for this resource. + * Get the identity property: Identity for the resource. * - * @return the properties value. + * @return the identity value. */ - public AvailableVersionProperties properties() { + public Identity identity() { + return this.identity; ======== * Creates an instance of GitHubRepositoryInner class. */ @@ -87,8 +84,8 @@ private GitHubRepositoryInner() { * @return the properties value. */ public GitHubRepositoryProperties properties() { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java return this.properties; +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java } /** @@ -131,42 +128,48 @@ public String id() { } /** -<<<<<<<< HEAD:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/models/AvailableVersionInner.java -======== * Validates the instance. * * @throws IllegalArgumentException thrown if the instance is not valid. */ public void validate() { +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/SecurityOperatorInner.java + if (identity() != null) { + identity().validate(); +======== if (properties() != null) { properties().validate(); +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java } } /** ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java * {@inheritDoc} */ @Override public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { jsonWriter.writeStartObject(); +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/SecurityOperatorInner.java + jsonWriter.writeJsonField("identity", this.identity); +======== jsonWriter.writeJsonField("properties", this.properties); +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java return jsonWriter.writeEndObject(); } /** -<<<<<<<< HEAD:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/models/AvailableVersionInner.java - * Reads an instance of AvailableVersionInner from the JsonReader. +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/SecurityOperatorInner.java + * Reads an instance of SecurityOperatorInner from the JsonReader. * * @param jsonReader The JsonReader being read. - * @return An instance of AvailableVersionInner if the JsonReader was pointing to an instance of it, or null if it + * @return An instance of SecurityOperatorInner if the JsonReader was pointing to an instance of it, or null if it * was pointing to JSON null. * @throws IllegalStateException If the deserialized JSON object was missing any required properties. - * @throws IOException If an error occurs while reading the AvailableVersionInner. + * @throws IOException If an error occurs while reading the SecurityOperatorInner. */ - public static AvailableVersionInner fromJson(JsonReader jsonReader) throws IOException { + public static SecurityOperatorInner fromJson(JsonReader jsonReader) throws IOException { return jsonReader.readObject(reader -> { - AvailableVersionInner deserializedAvailableVersionInner = new AvailableVersionInner(); + SecurityOperatorInner deserializedSecurityOperatorInner = new SecurityOperatorInner(); ======== * Reads an instance of GitHubRepositoryInner from the JsonReader. * @@ -179,22 +182,22 @@ public static AvailableVersionInner fromJson(JsonReader jsonReader) throws IOExc public static GitHubRepositoryInner fromJson(JsonReader jsonReader) throws IOException { return jsonReader.readObject(reader -> { GitHubRepositoryInner deserializedGitHubRepositoryInner = new GitHubRepositoryInner(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java while (reader.nextToken() != JsonToken.END_OBJECT) { String fieldName = reader.getFieldName(); reader.nextToken(); if ("id".equals(fieldName)) { -<<<<<<<< HEAD:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/models/AvailableVersionInner.java - deserializedAvailableVersionInner.id = reader.getString(); +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/SecurityOperatorInner.java + deserializedSecurityOperatorInner.id = reader.getString(); } else if ("name".equals(fieldName)) { - deserializedAvailableVersionInner.name = reader.getString(); + deserializedSecurityOperatorInner.name = reader.getString(); } else if ("type".equals(fieldName)) { - deserializedAvailableVersionInner.type = reader.getString(); - } else if ("properties".equals(fieldName)) { - deserializedAvailableVersionInner.properties = AvailableVersionProperties.fromJson(reader); + deserializedSecurityOperatorInner.type = reader.getString(); + } else if ("identity".equals(fieldName)) { + deserializedSecurityOperatorInner.identity = Identity.fromJson(reader); } else if ("systemData".equals(fieldName)) { - deserializedAvailableVersionInner.systemData = SystemData.fromJson(reader); + deserializedSecurityOperatorInner.systemData = SystemData.fromJson(reader); ======== deserializedGitHubRepositoryInner.id = reader.getString(); } else if ("name".equals(fieldName)) { @@ -205,17 +208,17 @@ public static GitHubRepositoryInner fromJson(JsonReader jsonReader) throws IOExc deserializedGitHubRepositoryInner.properties = GitHubRepositoryProperties.fromJson(reader); } else if ("systemData".equals(fieldName)) { deserializedGitHubRepositoryInner.systemData = SystemData.fromJson(reader); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java } else { reader.skipChildren(); } } -<<<<<<<< HEAD:sdk/appnetwork/azure-resourcemanager-appnetwork/src/main/java/com/azure/resourcemanager/appnetwork/fluent/models/AvailableVersionInner.java - return deserializedAvailableVersionInner; +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/SecurityOperatorInner.java + return deserializedSecurityOperatorInner; ======== return deserializedGitHubRepositoryInner; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/GitHubRepositoryInner.java }); } } diff --git a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java index 7e0699aeed69..33f757a35962 100644 --- a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java +++ b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java @@ -6,7 +6,7 @@ package com.azure.resourcemanager.authorization.fluent.models; ======== package com.azure.resourcemanager.security.fluent.models; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java import com.azure.core.annotation.Fluent; import com.azure.core.management.ProxyResource; @@ -36,7 +36,7 @@ public final class ScanResultInner extends ProxyResource { * A vulnerability assessment scan result properties for a single rule. */ private ScanResultProperties properties; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java /* * Azure Resource Manager metadata containing createdBy and modifiedBy information. @@ -96,7 +96,7 @@ private ScanResultInner() { */ public ScanResultProperties properties() { return this.properties; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java } /** @@ -184,7 +184,7 @@ public static AlertConfigurationInner fromJson(JsonReader jsonReader) throws IOE public static ScanResultInner fromJson(JsonReader jsonReader) throws IOException { return jsonReader.readObject(reader -> { ScanResultInner deserializedScanResultInner = new ScanResultInner(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java while (reader.nextToken() != JsonToken.END_OBJECT) { String fieldName = reader.getFieldName(); reader.nextToken(); @@ -210,7 +210,7 @@ public static ScanResultInner fromJson(JsonReader jsonReader) throws IOException deserializedScanResultInner.properties = ScanResultProperties.fromJson(reader); } else if ("systemData".equals(fieldName)) { deserializedScanResultInner.systemData = SystemData.fromJson(reader); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java } else { reader.skipChildren(); } @@ -220,7 +220,7 @@ public static ScanResultInner fromJson(JsonReader jsonReader) throws IOException return deserializedAlertConfigurationInner; ======== return deserializedScanResultInner; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/fluent/models/ScanResultInner.java }); } } diff --git a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/SqlVulnerabilityAssessmentScansClientImpl.java b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/SqlVulnerabilityAssessmentScansClientImpl.java index 6b0a5c2b27f7..caba8397fcc5 100644 --- a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/SqlVulnerabilityAssessmentScansClientImpl.java +++ b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/SqlVulnerabilityAssessmentScansClientImpl.java @@ -122,7 +122,8 @@ Mono> listNext(@PathParam(value = "nextLink", encoded = true) * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return represents the result of a SQL Vulnerability Assessment scan operation, wrapped in the ARM resource + * envelope along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> initiateScanWithResponseAsync(String resourceId, String databaseName) { @@ -150,7 +151,8 @@ private Mono>> initiateScanWithResponseAsync(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return represents the result of a SQL Vulnerability Assessment scan operation, wrapped in the ARM resource + * envelope along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> initiateScanWithResponseAsync(String resourceId, String databaseName, @@ -176,7 +178,8 @@ private Mono>> initiateScanWithResponseAsync(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of represents the result of a SQL Vulnerability Assessment scan + * operation, wrapped in the ARM resource envelope. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private @@ -196,7 +199,8 @@ private Mono>> initiateScanWithResponseAsync(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of represents the result of a SQL Vulnerability Assessment scan + * operation, wrapped in the ARM resource envelope. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private @@ -219,7 +223,8 @@ private Mono>> initiateScanWithResponseAsync(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of represents the result of a SQL Vulnerability Assessment scan + * operation, wrapped in the ARM resource envelope. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private @@ -240,7 +245,8 @@ private Mono>> initiateScanWithResponseAsync(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of represents the result of a SQL Vulnerability Assessment scan + * operation, wrapped in the ARM resource envelope. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -259,7 +265,8 @@ private Mono>> initiateScanWithResponseAsync(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of represents the result of a SQL Vulnerability Assessment scan + * operation, wrapped in the ARM resource envelope. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -276,7 +283,8 @@ private Mono>> initiateScanWithResponseAsync(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return represents the result of a SQL Vulnerability Assessment scan operation, wrapped in the ARM resource + * envelope on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono initiateScanAsync(String resourceId, @@ -291,7 +299,8 @@ private Mono initiateScanAsy * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return represents the result of a SQL Vulnerability Assessment scan operation, wrapped in the ARM resource + * envelope on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono initiateScanAsync(String resourceId) { @@ -308,7 +317,8 @@ private Mono initiateScanAsy * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return represents the result of a SQL Vulnerability Assessment scan operation, wrapped in the ARM resource + * envelope on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono initiateScanAsync(String resourceId, @@ -324,7 +334,8 @@ private Mono initiateScanAsy * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents the result of a SQL Vulnerability Assessment scan operation, wrapped in the ARM resource + * envelope. */ @ServiceMethod(returns = ReturnType.SINGLE) public SqlVulnerabilityAssessmentScanOperationResultInner initiateScan(String resourceId) { @@ -341,7 +352,8 @@ public SqlVulnerabilityAssessmentScanOperationResultInner initiateScan(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents the result of a SQL Vulnerability Assessment scan operation, wrapped in the ARM resource + * envelope. */ @ServiceMethod(returns = ReturnType.SINGLE) public SqlVulnerabilityAssessmentScanOperationResultInner initiateScan(String resourceId, String databaseName, diff --git a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java index 535897b9c6c5..2f1aebd986d0 100644 --- a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java +++ b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java @@ -6,7 +6,7 @@ package com.azure.resourcemanager.cosmos.implementation.models; ======== package com.azure.resourcemanager.security.implementation.models; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java import com.azure.core.annotation.Immutable; import com.azure.core.util.logging.ClientLogger; @@ -18,7 +18,7 @@ import com.azure.resourcemanager.cosmos.fluent.models.GremlinRoleAssignmentResourceInner; ======== import com.azure.resourcemanager.security.fluent.models.RegulatoryComplianceControlInner; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java import java.io.IOException; import java.util.List; @@ -41,7 +41,7 @@ public final class RegulatoryComplianceControlList implements JsonSerializable value; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java /* * The link to the next page of items @@ -73,7 +73,7 @@ private RegulatoryComplianceControlList() { * @return the value value. */ public List value() { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java return this.value; } @@ -99,7 +99,7 @@ public void validate() { "Missing required property value in model GremlinRoleAssignmentListResult")); ======== "Missing required property value in model RegulatoryComplianceControlList")); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java } else { value().forEach(e -> e.validate()); } @@ -109,7 +109,7 @@ public void validate() { private static final ClientLogger LOGGER = new ClientLogger(GremlinRoleAssignmentListResult.class); ======== private static final ClientLogger LOGGER = new ClientLogger(RegulatoryComplianceControlList.class); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java /** * {@inheritDoc} @@ -149,7 +149,7 @@ public static RegulatoryComplianceControlList fromJson(JsonReader jsonReader) th return jsonReader.readObject(reader -> { RegulatoryComplianceControlList deserializedRegulatoryComplianceControlList = new RegulatoryComplianceControlList(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java while (reader.nextToken() != JsonToken.END_OBJECT) { String fieldName = reader.getFieldName(); reader.nextToken(); @@ -167,7 +167,7 @@ public static RegulatoryComplianceControlList fromJson(JsonReader jsonReader) th deserializedRegulatoryComplianceControlList.value = value; } else if ("nextLink".equals(fieldName)) { deserializedRegulatoryComplianceControlList.nextLink = reader.getString(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java } else { reader.skipChildren(); } @@ -177,7 +177,7 @@ public static RegulatoryComplianceControlList fromJson(JsonReader jsonReader) th return deserializedGremlinRoleAssignmentListResult; ======== return deserializedRegulatoryComplianceControlList; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/implementation/models/RegulatoryComplianceControlList.java }); } } diff --git a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java index d9d39e44ee94..2a3e638ec16d 100644 --- a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java +++ b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java @@ -6,7 +6,7 @@ package com.azure.resourcemanager.search.models; ======== package com.azure.resourcemanager.security.models; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java import com.azure.core.annotation.Immutable; import com.azure.json.JsonReader; @@ -62,7 +62,7 @@ public Authentication() { */ public AuthenticationType authenticationType() { return this.authenticationType; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java } /** @@ -84,7 +84,7 @@ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException { ======== jsonWriter.writeStringField("authenticationType", this.authenticationType == null ? null : this.authenticationType.toString()); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java return jsonWriter.writeEndObject(); } @@ -107,7 +107,7 @@ public static DataIdentity fromJson(JsonReader jsonReader) throws IOException { * @throws IOException If an error occurs while reading the Authentication. */ public static Authentication fromJson(JsonReader jsonReader) throws IOException { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java return jsonReader.readObject(reader -> { String discriminatorValue = null; try (JsonReader readerToUse = reader.bufferObject()) { @@ -119,7 +119,7 @@ public static Authentication fromJson(JsonReader jsonReader) throws IOException if ("@odata.type".equals(fieldName)) { ======== if ("authenticationType".equals(fieldName)) { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java discriminatorValue = readerToUse.getString(); break; } else { @@ -135,7 +135,7 @@ public static Authentication fromJson(JsonReader jsonReader) throws IOException ======== if ("AccessToken".equals(discriminatorValue)) { return AccessTokenAuthentication.fromJson(readerToUse.reset()); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java } else { return fromJsonKnownDiscriminator(readerToUse.reset()); } @@ -151,7 +151,7 @@ static DataIdentity fromJsonKnownDiscriminator(JsonReader jsonReader) throws IOE static Authentication fromJsonKnownDiscriminator(JsonReader jsonReader) throws IOException { return jsonReader.readObject(reader -> { Authentication deserializedAuthentication = new Authentication(); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java while (reader.nextToken() != JsonToken.END_OBJECT) { String fieldName = reader.getFieldName(); reader.nextToken(); @@ -162,7 +162,7 @@ static Authentication fromJsonKnownDiscriminator(JsonReader jsonReader) throws I ======== if ("authenticationType".equals(fieldName)) { deserializedAuthentication.authenticationType = AuthenticationType.fromString(reader.getString()); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java } else { reader.skipChildren(); } @@ -172,7 +172,7 @@ static Authentication fromJsonKnownDiscriminator(JsonReader jsonReader) throws I return deserializedDataIdentity; ======== return deserializedAuthentication; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Authentication.java }); } } diff --git a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/RuleState.java b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/RuleState.java index 2a80cb38ddb4..919845a7eaf0 100644 --- a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/RuleState.java +++ b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/RuleState.java @@ -2,28 +2,45 @@ // Licensed under the MIT License. // Code generated by Microsoft (R) TypeSpec Code Generator. -<<<<<<<< HEAD:sdk/batch/azure-resourcemanager-batch/src/main/java/com/azure/resourcemanager/batch/models/IpRuleAction.java -package com.azure.resourcemanager.batch.models; +package com.azure.resourcemanager.security.models; /** - * The action when client IP address is matched. +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Rank.java + * The rank of the sensitivity label. */ -public enum IpRuleAction { +public enum Rank { + /** + * None. + */ + NONE("None"), + + /** + * Low. + */ + LOW("Low"), + + /** + * Medium. + */ + MEDIUM("Medium"), + + /** + * High. + */ + HIGH("High"), + /** - * Allow access for the matched client IP address. + * Critical. */ - ALLOW("Allow"); + CRITICAL("Critical"); /** - * The actual serialized value for a IpRuleAction instance. + * The actual serialized value for a Rank instance. */ private final String value; - IpRuleAction(String value) { + Rank(String value) { ======== -package com.azure.resourcemanager.security.models; - -/** * Possible states of the rule. */ public enum RuleState { @@ -48,23 +65,23 @@ public enum RuleState { private final String value; RuleState(String value) { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/RuleState.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/RuleState.java this.value = value; } /** -<<<<<<<< HEAD:sdk/batch/azure-resourcemanager-batch/src/main/java/com/azure/resourcemanager/batch/models/IpRuleAction.java - * Parses a serialized value to a IpRuleAction instance. +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Rank.java + * Parses a serialized value to a Rank instance. * * @param value the serialized value to parse. - * @return the parsed IpRuleAction object, or null if unable to parse. + * @return the parsed Rank object, or null if unable to parse. */ - public static IpRuleAction fromString(String value) { + public static Rank fromString(String value) { if (value == null) { return null; } - IpRuleAction[] items = IpRuleAction.values(); - for (IpRuleAction item : items) { + Rank[] items = Rank.values(); + for (Rank item : items) { ======== * Parses a serialized value to a RuleState instance. * @@ -77,7 +94,7 @@ public static RuleState fromString(String value) { } RuleState[] items = RuleState.values(); for (RuleState item : items) { ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/RuleState.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/RuleState.java if (item.toString().equalsIgnoreCase(value)) { return item; } diff --git a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java index d0068dba3c9e..600f6aea6af7 100644 --- a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java +++ b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java @@ -2,32 +2,22 @@ // Licensed under the MIT License. // Code generated by Microsoft (R) TypeSpec Code Generator. -<<<<<<<< HEAD:sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/fluent/ClusterJobsClient.java -package com.azure.resourcemanager.azurestackhci.fluent; -======== package com.azure.resourcemanager.security.models; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java -import com.azure.core.annotation.ReturnType; -import com.azure.core.annotation.ServiceMethod; import com.azure.core.http.rest.PagedIterable; import com.azure.core.http.rest.Response; -import com.azure.core.management.polling.PollResult; import com.azure.core.util.Context; -import com.azure.core.util.polling.SyncPoller; -import com.azure.resourcemanager.azurestackhci.fluent.models.ClusterJobInner; /** -<<<<<<<< HEAD:sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/fluent/ClusterJobsClient.java - * An instance of this class provides access to all the operations defined in ClusterJobsClient. +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Assignments.java + * Resource collection API of Assignments. */ -public interface ClusterJobsClient { +public interface Assignments { /** - * Get a ClusterJob. + * Get a specific standard assignment for the requested scope by resourceId. * * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param clusterName The name of the cluster. - * @param jobsName Name of ClusterJob. + * @param assignmentId The security assignment key - unique key for the standard assignment. ======== * Resource collection API of SecurityConnectors. */ @@ -37,55 +27,90 @@ public interface SecurityConnectors { * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param securityConnectorName The security connector name. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. -<<<<<<<< HEAD:sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/fluent/ClusterJobsClient.java - * @return a ClusterJob along with {@link Response}. +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Assignments.java + * @return a specific standard assignment for the requested scope by resourceId along with {@link Response}. */ - @ServiceMethod(returns = ReturnType.SINGLE) - Response getWithResponse(String resourceGroupName, String clusterName, String jobsName, - Context context); + Response getByResourceGroupWithResponse(String resourceGroupName, String assignmentId, Context context); /** - * Get a ClusterJob. + * Get a specific standard assignment for the requested scope by resourceId. * * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param clusterName The name of the cluster. - * @param jobsName Name of ClusterJob. + * @param assignmentId The security assignment key - unique key for the standard assignment. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a ClusterJob. + * @return a specific standard assignment for the requested scope by resourceId. */ - @ServiceMethod(returns = ReturnType.SINGLE) - ClusterJobInner get(String resourceGroupName, String clusterName, String jobsName); + Assignment getByResourceGroup(String resourceGroupName, String assignmentId); /** - * Create a ClusterJob. + * Delete a standard assignment over a given scope. * * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param clusterName The name of the cluster. - * @param jobsName Name of ClusterJob. - * @param resource Resource create parameters. + * @param assignmentId The security assignment key - unique key for the standard assignment. + * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of cluster Jobs resource. + * @return the {@link Response}. */ - @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) - SyncPoller, ClusterJobInner> beginCreateOrUpdate(String resourceGroupName, - String clusterName, String jobsName, ClusterJobInner resource); + Response deleteByResourceGroupWithResponse(String resourceGroupName, String assignmentId, Context context); /** - * Create a ClusterJob. + * Delete a standard assignment over a given scope. * * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param clusterName The name of the cluster. - * @param jobsName Name of ClusterJob. - * @param resource Resource create parameters. + * @param assignmentId The security assignment key - unique key for the standard assignment. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + */ + void deleteByResourceGroup(String resourceGroupName, String assignmentId); + + /** + * Get a list of all relevant standardAssignments available for scope. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return a list of all relevant standardAssignments available for scope as paginated response with + * {@link PagedIterable}. + */ + PagedIterable listByResourceGroup(String resourceGroupName); + + /** + * Get a list of all relevant standardAssignments available for scope. + * + * @param resourceGroupName The name of the resource group. The name is case insensitive. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return a list of all relevant standardAssignments available for scope as paginated response with + * {@link PagedIterable}. + */ + PagedIterable listByResourceGroup(String resourceGroupName, Context context); + + /** + * Get a list of all relevant standardAssignments over a subscription level scope. + * + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return a list of all relevant standardAssignments over a subscription level scope as paginated response with + * {@link PagedIterable}. + */ + PagedIterable list(); + + /** + * Get a list of all relevant standardAssignments over a subscription level scope. + * ======== * @return the security connector resource along with {@link Response}. */ @@ -109,20 +134,19 @@ Response getByResourceGroupWithResponse(String resourceGroupN * * @param resourceGroupName The name of the resource group. The name is case insensitive. * @param securityConnectorName The security connector name. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. -<<<<<<<< HEAD:sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/fluent/ClusterJobsClient.java - * @return the {@link SyncPoller} for polling of cluster Jobs resource. +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Assignments.java + * @return a list of all relevant standardAssignments over a subscription level scope as paginated response with + * {@link PagedIterable}. */ - @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) - SyncPoller, ClusterJobInner> beginCreateOrUpdate(String resourceGroupName, - String clusterName, String jobsName, ClusterJobInner resource, Context context); + PagedIterable list(Context context); /** - * Create a ClusterJob. + * Get a specific standard assignment for the requested scope by resourceId. ======== * @return the {@link Response}. */ @@ -189,24 +213,19 @@ Response deleteByResourceGroupWithResponse(String resourceGroupName, Strin /** * Retrieves details of a specific security connector. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java * - * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param clusterName The name of the cluster. - * @param jobsName Name of ClusterJob. - * @param resource Resource create parameters. + * @param id the resource ID. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. -<<<<<<<< HEAD:sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/fluent/ClusterJobsClient.java - * @return cluster Jobs resource. +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Assignments.java + * @return a specific standard assignment for the requested scope by resourceId along with {@link Response}. */ - @ServiceMethod(returns = ReturnType.SINGLE) - ClusterJobInner createOrUpdate(String resourceGroupName, String clusterName, String jobsName, - ClusterJobInner resource); + Assignment getById(String id); /** - * Create a ClusterJob. + * Get a specific standard assignment for the requested scope by resourceId. ======== * @return the security connector resource along with {@link Response}. */ @@ -214,25 +233,20 @@ ClusterJobInner createOrUpdate(String resourceGroupName, String clusterName, Str /** * Retrieves details of a specific security connector. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java * - * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param clusterName The name of the cluster. - * @param jobsName Name of ClusterJob. - * @param resource Resource create parameters. + * @param id the resource ID. * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. -<<<<<<<< HEAD:sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/fluent/ClusterJobsClient.java - * @return cluster Jobs resource. +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Assignments.java + * @return a specific standard assignment for the requested scope by resourceId along with {@link Response}. */ - @ServiceMethod(returns = ReturnType.SINGLE) - ClusterJobInner createOrUpdate(String resourceGroupName, String clusterName, String jobsName, - ClusterJobInner resource, Context context); + Response getByIdWithResponse(String id, Context context); /** - * Delete a ClusterJob. + * Delete a standard assignment over a given scope. ======== * @return the security connector resource along with {@link Response}. */ @@ -240,103 +254,45 @@ ClusterJobInner createOrUpdate(String resourceGroupName, String clusterName, Str /** * Deletes a security connector. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java - * - * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param clusterName The name of the cluster. - * @param jobsName Name of ClusterJob. - * @throws IllegalArgumentException thrown if parameters fail the validation. - * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. - * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. - */ - @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) - SyncPoller, Void> beginDelete(String resourceGroupName, String clusterName, String jobsName); - - /** - * Delete a ClusterJob. +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java * - * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param clusterName The name of the cluster. - * @param jobsName Name of ClusterJob. - * @param context The context to associate with this operation. + * @param id the resource ID. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) - SyncPoller, Void> beginDelete(String resourceGroupName, String clusterName, String jobsName, - Context context); + void deleteById(String id); /** - * Delete a ClusterJob. - * - * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param clusterName The name of the cluster. - * @param jobsName Name of ClusterJob. - * @throws IllegalArgumentException thrown if parameters fail the validation. - * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. - * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - */ - @ServiceMethod(returns = ReturnType.SINGLE) - void delete(String resourceGroupName, String clusterName, String jobsName); - - /** -<<<<<<<< HEAD:sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/fluent/ClusterJobsClient.java - * Delete a ClusterJob. +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Assignments.java + * Delete a standard assignment over a given scope. ======== * Deletes a security connector. ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java * - * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param clusterName The name of the cluster. - * @param jobsName Name of ClusterJob. + * @param id the resource ID. * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return the {@link Response}. */ -<<<<<<<< HEAD:sdk/azurestackhci/azure-resourcemanager-azurestackhci/src/main/java/com/azure/resourcemanager/azurestackhci/fluent/ClusterJobsClient.java - @ServiceMethod(returns = ReturnType.SINGLE) - void delete(String resourceGroupName, String clusterName, String jobsName, Context context); - - /** - * List ClusterJob resources by Clusters. - * - * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param clusterName The name of the cluster. - * @throws IllegalArgumentException thrown if parameters fail the validation. - * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. - * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return list of Cluster Job resources for the HCI cluster as paginated response with {@link PagedIterable}. - */ - @ServiceMethod(returns = ReturnType.COLLECTION) - PagedIterable list(String resourceGroupName, String clusterName); + Response deleteByIdWithResponse(String id, Context context); /** - * List ClusterJob resources by Clusters. +<<<<<<<< HEAD:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Assignments.java + * Begins definition for a new Assignment resource. * - * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param clusterName The name of the cluster. - * @param context The context to associate with this operation. - * @throws IllegalArgumentException thrown if parameters fail the validation. - * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. - * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return list of Cluster Job resources for the HCI cluster as paginated response with {@link PagedIterable}. + * @param name resource name. + * @return the first stage of the new Assignment definition. */ - @ServiceMethod(returns = ReturnType.COLLECTION) - PagedIterable list(String resourceGroupName, String clusterName, Context context); + Assignment.DefinitionStages.Blank define(String name); ======== - Response deleteByIdWithResponse(String id, Context context); - - /** * Begins definition for a new SecurityConnector resource. * * @param name resource name. * @return the first stage of the new SecurityConnector definition. */ SecurityConnector.DefinitionStages.Blank define(String name); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SecurityConnectors.java } diff --git a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SqlVulnerabilityAssessmentScans.java b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SqlVulnerabilityAssessmentScans.java index 6cfe7d513fbf..142894a675cc 100644 --- a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SqlVulnerabilityAssessmentScans.java +++ b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/SqlVulnerabilityAssessmentScans.java @@ -19,7 +19,8 @@ public interface SqlVulnerabilityAssessmentScans { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents the result of a SQL Vulnerability Assessment scan operation, wrapped in the ARM resource + * envelope. */ SqlVulnerabilityAssessmentScanOperationResult initiateScan(String resourceId); @@ -32,7 +33,8 @@ public interface SqlVulnerabilityAssessmentScans { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return represents the result of a SQL Vulnerability Assessment scan operation, wrapped in the ARM resource + * envelope. */ SqlVulnerabilityAssessmentScanOperationResult initiateScan(String resourceId, String databaseName, Context context); diff --git a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Type.java b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Type.java index 56eb47095d0a..523f5a113ae4 100644 --- a/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Type.java +++ b/sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Type.java @@ -6,7 +6,7 @@ package com.azure.resourcemanager.datafactory.models; ======== package com.azure.resourcemanager.security.models; ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Type.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Type.java import com.azure.core.util.ExpandableStringEnum; import java.util.Collection; @@ -33,7 +33,7 @@ public final class Type extends ExpandableStringEnum { * TVM. */ public static final Type TVM = fromString("TVM"); ->>>>>>>> 3ed5b63f21903d08fde0dbf6b42f70047bcded21:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Type.java +>>>>>>>> fe96ca870320f16ba563c74f48d981eb2265ff3a:sdk/security/azure-resourcemanager-security/src/main/java/com/azure/resourcemanager/security/models/Type.java /** * Creates a new instance of Type value. diff --git a/sdk/spring/spring-cloud-azure-appconfiguration-config/src/main/java/com/azure/spring/cloud/appconfiguration/config/implementation/properties/AppConfigurationKeyValueSelector.java b/sdk/spring/spring-cloud-azure-appconfiguration-config/src/main/java/com/azure/spring/cloud/appconfiguration/config/implementation/properties/AppConfigurationKeyValueSelector.java index 3eb97383ce8a..259b0734cbb6 100644 --- a/sdk/spring/spring-cloud-azure-appconfiguration-config/src/main/java/com/azure/spring/cloud/appconfiguration/config/implementation/properties/AppConfigurationKeyValueSelector.java +++ b/sdk/spring/spring-cloud-azure-appconfiguration-config/src/main/java/com/azure/spring/cloud/appconfiguration/config/implementation/properties/AppConfigurationKeyValueSelector.java @@ -14,8 +14,6 @@ import static com.azure.spring.cloud.appconfiguration.config.implementation.AppConfigurationConstants.EMPTY_LABEL; import com.azure.spring.cloud.appconfiguration.config.implementation.ValidationUtil; -import com.azure.spring.cloud.appconfiguration.config.implementation.ValidationUtil; - import jakarta.annotation.PostConstruct; import jakarta.validation.constraints.NotNull; diff --git a/sdk/spring/spring-cloud-azure-appconfiguration-config/src/test/java/com/azure/spring/cloud/appconfiguration/config/implementation/AppConfigurationReplicaClientBuilderTest.java b/sdk/spring/spring-cloud-azure-appconfiguration-config/src/test/java/com/azure/spring/cloud/appconfiguration/config/implementation/AppConfigurationReplicaClientBuilderTest.java index ff2291a54a69..bce03c47b10b 100644 --- a/sdk/spring/spring-cloud-azure-appconfiguration-config/src/test/java/com/azure/spring/cloud/appconfiguration/config/implementation/AppConfigurationReplicaClientBuilderTest.java +++ b/sdk/spring/spring-cloud-azure-appconfiguration-config/src/test/java/com/azure/spring/cloud/appconfiguration/config/implementation/AppConfigurationReplicaClientBuilderTest.java @@ -409,76 +409,4 @@ public void buildClientsFromMultipleEndpointsReplicaCountTest() { } } - @Test - public void buildClientsWithLoadBalancingEnabledTest() { - // Test that load balancing shuffles the order of clients - configStore = new ConfigStore(); - List endpoints = new ArrayList<>(); - - // Add multiple endpoints to shuffle - endpoints.add(TEST_ENDPOINT); - endpoints.add(TEST_ENDPOINT_GEO); - endpoints.add("https://third.test.config.io"); - endpoints.add("https://fourth.test.config.io"); - - configStore.setEndpoints(endpoints); - configStore.setLoadBalancingEnabled(true); - configStore.validateAndInit(); - - clientBuilder = new AppConfigurationReplicaClientsBuilder(clientFactoryMock, null, false, false); - AppConfigurationReplicaClientsBuilder spy = Mockito.spy(clientBuilder); - - ConfigurationClientBuilder builder = new ConfigurationClientBuilder(); - when(builderMock.endpoint(Mockito.anyString())).thenReturn(builder); - when(builderMock.addPolicy(Mockito.any())).thenReturn(builderMock); - when(clientFactoryMock.build()).thenReturn(builderMock); - - // Build clients multiple times and verify that order changes (due to shuffle) - List clients1 = spy.buildClients(configStore); - List clients2 = spy.buildClients(configStore); - - assertEquals(4, clients1.size()); - assertEquals(4, clients2.size()); - - // The order should potentially differ due to random shuffling - // We can't guarantee they're different, but we can verify the same endpoints exist - List endpoints1 = clients1.stream().map(AppConfigurationReplicaClient::getEndpoint).toList(); - List endpoints2 = clients2.stream().map(AppConfigurationReplicaClient::getEndpoint).toList(); - - // All endpoints should be present in both lists (just potentially in different order) - assertTrue(endpoints1.containsAll(endpoints)); - assertTrue(endpoints2.containsAll(endpoints)); - } - - @Test - public void buildClientsWithLoadBalancingDisabledTest() { - // Test that without load balancing, order is preserved - configStore = new ConfigStore(); - List endpoints = new ArrayList<>(); - - endpoints.add(TEST_ENDPOINT); - endpoints.add(TEST_ENDPOINT_GEO); - endpoints.add("https://third.test.config.io"); - - configStore.setEndpoints(endpoints); - configStore.setLoadBalancingEnabled(false); - configStore.validateAndInit(); - - clientBuilder = new AppConfigurationReplicaClientsBuilder(clientFactoryMock, null, false, false); - AppConfigurationReplicaClientsBuilder spy = Mockito.spy(clientBuilder); - - ConfigurationClientBuilder builder = new ConfigurationClientBuilder(); - when(builderMock.endpoint(Mockito.anyString())).thenReturn(builder); - when(builderMock.addPolicy(Mockito.any())).thenReturn(builderMock); - when(clientFactoryMock.build()).thenReturn(builderMock); - - List clients = spy.buildClients(configStore); - - assertEquals(3, clients.size()); - // When load balancing is disabled, order should match input order - assertEquals(TEST_ENDPOINT, clients.get(0).getEndpoint()); - assertEquals(TEST_ENDPOINT_GEO, clients.get(1).getEndpoint()); - assertEquals("https://third.test.config.io", clients.get(2).getEndpoint()); - } - } diff --git a/sdk/spring/spring-cloud-azure-appconfiguration-config/src/test/java/com/azure/spring/cloud/appconfiguration/config/implementation/properties/AppConfigurationPropertiesTest.java b/sdk/spring/spring-cloud-azure-appconfiguration-config/src/test/java/com/azure/spring/cloud/appconfiguration/config/implementation/properties/AppConfigurationPropertiesTest.java index ec799fbb055c..dec2401f9a72 100644 --- a/sdk/spring/spring-cloud-azure-appconfiguration-config/src/test/java/com/azure/spring/cloud/appconfiguration/config/implementation/properties/AppConfigurationPropertiesTest.java +++ b/sdk/spring/spring-cloud-azure-appconfiguration-config/src/test/java/com/azure/spring/cloud/appconfiguration/config/implementation/properties/AppConfigurationPropertiesTest.java @@ -178,51 +178,4 @@ public void disabledStoreWithDuplicateEndpointIsAllowed() { assertEquals(2, properties.getStores().size()); } - - @Test - public void disabledStoreIsSkippedDuringValidation() { - AppConfigurationProperties properties = new AppConfigurationProperties(); - List stores = new ArrayList<>(); - - // Create a disabled store with no connection string (would normally fail validation) - ConfigStore disabledStore = new ConfigStore(); - disabledStore.setEnabled(false); - stores.add(disabledStore); - - // Create an enabled store with valid connection string - ConfigStore enabledStore = new ConfigStore(); - enabledStore.setConnectionString(TEST_CONN_STRING); - stores.add(enabledStore); - - properties.setStores(stores); - - // Should not throw exception even though disabled store has no connection string - properties.validateAndInit(); - - assertEquals(2, properties.getStores().size()); - } - - @Test - public void disabledStoreWithDuplicateEndpointIsAllowed() { - AppConfigurationProperties properties = new AppConfigurationProperties(); - List stores = new ArrayList<>(); - - // Create an enabled store with endpoint - ConfigStore enabledStore = new ConfigStore(); - enabledStore.setConnectionString(TEST_CONN_STRING); - stores.add(enabledStore); - - // Create a disabled store with same endpoint (would normally fail duplicate check) - ConfigStore disabledStore = new ConfigStore(); - disabledStore.setEnabled(false); - disabledStore.setConnectionString(TEST_CONN_STRING); - stores.add(disabledStore); - - properties.setStores(stores); - - // Should not throw exception about duplicate endpoint because second store is disabled - properties.validateAndInit(); - - assertEquals(2, properties.getStores().size()); - } } diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/DistributedAvailabilityGroupsClient.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/DistributedAvailabilityGroupsClient.java index ac01aea4973a..7911027e3ea0 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/DistributedAvailabilityGroupsClient.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/DistributedAvailabilityGroupsClient.java @@ -488,7 +488,8 @@ PagedIterable listByInstance(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return distributed availability group between box and Sql Managed Instance along with {@link Response} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> failoverWithResponseAsync(String resourceGroupName, String managedInstanceName, @@ -504,7 +505,8 @@ Mono>> failoverWithResponseAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, DistributedAvailabilityGroupInner> beginFailoverAsync( @@ -521,7 +523,8 @@ PollerFlux, DistributedAvailabilit * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DistributedAvailabilityGroupInner> beginFailover( @@ -539,7 +542,8 @@ SyncPoller, DistributedAvailabilit * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DistributedAvailabilityGroupInner> beginFailover( @@ -556,7 +560,8 @@ SyncPoller, DistributedAvailabilit * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return distributed availability group between box and Sql Managed Instance on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono failoverAsync(String resourceGroupName, String managedInstanceName, @@ -572,7 +577,7 @@ Mono failoverAsync(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return distributed availability group between box and Sql Managed Instance. */ @ServiceMethod(returns = ReturnType.SINGLE) DistributedAvailabilityGroupInner failover(String resourceGroupName, String managedInstanceName, @@ -589,7 +594,7 @@ DistributedAvailabilityGroupInner failover(String resourceGroupName, String mana * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return distributed availability group between box and Sql Managed Instance. */ @ServiceMethod(returns = ReturnType.SINGLE) DistributedAvailabilityGroupInner failover(String resourceGroupName, String managedInstanceName, @@ -606,7 +611,8 @@ DistributedAvailabilityGroupInner failover(String resourceGroupName, String mana * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return distributed availability group between box and Sql Managed Instance along with {@link Response} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> setRoleWithResponseAsync(String resourceGroupName, String managedInstanceName, @@ -622,7 +628,8 @@ Mono>> setRoleWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, DistributedAvailabilityGroupInner> beginSetRoleAsync( @@ -639,7 +646,8 @@ PollerFlux, DistributedAvailabilit * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DistributedAvailabilityGroupInner> beginSetRole( @@ -657,7 +665,8 @@ SyncPoller, DistributedAvailabilit * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, DistributedAvailabilityGroupInner> beginSetRole( @@ -674,7 +683,8 @@ SyncPoller, DistributedAvailabilit * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return distributed availability group between box and Sql Managed Instance on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono setRoleAsync(String resourceGroupName, String managedInstanceName, @@ -690,7 +700,7 @@ Mono setRoleAsync(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return distributed availability group between box and Sql Managed Instance. */ @ServiceMethod(returns = ReturnType.SINGLE) DistributedAvailabilityGroupInner setRole(String resourceGroupName, String managedInstanceName, @@ -707,7 +717,7 @@ DistributedAvailabilityGroupInner setRole(String resourceGroupName, String manag * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return distributed availability group between box and Sql Managed Instance. */ @ServiceMethod(returns = ReturnType.SINGLE) DistributedAvailabilityGroupInner setRole(String resourceGroupName, String managedInstanceName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/FailoverGroupsClient.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/FailoverGroupsClient.java index 209300007af6..655fe8344154 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/FailoverGroupsClient.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/FailoverGroupsClient.java @@ -461,7 +461,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a failover group along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> failoverWithResponseAsync(String resourceGroupName, String serverName, @@ -476,7 +476,7 @@ Mono>> failoverWithResponseAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, FailoverGroupInner> beginFailoverAsync(String resourceGroupName, @@ -491,7 +491,7 @@ PollerFlux, FailoverGroupInner> beginFailoverAsyn * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, FailoverGroupInner> beginFailover(String resourceGroupName, @@ -507,7 +507,7 @@ SyncPoller, FailoverGroupInner> beginFailover(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, FailoverGroupInner> beginFailover(String resourceGroupName, @@ -522,7 +522,7 @@ SyncPoller, FailoverGroupInner> beginFailover(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a failover group on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono failoverAsync(String resourceGroupName, String serverName, String failoverGroupName); @@ -536,7 +536,7 @@ SyncPoller, FailoverGroupInner> beginFailover(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a failover group. */ @ServiceMethod(returns = ReturnType.SINGLE) FailoverGroupInner failover(String resourceGroupName, String serverName, String failoverGroupName); @@ -551,7 +551,7 @@ SyncPoller, FailoverGroupInner> beginFailover(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a failover group. */ @ServiceMethod(returns = ReturnType.SINGLE) FailoverGroupInner failover(String resourceGroupName, String serverName, String failoverGroupName, Context context); @@ -565,7 +565,7 @@ SyncPoller, FailoverGroupInner> beginFailover(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a failover group along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> forceFailoverAllowDataLossWithResponseAsync(String resourceGroupName, @@ -580,7 +580,7 @@ Mono>> forceFailoverAllowDataLossWithResponseAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, FailoverGroupInner> @@ -595,7 +595,7 @@ Mono>> forceFailoverAllowDataLossWithResponseAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, FailoverGroupInner> @@ -611,7 +611,7 @@ Mono>> forceFailoverAllowDataLossWithResponseAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, FailoverGroupInner> beginForceFailoverAllowDataLoss( @@ -626,7 +626,7 @@ SyncPoller, FailoverGroupInner> beginForceFailove * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a failover group on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono forceFailoverAllowDataLossAsync(String resourceGroupName, String serverName, @@ -641,7 +641,7 @@ Mono forceFailoverAllowDataLossAsync(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a failover group. */ @ServiceMethod(returns = ReturnType.SINGLE) FailoverGroupInner forceFailoverAllowDataLoss(String resourceGroupName, String serverName, @@ -657,7 +657,7 @@ FailoverGroupInner forceFailoverAllowDataLoss(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a failover group. */ @ServiceMethod(returns = ReturnType.SINGLE) FailoverGroupInner forceFailoverAllowDataLoss(String resourceGroupName, String serverName, String failoverGroupName, @@ -673,7 +673,7 @@ FailoverGroupInner forceFailoverAllowDataLoss(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a failover group along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> tryPlannedBeforeForcedFailoverWithResponseAsync(String resourceGroupName, @@ -689,7 +689,7 @@ Mono>> tryPlannedBeforeForcedFailoverWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, FailoverGroupInner> @@ -705,7 +705,7 @@ Mono>> tryPlannedBeforeForcedFailoverWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, FailoverGroupInner> @@ -722,7 +722,7 @@ Mono>> tryPlannedBeforeForcedFailoverWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, FailoverGroupInner> beginTryPlannedBeforeForcedFailover( @@ -738,7 +738,7 @@ SyncPoller, FailoverGroupInner> beginTryPlannedBe * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a failover group on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono tryPlannedBeforeForcedFailoverAsync(String resourceGroupName, String serverName, @@ -754,7 +754,7 @@ Mono tryPlannedBeforeForcedFailoverAsync(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a failover group. */ @ServiceMethod(returns = ReturnType.SINGLE) FailoverGroupInner tryPlannedBeforeForcedFailover(String resourceGroupName, String serverName, @@ -771,7 +771,7 @@ FailoverGroupInner tryPlannedBeforeForcedFailover(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a failover group. */ @ServiceMethod(returns = ReturnType.SINGLE) FailoverGroupInner tryPlannedBeforeForcedFailover(String resourceGroupName, String serverName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ManagedDatabasesClient.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ManagedDatabasesClient.java index 0eaf904d16dd..d95003597dea 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ManagedDatabasesClient.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ManagedDatabasesClient.java @@ -801,7 +801,7 @@ void completeRestore(String resourceGroupName, String managedInstanceName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a managed database resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> reevaluateInaccessibleDatabaseStateWithResponseAsync(String resourceGroupName, @@ -816,7 +816,7 @@ Mono>> reevaluateInaccessibleDatabaseStateWithResponse * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a managed database resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, ManagedDatabaseInner> beginReevaluateInaccessibleDatabaseStateAsync( @@ -831,7 +831,7 @@ PollerFlux, ManagedDatabaseInner> beginReevalua * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a managed database resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ManagedDatabaseInner> beginReevaluateInaccessibleDatabaseState( @@ -847,7 +847,7 @@ SyncPoller, ManagedDatabaseInner> beginReevalua * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a managed database resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ManagedDatabaseInner> beginReevaluateInaccessibleDatabaseState( @@ -862,7 +862,7 @@ SyncPoller, ManagedDatabaseInner> beginReevalua * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a managed database resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono reevaluateInaccessibleDatabaseStateAsync(String resourceGroupName, @@ -877,7 +877,7 @@ Mono reevaluateInaccessibleDatabaseStateAsync(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a managed database resource. */ @ServiceMethod(returns = ReturnType.SINGLE) ManagedDatabaseInner reevaluateInaccessibleDatabaseState(String resourceGroupName, String managedInstanceName, @@ -893,7 +893,7 @@ ManagedDatabaseInner reevaluateInaccessibleDatabaseState(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a managed database resource. */ @ServiceMethod(returns = ReturnType.SINGLE) ManagedDatabaseInner reevaluateInaccessibleDatabaseState(String resourceGroupName, String managedInstanceName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ManagedInstancesClient.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ManagedInstancesClient.java index df53d52fa4dc..857fea1c4c79 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ManagedInstancesClient.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ManagedInstancesClient.java @@ -767,7 +767,8 @@ SyncPoller, Void> beginReevaluateInaccessibleDatabaseState(Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an RefreshExternalGovernanceStatus operation result resource along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> refreshStatusWithResponseAsync(String resourceGroupName, @@ -781,7 +782,7 @@ Mono>> refreshStatusWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, RefreshExternalGovernanceStatusOperationResultMIInner> @@ -795,7 +796,7 @@ Mono>> refreshStatusWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, RefreshExternalGovernanceStatusOperationResultMIInner> @@ -810,7 +811,7 @@ Mono>> refreshStatusWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, RefreshExternalGovernanceStatusOperationResultMIInner> @@ -824,7 +825,7 @@ Mono>> refreshStatusWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an RefreshExternalGovernanceStatus operation result resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono refreshStatusAsync(String resourceGroupName, @@ -838,7 +839,7 @@ Mono refreshStatusAsync(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.SINGLE) RefreshExternalGovernanceStatusOperationResultMIInner refreshStatus(String resourceGroupName, @@ -853,7 +854,7 @@ RefreshExternalGovernanceStatusOperationResultMIInner refreshStatus(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.SINGLE) RefreshExternalGovernanceStatusOperationResultMIInner refreshStatus(String resourceGroupName, @@ -867,7 +868,7 @@ RefreshExternalGovernanceStatusOperationResultMIInner refreshStatus(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an Azure SQL managed instance along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> startWithResponseAsync(String resourceGroupName, String managedInstanceName); @@ -880,7 +881,7 @@ RefreshExternalGovernanceStatusOperationResultMIInner refreshStatus(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, ManagedInstanceInner> beginStartAsync(String resourceGroupName, @@ -894,7 +895,7 @@ PollerFlux, ManagedInstanceInner> beginStartAsy * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ManagedInstanceInner> beginStart(String resourceGroupName, @@ -909,7 +910,7 @@ SyncPoller, ManagedInstanceInner> beginStart(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ManagedInstanceInner> beginStart(String resourceGroupName, @@ -923,7 +924,7 @@ SyncPoller, ManagedInstanceInner> beginStart(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an Azure SQL managed instance on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono startAsync(String resourceGroupName, String managedInstanceName); @@ -936,7 +937,7 @@ SyncPoller, ManagedInstanceInner> beginStart(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.SINGLE) ManagedInstanceInner start(String resourceGroupName, String managedInstanceName); @@ -950,7 +951,7 @@ SyncPoller, ManagedInstanceInner> beginStart(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.SINGLE) ManagedInstanceInner start(String resourceGroupName, String managedInstanceName, Context context); @@ -963,7 +964,7 @@ SyncPoller, ManagedInstanceInner> beginStart(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an Azure SQL managed instance along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> stopWithResponseAsync(String resourceGroupName, String managedInstanceName); @@ -976,7 +977,7 @@ SyncPoller, ManagedInstanceInner> beginStart(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, ManagedInstanceInner> beginStopAsync(String resourceGroupName, @@ -990,7 +991,7 @@ PollerFlux, ManagedInstanceInner> beginStopAsyn * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ManagedInstanceInner> beginStop(String resourceGroupName, @@ -1005,7 +1006,7 @@ SyncPoller, ManagedInstanceInner> beginStop(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ManagedInstanceInner> beginStop(String resourceGroupName, @@ -1019,7 +1020,7 @@ SyncPoller, ManagedInstanceInner> beginStop(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an Azure SQL managed instance on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono stopAsync(String resourceGroupName, String managedInstanceName); @@ -1032,7 +1033,7 @@ SyncPoller, ManagedInstanceInner> beginStop(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.SINGLE) ManagedInstanceInner stop(String resourceGroupName, String managedInstanceName); @@ -1046,7 +1047,7 @@ SyncPoller, ManagedInstanceInner> beginStop(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.SINGLE) ManagedInstanceInner stop(String resourceGroupName, String managedInstanceName, Context context); diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ManagedLedgerDigestUploadsOperationsClient.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ManagedLedgerDigestUploadsOperationsClient.java index ebd950f0940c..5e2d67d3148f 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ManagedLedgerDigestUploadsOperationsClient.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ManagedLedgerDigestUploadsOperationsClient.java @@ -276,7 +276,8 @@ PagedIterable listByDatabase(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return azure SQL Database ledger digest upload settings along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> disableWithResponseAsync(String resourceGroupName, String managedInstanceName, @@ -292,7 +293,7 @@ Mono>> disableWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of azure SQL Database ledger digest upload settings. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, ManagedLedgerDigestUploadsInner> beginDisableAsync( @@ -309,7 +310,7 @@ PollerFlux, ManagedLedgerDigestUploa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of azure SQL Database ledger digest upload settings. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ManagedLedgerDigestUploadsInner> beginDisable( @@ -327,7 +328,7 @@ SyncPoller, ManagedLedgerDigestUploa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of azure SQL Database ledger digest upload settings. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ManagedLedgerDigestUploadsInner> beginDisable( @@ -344,7 +345,7 @@ SyncPoller, ManagedLedgerDigestUploa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return azure SQL Database ledger digest upload settings on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono disableAsync(String resourceGroupName, String managedInstanceName, @@ -360,7 +361,7 @@ Mono disableAsync(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return azure SQL Database ledger digest upload settings. */ @ServiceMethod(returns = ReturnType.SINGLE) ManagedLedgerDigestUploadsInner disable(String resourceGroupName, String managedInstanceName, String databaseName, @@ -377,7 +378,7 @@ ManagedLedgerDigestUploadsInner disable(String resourceGroupName, String managed * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return azure SQL Database ledger digest upload settings. */ @ServiceMethod(returns = ReturnType.SINGLE) ManagedLedgerDigestUploadsInner disable(String resourceGroupName, String managedInstanceName, String databaseName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/NetworkSecurityPerimeterConfigurationsClient.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/NetworkSecurityPerimeterConfigurationsClient.java index de9079b82f43..088c828cdc9c 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/NetworkSecurityPerimeterConfigurationsClient.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/NetworkSecurityPerimeterConfigurationsClient.java @@ -135,7 +135,7 @@ PagedIterable listByServer(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return nSP Configuration for a server along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> reconcileWithResponseAsync(String resourceGroupName, String serverName, @@ -150,7 +150,7 @@ Mono>> reconcileWithResponseAsync(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of nSP Configuration for a server. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, NetworkSecurityPerimeterConfigurationInner> @@ -165,7 +165,7 @@ Mono>> reconcileWithResponseAsync(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of nSP Configuration for a server. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, NetworkSecurityPerimeterConfigurationInner> @@ -181,7 +181,7 @@ Mono>> reconcileWithResponseAsync(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of nSP Configuration for a server. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, NetworkSecurityPerimeterConfigurationInner> @@ -196,7 +196,7 @@ Mono>> reconcileWithResponseAsync(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return nSP Configuration for a server on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono reconcileAsync(String resourceGroupName, String serverName, @@ -211,7 +211,7 @@ Mono reconcileAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return nSP Configuration for a server. */ @ServiceMethod(returns = ReturnType.SINGLE) NetworkSecurityPerimeterConfigurationInner reconcile(String resourceGroupName, String serverName, @@ -227,7 +227,7 @@ NetworkSecurityPerimeterConfigurationInner reconcile(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return nSP Configuration for a server. */ @ServiceMethod(returns = ReturnType.SINGLE) NetworkSecurityPerimeterConfigurationInner reconcile(String resourceGroupName, String serverName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ServersClient.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ServersClient.java index 28767411f932..dec8b5775922 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ServersClient.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/ServersClient.java @@ -493,7 +493,8 @@ SyncPoller, ServerInner> beginUpdate(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an ImportExport operation result resource along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> importDatabaseWithResponseAsync(String resourceGroupName, String serverName, @@ -508,7 +509,7 @@ Mono>> importDatabaseWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an ImportExport operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, ImportExportOperationResultInner> @@ -523,7 +524,7 @@ Mono>> importDatabaseWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an ImportExport operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ImportExportOperationResultInner> @@ -539,7 +540,7 @@ Mono>> importDatabaseWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an ImportExport operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ImportExportOperationResultInner> beginImportDatabase( @@ -554,7 +555,7 @@ SyncPoller, ImportExportOperationRe * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an ImportExport operation result resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono importDatabaseAsync(String resourceGroupName, String serverName, @@ -569,7 +570,7 @@ Mono importDatabaseAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an ImportExport operation result resource. */ @ServiceMethod(returns = ReturnType.SINGLE) ImportExportOperationResultInner importDatabase(String resourceGroupName, String serverName, @@ -585,7 +586,7 @@ ImportExportOperationResultInner importDatabase(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an ImportExport operation result resource. */ @ServiceMethod(returns = ReturnType.SINGLE) ImportExportOperationResultInner importDatabase(String resourceGroupName, String serverName, @@ -599,7 +600,8 @@ ImportExportOperationResultInner importDatabase(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an RefreshExternalGovernanceStatus operation result resource along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> refreshStatusWithResponseAsync(String resourceGroupName, String serverName); @@ -612,7 +614,7 @@ ImportExportOperationResultInner importDatabase(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, RefreshExternalGovernanceStatusOperationResultInner> @@ -626,7 +628,7 @@ ImportExportOperationResultInner importDatabase(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, RefreshExternalGovernanceStatusOperationResultInner> @@ -641,7 +643,7 @@ ImportExportOperationResultInner importDatabase(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, RefreshExternalGovernanceStatusOperationResultInner> @@ -655,7 +657,7 @@ ImportExportOperationResultInner importDatabase(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an RefreshExternalGovernanceStatus operation result resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono refreshStatusAsync(String resourceGroupName, @@ -669,7 +671,7 @@ Mono refreshStatusAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.SINGLE) RefreshExternalGovernanceStatusOperationResultInner refreshStatus(String resourceGroupName, String serverName); @@ -683,7 +685,7 @@ Mono refreshStatusAsync(Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.SINGLE) RefreshExternalGovernanceStatusOperationResultInner refreshStatus(String resourceGroupName, String serverName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/TransparentDataEncryptionsClient.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/TransparentDataEncryptionsClient.java index 9a49d797ca4f..98072715d144 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/TransparentDataEncryptionsClient.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/TransparentDataEncryptionsClient.java @@ -278,7 +278,8 @@ PagedIterable listByDatabase(Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a logical database transparent data encryption scan state along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> resumeWithResponseAsync(String resourceGroupName, String serverName, @@ -294,7 +295,7 @@ Mono>> resumeWithResponseAsync(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, LogicalDatabaseTransparentDataEncryptionInner> @@ -311,7 +312,7 @@ Mono>> resumeWithResponseAsync(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, LogicalDatabaseTransparentDataEncryptionInner> @@ -329,7 +330,7 @@ Mono>> resumeWithResponseAsync(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, LogicalDatabaseTransparentDataEncryptionInner> @@ -346,7 +347,7 @@ Mono>> resumeWithResponseAsync(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a logical database transparent data encryption scan state on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono resumeAsync(String resourceGroupName, String serverName, @@ -362,7 +363,7 @@ Mono resumeAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.SINGLE) LogicalDatabaseTransparentDataEncryptionInner resume(String resourceGroupName, String serverName, @@ -379,7 +380,7 @@ LogicalDatabaseTransparentDataEncryptionInner resume(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.SINGLE) LogicalDatabaseTransparentDataEncryptionInner resume(String resourceGroupName, String serverName, @@ -395,7 +396,8 @@ LogicalDatabaseTransparentDataEncryptionInner resume(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a logical database transparent data encryption scan state along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> suspendWithResponseAsync(String resourceGroupName, String serverName, @@ -411,7 +413,7 @@ Mono>> suspendWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, LogicalDatabaseTransparentDataEncryptionInner> @@ -428,7 +430,7 @@ Mono>> suspendWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, LogicalDatabaseTransparentDataEncryptionInner> @@ -446,7 +448,7 @@ Mono>> suspendWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, LogicalDatabaseTransparentDataEncryptionInner> @@ -463,7 +465,7 @@ Mono>> suspendWithResponseAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a logical database transparent data encryption scan state on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono suspendAsync(String resourceGroupName, String serverName, @@ -479,7 +481,7 @@ Mono suspendAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.SINGLE) LogicalDatabaseTransparentDataEncryptionInner suspend(String resourceGroupName, String serverName, @@ -496,7 +498,7 @@ LogicalDatabaseTransparentDataEncryptionInner suspend(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.SINGLE) LogicalDatabaseTransparentDataEncryptionInner suspend(String resourceGroupName, String serverName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/VirtualClustersClient.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/VirtualClustersClient.java index 0f0346bb5424..403ee703bbc3 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/VirtualClustersClient.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/fluent/VirtualClustersClient.java @@ -465,7 +465,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a refresh DNS servers operation along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> updateDnsServersWithResponseAsync(String resourceGroupName, @@ -479,7 +479,7 @@ Mono>> updateDnsServersWithResponseAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a refresh DNS servers operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, UpdateVirtualClusterDnsServersOperationInner> @@ -493,7 +493,7 @@ Mono>> updateDnsServersWithResponseAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a refresh DNS servers operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, UpdateVirtualClusterDnsServersOperationInner> @@ -508,7 +508,7 @@ Mono>> updateDnsServersWithResponseAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a refresh DNS servers operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, UpdateVirtualClusterDnsServersOperationInner> @@ -522,7 +522,7 @@ Mono>> updateDnsServersWithResponseAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a refresh DNS servers operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono updateDnsServersAsync(String resourceGroupName, @@ -536,7 +536,7 @@ Mono updateDnsServersAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a refresh DNS servers operation. */ @ServiceMethod(returns = ReturnType.SINGLE) UpdateVirtualClusterDnsServersOperationInner updateDnsServers(String resourceGroupName, String virtualClusterName); @@ -550,7 +550,7 @@ Mono updateDnsServersAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a refresh DNS servers operation. */ @ServiceMethod(returns = ReturnType.SINGLE) UpdateVirtualClusterDnsServersOperationInner updateDnsServers(String resourceGroupName, String virtualClusterName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/DistributedAvailabilityGroupsClientImpl.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/DistributedAvailabilityGroupsClientImpl.java index 7507cb2f671d..96fb9e1cda6d 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/DistributedAvailabilityGroupsClientImpl.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/DistributedAvailabilityGroupsClientImpl.java @@ -1245,7 +1245,8 @@ public PagedIterable listByInstance(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return distributed availability group between box and Sql Managed Instance along with {@link Response} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> failoverWithResponseAsync(String resourceGroupName, @@ -1296,7 +1297,8 @@ public Mono>> failoverWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return distributed availability group between box and Sql Managed Instance along with {@link Response} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> failoverWithResponseAsync(String resourceGroupName, @@ -1345,7 +1347,8 @@ private Mono>> failoverWithResponseAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, DistributedAvailabilityGroupInner> @@ -1369,7 +1372,8 @@ private Mono>> failoverWithResponseAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, DistributedAvailabilityGroupInner> @@ -1394,7 +1398,8 @@ private Mono>> failoverWithResponseAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DistributedAvailabilityGroupInner> beginFailover( @@ -1416,7 +1421,8 @@ public SyncPoller, DistributedAvai * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DistributedAvailabilityGroupInner> beginFailover( @@ -1438,7 +1444,8 @@ public SyncPoller, DistributedAvai * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return distributed availability group between box and Sql Managed Instance on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono failoverAsync(String resourceGroupName, String managedInstanceName, @@ -1459,7 +1466,8 @@ public Mono failoverAsync(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return distributed availability group between box and Sql Managed Instance on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono failoverAsync(String resourceGroupName, String managedInstanceName, @@ -1479,7 +1487,7 @@ private Mono failoverAsync(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return distributed availability group between box and Sql Managed Instance. */ @ServiceMethod(returns = ReturnType.SINGLE) public DistributedAvailabilityGroupInner failover(String resourceGroupName, String managedInstanceName, @@ -1499,7 +1507,7 @@ public DistributedAvailabilityGroupInner failover(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return distributed availability group between box and Sql Managed Instance. */ @ServiceMethod(returns = ReturnType.SINGLE) public DistributedAvailabilityGroupInner failover(String resourceGroupName, String managedInstanceName, @@ -1519,7 +1527,8 @@ public DistributedAvailabilityGroupInner failover(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return distributed availability group between box and Sql Managed Instance along with {@link Response} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> setRoleWithResponseAsync(String resourceGroupName, @@ -1570,7 +1579,8 @@ public Mono>> setRoleWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return distributed availability group between box and Sql Managed Instance along with {@link Response} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> setRoleWithResponseAsync(String resourceGroupName, @@ -1619,7 +1629,8 @@ private Mono>> setRoleWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, DistributedAvailabilityGroupInner> @@ -1643,7 +1654,8 @@ private Mono>> setRoleWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, DistributedAvailabilityGroupInner> @@ -1667,7 +1679,8 @@ private Mono>> setRoleWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DistributedAvailabilityGroupInner> beginSetRole( @@ -1689,7 +1702,8 @@ public SyncPoller, DistributedAvai * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of distributed availability group between box and Sql Managed + * Instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, DistributedAvailabilityGroupInner> beginSetRole( @@ -1711,7 +1725,8 @@ public SyncPoller, DistributedAvai * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return distributed availability group between box and Sql Managed Instance on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono setRoleAsync(String resourceGroupName, String managedInstanceName, @@ -1732,7 +1747,8 @@ public Mono setRoleAsync(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return distributed availability group between box and Sql Managed Instance on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono setRoleAsync(String resourceGroupName, String managedInstanceName, @@ -1751,7 +1767,7 @@ private Mono setRoleAsync(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return distributed availability group between box and Sql Managed Instance. */ @ServiceMethod(returns = ReturnType.SINGLE) public DistributedAvailabilityGroupInner setRole(String resourceGroupName, String managedInstanceName, @@ -1771,7 +1787,7 @@ public DistributedAvailabilityGroupInner setRole(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return distributed availability group between box and Sql Managed Instance. */ @ServiceMethod(returns = ReturnType.SINGLE) public DistributedAvailabilityGroupInner setRole(String resourceGroupName, String managedInstanceName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/FailoverGroupsClientImpl.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/FailoverGroupsClientImpl.java index 0cef4a75736c..4408b5c20884 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/FailoverGroupsClientImpl.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/FailoverGroupsClientImpl.java @@ -1174,7 +1174,7 @@ public PagedIterable listByServer(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a failover group along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> failoverWithResponseAsync(String resourceGroupName, String serverName, @@ -1215,7 +1215,7 @@ public Mono>> failoverWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a failover group along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> failoverWithResponseAsync(String resourceGroupName, String serverName, @@ -1254,7 +1254,7 @@ private Mono>> failoverWithResponseAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, FailoverGroupInner> beginFailoverAsync(String resourceGroupName, @@ -1275,7 +1275,7 @@ public PollerFlux, FailoverGroupInner> beginFailo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, FailoverGroupInner> beginFailoverAsync(String resourceGroupName, @@ -1296,7 +1296,7 @@ private PollerFlux, FailoverGroupInner> beginFail * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, FailoverGroupInner> beginFailover(String resourceGroupName, @@ -1314,7 +1314,7 @@ public SyncPoller, FailoverGroupInner> beginFailo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, FailoverGroupInner> beginFailover(String resourceGroupName, @@ -1331,7 +1331,7 @@ public SyncPoller, FailoverGroupInner> beginFailo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a failover group on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono failoverAsync(String resourceGroupName, String serverName, @@ -1350,7 +1350,7 @@ public Mono failoverAsync(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a failover group on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono failoverAsync(String resourceGroupName, String serverName, @@ -1368,7 +1368,7 @@ private Mono failoverAsync(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a failover group. */ @ServiceMethod(returns = ReturnType.SINGLE) public FailoverGroupInner failover(String resourceGroupName, String serverName, String failoverGroupName) { @@ -1385,7 +1385,7 @@ public FailoverGroupInner failover(String resourceGroupName, String serverName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a failover group. */ @ServiceMethod(returns = ReturnType.SINGLE) public FailoverGroupInner failover(String resourceGroupName, String serverName, String failoverGroupName, @@ -1402,7 +1402,7 @@ public FailoverGroupInner failover(String resourceGroupName, String serverName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a failover group along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> forceFailoverAllowDataLossWithResponseAsync(String resourceGroupName, @@ -1444,7 +1444,7 @@ public Mono>> forceFailoverAllowDataLossWithResponseAs * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a failover group along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> forceFailoverAllowDataLossWithResponseAsync(String resourceGroupName, @@ -1483,7 +1483,7 @@ private Mono>> forceFailoverAllowDataLossWithResponseA * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, FailoverGroupInner> @@ -1504,7 +1504,7 @@ private Mono>> forceFailoverAllowDataLossWithResponseA * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, FailoverGroupInner> beginForceFailoverAllowDataLossAsync( @@ -1525,7 +1525,7 @@ private PollerFlux, FailoverGroupInner> beginForc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, FailoverGroupInner> @@ -1544,7 +1544,7 @@ private PollerFlux, FailoverGroupInner> beginForc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, FailoverGroupInner> beginForceFailoverAllowDataLoss( @@ -1562,7 +1562,7 @@ public SyncPoller, FailoverGroupInner> beginForce * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a failover group on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono forceFailoverAllowDataLossAsync(String resourceGroupName, String serverName, @@ -1581,7 +1581,7 @@ public Mono forceFailoverAllowDataLossAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a failover group on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono forceFailoverAllowDataLossAsync(String resourceGroupName, String serverName, @@ -1599,7 +1599,7 @@ private Mono forceFailoverAllowDataLossAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a failover group. */ @ServiceMethod(returns = ReturnType.SINGLE) public FailoverGroupInner forceFailoverAllowDataLoss(String resourceGroupName, String serverName, @@ -1617,7 +1617,7 @@ public FailoverGroupInner forceFailoverAllowDataLoss(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a failover group. */ @ServiceMethod(returns = ReturnType.SINGLE) public FailoverGroupInner forceFailoverAllowDataLoss(String resourceGroupName, String serverName, @@ -1635,7 +1635,7 @@ public FailoverGroupInner forceFailoverAllowDataLoss(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a failover group along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> tryPlannedBeforeForcedFailoverWithResponseAsync(String resourceGroupName, @@ -1678,7 +1678,7 @@ public Mono>> tryPlannedBeforeForcedFailoverWithRespon * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a failover group along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> tryPlannedBeforeForcedFailoverWithResponseAsync(String resourceGroupName, @@ -1718,7 +1718,7 @@ private Mono>> tryPlannedBeforeForcedFailoverWithRespo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, FailoverGroupInner> beginTryPlannedBeforeForcedFailoverAsync( @@ -1740,7 +1740,7 @@ public PollerFlux, FailoverGroupInner> beginTryPl * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, FailoverGroupInner> beginTryPlannedBeforeForcedFailoverAsync( @@ -1762,7 +1762,7 @@ private PollerFlux, FailoverGroupInner> beginTryP * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, FailoverGroupInner> @@ -1782,7 +1782,7 @@ private PollerFlux, FailoverGroupInner> beginTryP * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a failover group. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, FailoverGroupInner> beginTryPlannedBeforeForcedFailover( @@ -1801,7 +1801,7 @@ public SyncPoller, FailoverGroupInner> beginTryPl * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a failover group on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono tryPlannedBeforeForcedFailoverAsync(String resourceGroupName, String serverName, @@ -1821,7 +1821,7 @@ public Mono tryPlannedBeforeForcedFailoverAsync(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a failover group on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono tryPlannedBeforeForcedFailoverAsync(String resourceGroupName, String serverName, @@ -1841,7 +1841,7 @@ private Mono tryPlannedBeforeForcedFailoverAsync(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a failover group. */ @ServiceMethod(returns = ReturnType.SINGLE) public FailoverGroupInner tryPlannedBeforeForcedFailover(String resourceGroupName, String serverName, @@ -1860,7 +1860,7 @@ public FailoverGroupInner tryPlannedBeforeForcedFailover(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a failover group. */ @ServiceMethod(returns = ReturnType.SINGLE) public FailoverGroupInner tryPlannedBeforeForcedFailover(String resourceGroupName, String serverName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/JobExecutionsClientImpl.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/JobExecutionsClientImpl.java index d90fca192560..7015ef41a062 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/JobExecutionsClientImpl.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/JobExecutionsClientImpl.java @@ -1229,7 +1229,7 @@ public PagedIterable listByAgent(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an execution of a job along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> createWithResponseAsync(String resourceGroupName, String serverName, @@ -1273,7 +1273,7 @@ public Mono>> createWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an execution of a job along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> createWithResponseAsync(String resourceGroupName, String serverName, @@ -1315,7 +1315,7 @@ private Mono>> createWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an execution of a job. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, JobExecutionInner> beginCreateAsync(String resourceGroupName, @@ -1337,7 +1337,7 @@ public PollerFlux, JobExecutionInner> beginCreateA * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an execution of a job. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, JobExecutionInner> beginCreateAsync(String resourceGroupName, @@ -1359,7 +1359,7 @@ private PollerFlux, JobExecutionInner> beginCreate * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an execution of a job. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, JobExecutionInner> beginCreate(String resourceGroupName, @@ -1378,7 +1378,7 @@ public SyncPoller, JobExecutionInner> beginCreate( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an execution of a job. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, JobExecutionInner> beginCreate(String resourceGroupName, @@ -1396,7 +1396,7 @@ public SyncPoller, JobExecutionInner> beginCreate( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an execution of a job on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono createAsync(String resourceGroupName, String serverName, String jobAgentName, @@ -1416,7 +1416,7 @@ public Mono createAsync(String resourceGroupName, String serv * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an execution of a job on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono createAsync(String resourceGroupName, String serverName, String jobAgentName, @@ -1435,7 +1435,7 @@ private Mono createAsync(String resourceGroupName, String ser * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an execution of a job. */ @ServiceMethod(returns = ReturnType.SINGLE) public JobExecutionInner create(String resourceGroupName, String serverName, String jobAgentName, String jobName) { @@ -1453,7 +1453,7 @@ public JobExecutionInner create(String resourceGroupName, String serverName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an execution of a job. */ @ServiceMethod(returns = ReturnType.SINGLE) public JobExecutionInner create(String resourceGroupName, String serverName, String jobAgentName, String jobName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ManagedDatabasesClientImpl.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ManagedDatabasesClientImpl.java index 867b8099cd44..02b944679c85 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ManagedDatabasesClientImpl.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ManagedDatabasesClientImpl.java @@ -1983,7 +1983,7 @@ public void completeRestore(String resourceGroupName, String managedInstanceName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a managed database resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> reevaluateInaccessibleDatabaseStateWithResponseAsync( @@ -2025,7 +2025,7 @@ public Mono>> reevaluateInaccessibleDatabaseStateWithR * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a managed database resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> reevaluateInaccessibleDatabaseStateWithResponseAsync( @@ -2064,7 +2064,7 @@ private Mono>> reevaluateInaccessibleDatabaseStateWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a managed database resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, ManagedDatabaseInner> @@ -2086,7 +2086,7 @@ private Mono>> reevaluateInaccessibleDatabaseStateWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a managed database resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ManagedDatabaseInner> @@ -2108,7 +2108,7 @@ private Mono>> reevaluateInaccessibleDatabaseStateWith * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a managed database resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ManagedDatabaseInner> beginReevaluateInaccessibleDatabaseState( @@ -2127,7 +2127,7 @@ public SyncPoller, ManagedDatabaseInner> beginR * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a managed database resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ManagedDatabaseInner> beginReevaluateInaccessibleDatabaseState( @@ -2147,7 +2147,7 @@ public SyncPoller, ManagedDatabaseInner> beginR * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a managed database resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono reevaluateInaccessibleDatabaseStateAsync(String resourceGroupName, @@ -2167,7 +2167,7 @@ public Mono reevaluateInaccessibleDatabaseStateAsync(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a managed database resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono reevaluateInaccessibleDatabaseStateAsync(String resourceGroupName, @@ -2185,7 +2185,7 @@ private Mono reevaluateInaccessibleDatabaseStateAsync(Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a managed database resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public ManagedDatabaseInner reevaluateInaccessibleDatabaseState(String resourceGroupName, @@ -2203,7 +2203,7 @@ public ManagedDatabaseInner reevaluateInaccessibleDatabaseState(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a managed database resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public ManagedDatabaseInner reevaluateInaccessibleDatabaseState(String resourceGroupName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ManagedInstancesClientImpl.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ManagedInstancesClientImpl.java index 8c145234ed2c..a24f1ff97923 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ManagedInstancesClientImpl.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ManagedInstancesClientImpl.java @@ -1995,7 +1995,8 @@ public void reevaluateInaccessibleDatabaseState(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an RefreshExternalGovernanceStatus operation result resource along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> refreshStatusWithResponseAsync(String resourceGroupName, @@ -2032,7 +2033,8 @@ public Mono>> refreshStatusWithResponseAsync(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an RefreshExternalGovernanceStatus operation result resource along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> refreshStatusWithResponseAsync(String resourceGroupName, @@ -2067,7 +2069,7 @@ private Mono>> refreshStatusWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -2089,7 +2091,7 @@ private Mono>> refreshStatusWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private @@ -2112,7 +2114,7 @@ private Mono>> refreshStatusWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -2130,7 +2132,7 @@ private Mono>> refreshStatusWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -2147,7 +2149,7 @@ private Mono>> refreshStatusWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an RefreshExternalGovernanceStatus operation result resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono refreshStatusAsync(String resourceGroupName, @@ -2165,7 +2167,7 @@ public Mono refreshStatus * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an RefreshExternalGovernanceStatus operation result resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono refreshStatusAsync(String resourceGroupName, @@ -2182,7 +2184,7 @@ private Mono refreshStatu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public RefreshExternalGovernanceStatusOperationResultMIInner refreshStatus(String resourceGroupName, @@ -2199,7 +2201,7 @@ public RefreshExternalGovernanceStatusOperationResultMIInner refreshStatus(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public RefreshExternalGovernanceStatusOperationResultMIInner refreshStatus(String resourceGroupName, @@ -2215,7 +2217,7 @@ public RefreshExternalGovernanceStatusOperationResultMIInner refreshStatus(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an Azure SQL managed instance along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> startWithResponseAsync(String resourceGroupName, @@ -2252,7 +2254,7 @@ public Mono>> startWithResponseAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an Azure SQL managed instance along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> startWithResponseAsync(String resourceGroupName, @@ -2287,7 +2289,7 @@ private Mono>> startWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, ManagedInstanceInner> beginStartAsync(String resourceGroupName, @@ -2306,7 +2308,7 @@ public PollerFlux, ManagedInstanceInner> beginS * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ManagedInstanceInner> beginStartAsync(String resourceGroupName, @@ -2325,7 +2327,7 @@ private PollerFlux, ManagedInstanceInner> begin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ManagedInstanceInner> beginStart(String resourceGroupName, @@ -2342,7 +2344,7 @@ public SyncPoller, ManagedInstanceInner> beginS * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ManagedInstanceInner> beginStart(String resourceGroupName, @@ -2358,7 +2360,7 @@ public SyncPoller, ManagedInstanceInner> beginS * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an Azure SQL managed instance on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono startAsync(String resourceGroupName, String managedInstanceName) { @@ -2375,7 +2377,7 @@ public Mono startAsync(String resourceGroupName, String ma * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an Azure SQL managed instance on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono startAsync(String resourceGroupName, String managedInstanceName, @@ -2392,7 +2394,7 @@ private Mono startAsync(String resourceGroupName, String m * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.SINGLE) public ManagedInstanceInner start(String resourceGroupName, String managedInstanceName) { @@ -2408,7 +2410,7 @@ public ManagedInstanceInner start(String resourceGroupName, String managedInstan * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.SINGLE) public ManagedInstanceInner start(String resourceGroupName, String managedInstanceName, Context context) { @@ -2423,7 +2425,7 @@ public ManagedInstanceInner start(String resourceGroupName, String managedInstan * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an Azure SQL managed instance along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> stopWithResponseAsync(String resourceGroupName, @@ -2460,7 +2462,7 @@ public Mono>> stopWithResponseAsync(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an Azure SQL managed instance along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> stopWithResponseAsync(String resourceGroupName, String managedInstanceName, @@ -2495,7 +2497,7 @@ private Mono>> stopWithResponseAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, ManagedInstanceInner> beginStopAsync(String resourceGroupName, @@ -2514,7 +2516,7 @@ public PollerFlux, ManagedInstanceInner> beginS * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ManagedInstanceInner> beginStopAsync(String resourceGroupName, @@ -2533,7 +2535,7 @@ private PollerFlux, ManagedInstanceInner> begin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ManagedInstanceInner> beginStop(String resourceGroupName, @@ -2550,7 +2552,7 @@ public SyncPoller, ManagedInstanceInner> beginS * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ManagedInstanceInner> beginStop(String resourceGroupName, @@ -2566,7 +2568,7 @@ public SyncPoller, ManagedInstanceInner> beginS * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an Azure SQL managed instance on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono stopAsync(String resourceGroupName, String managedInstanceName) { @@ -2583,7 +2585,7 @@ public Mono stopAsync(String resourceGroupName, String man * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an Azure SQL managed instance on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono stopAsync(String resourceGroupName, String managedInstanceName, @@ -2600,7 +2602,7 @@ private Mono stopAsync(String resourceGroupName, String ma * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.SINGLE) public ManagedInstanceInner stop(String resourceGroupName, String managedInstanceName) { @@ -2616,7 +2618,7 @@ public ManagedInstanceInner stop(String resourceGroupName, String managedInstanc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an Azure SQL managed instance. */ @ServiceMethod(returns = ReturnType.SINGLE) public ManagedInstanceInner stop(String resourceGroupName, String managedInstanceName, Context context) { diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ManagedLedgerDigestUploadsOperationsClientImpl.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ManagedLedgerDigestUploadsOperationsClientImpl.java index 77f1411dea24..53d1490c8013 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ManagedLedgerDigestUploadsOperationsClientImpl.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ManagedLedgerDigestUploadsOperationsClientImpl.java @@ -747,7 +747,8 @@ public PagedIterable listByDatabase(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return azure SQL Database ledger digest upload settings along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> disableWithResponseAsync(String resourceGroupName, @@ -794,7 +795,8 @@ public Mono>> disableWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return azure SQL Database ledger digest upload settings along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> disableWithResponseAsync(String resourceGroupName, @@ -839,7 +841,7 @@ private Mono>> disableWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of azure SQL Database ledger digest upload settings. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, ManagedLedgerDigestUploadsInner> beginDisableAsync( @@ -863,7 +865,7 @@ public PollerFlux, ManagedLedgerDige * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of azure SQL Database ledger digest upload settings. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ManagedLedgerDigestUploadsInner> beginDisableAsync( @@ -887,7 +889,7 @@ private PollerFlux, ManagedLedgerDig * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of azure SQL Database ledger digest upload settings. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ManagedLedgerDigestUploadsInner> beginDisable( @@ -908,7 +910,7 @@ public SyncPoller, ManagedLedgerDige * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of azure SQL Database ledger digest upload settings. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ManagedLedgerDigestUploadsInner> beginDisable( @@ -929,7 +931,7 @@ public SyncPoller, ManagedLedgerDige * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return azure SQL Database ledger digest upload settings on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono disableAsync(String resourceGroupName, String managedInstanceName, @@ -949,7 +951,7 @@ public Mono disableAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return azure SQL Database ledger digest upload settings on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono disableAsync(String resourceGroupName, String managedInstanceName, @@ -969,7 +971,7 @@ private Mono disableAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return azure SQL Database ledger digest upload settings. */ @ServiceMethod(returns = ReturnType.SINGLE) public ManagedLedgerDigestUploadsInner disable(String resourceGroupName, String managedInstanceName, @@ -988,7 +990,7 @@ public ManagedLedgerDigestUploadsInner disable(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return azure SQL Database ledger digest upload settings. */ @ServiceMethod(returns = ReturnType.SINGLE) public ManagedLedgerDigestUploadsInner disable(String resourceGroupName, String managedInstanceName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/NetworkSecurityPerimeterConfigurationsClientImpl.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/NetworkSecurityPerimeterConfigurationsClientImpl.java index 32a6cfcecff5..6679d0c4046b 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/NetworkSecurityPerimeterConfigurationsClientImpl.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/NetworkSecurityPerimeterConfigurationsClientImpl.java @@ -395,7 +395,7 @@ public PagedIterable listByServer(St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return nSP Configuration for a server along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> reconcileWithResponseAsync(String resourceGroupName, String serverName, @@ -435,7 +435,7 @@ public Mono>> reconcileWithResponseAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return nSP Configuration for a server along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> reconcileWithResponseAsync(String resourceGroupName, String serverName, @@ -473,7 +473,7 @@ private Mono>> reconcileWithResponseAsync(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of nSP Configuration for a server. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -497,7 +497,7 @@ private Mono>> reconcileWithResponseAsync(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of nSP Configuration for a server. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private @@ -521,7 +521,7 @@ private Mono>> reconcileWithResponseAsync(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of nSP Configuration for a server. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -540,7 +540,7 @@ private Mono>> reconcileWithResponseAsync(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of nSP Configuration for a server. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -558,7 +558,7 @@ private Mono>> reconcileWithResponseAsync(String resou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return nSP Configuration for a server on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono reconcileAsync(String resourceGroupName, String serverName, @@ -577,7 +577,7 @@ public Mono reconcileAsync(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return nSP Configuration for a server on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono reconcileAsync(String resourceGroupName, String serverName, @@ -595,7 +595,7 @@ private Mono reconcileAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return nSP Configuration for a server. */ @ServiceMethod(returns = ReturnType.SINGLE) public NetworkSecurityPerimeterConfigurationInner reconcile(String resourceGroupName, String serverName, @@ -613,7 +613,7 @@ public NetworkSecurityPerimeterConfigurationInner reconcile(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return nSP Configuration for a server. */ @ServiceMethod(returns = ReturnType.SINGLE) public NetworkSecurityPerimeterConfigurationInner reconcile(String resourceGroupName, String serverName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ServersClientImpl.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ServersClientImpl.java index 0617ea2ef3f0..e4bb7c3c507d 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ServersClientImpl.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/ServersClientImpl.java @@ -1246,7 +1246,8 @@ public PagedIterable list(String expand, Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an ImportExport operation result resource along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> importDatabaseWithResponseAsync(String resourceGroupName, String serverName, @@ -1290,7 +1291,8 @@ public Mono>> importDatabaseWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an ImportExport operation result resource along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> importDatabaseWithResponseAsync(String resourceGroupName, @@ -1331,7 +1333,7 @@ private Mono>> importDatabaseWithResponseAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an ImportExport operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, ImportExportOperationResultInner> @@ -1353,7 +1355,7 @@ private Mono>> importDatabaseWithResponseAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an ImportExport operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ImportExportOperationResultInner> @@ -1376,7 +1378,7 @@ private Mono>> importDatabaseWithResponseAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an ImportExport operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ImportExportOperationResultInner> @@ -1394,7 +1396,7 @@ private Mono>> importDatabaseWithResponseAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an ImportExport operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ImportExportOperationResultInner> @@ -1412,7 +1414,7 @@ private Mono>> importDatabaseWithResponseAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an ImportExport operation result resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono importDatabaseAsync(String resourceGroupName, String serverName, @@ -1431,7 +1433,7 @@ public Mono importDatabaseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an ImportExport operation result resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono importDatabaseAsync(String resourceGroupName, String serverName, @@ -1449,7 +1451,7 @@ private Mono importDatabaseAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an ImportExport operation result resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public ImportExportOperationResultInner importDatabase(String resourceGroupName, String serverName, @@ -1467,7 +1469,7 @@ public ImportExportOperationResultInner importDatabase(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an ImportExport operation result resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public ImportExportOperationResultInner importDatabase(String resourceGroupName, String serverName, @@ -1483,7 +1485,8 @@ public ImportExportOperationResultInner importDatabase(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an RefreshExternalGovernanceStatus operation result resource along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> refreshStatusWithResponseAsync(String resourceGroupName, @@ -1519,7 +1522,8 @@ public Mono>> refreshStatusWithResponseAsync(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return an RefreshExternalGovernanceStatus operation result resource along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> refreshStatusWithResponseAsync(String resourceGroupName, String serverName, @@ -1553,7 +1557,7 @@ private Mono>> refreshStatusWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -1575,7 +1579,7 @@ private Mono>> refreshStatusWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private @@ -1597,7 +1601,7 @@ private Mono>> refreshStatusWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -1615,7 +1619,7 @@ private Mono>> refreshStatusWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -1632,7 +1636,7 @@ private Mono>> refreshStatusWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an RefreshExternalGovernanceStatus operation result resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono refreshStatusAsync(String resourceGroupName, @@ -1650,7 +1654,7 @@ public Mono refreshStatusAs * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return an RefreshExternalGovernanceStatus operation result resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono refreshStatusAsync(String resourceGroupName, @@ -1667,7 +1671,7 @@ private Mono refreshStatusA * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public RefreshExternalGovernanceStatusOperationResultInner refreshStatus(String resourceGroupName, @@ -1684,7 +1688,7 @@ public RefreshExternalGovernanceStatusOperationResultInner refreshStatus(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return an RefreshExternalGovernanceStatus operation result resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public RefreshExternalGovernanceStatusOperationResultInner refreshStatus(String resourceGroupName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/TransparentDataEncryptionsClientImpl.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/TransparentDataEncryptionsClientImpl.java index 210ba7dc0a2f..b53d9e4a1505 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/TransparentDataEncryptionsClientImpl.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/TransparentDataEncryptionsClientImpl.java @@ -739,7 +739,8 @@ public PagedIterable listByDataba * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a logical database transparent data encryption scan state along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> resumeWithResponseAsync(String resourceGroupName, String serverName, @@ -783,7 +784,8 @@ public Mono>> resumeWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a logical database transparent data encryption scan state along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> resumeWithResponseAsync(String resourceGroupName, String serverName, @@ -825,7 +827,7 @@ private Mono>> resumeWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -851,7 +853,7 @@ private Mono>> resumeWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private @@ -877,7 +879,7 @@ private Mono>> resumeWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -898,7 +900,7 @@ private Mono>> resumeWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -918,7 +920,7 @@ private Mono>> resumeWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a logical database transparent data encryption scan state on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono resumeAsync(String resourceGroupName, String serverName, @@ -938,7 +940,7 @@ public Mono resumeAsync(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a logical database transparent data encryption scan state on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono resumeAsync(String resourceGroupName, String serverName, @@ -957,7 +959,7 @@ private Mono resumeAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.SINGLE) public LogicalDatabaseTransparentDataEncryptionInner resume(String resourceGroupName, String serverName, @@ -976,7 +978,7 @@ public LogicalDatabaseTransparentDataEncryptionInner resume(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.SINGLE) public LogicalDatabaseTransparentDataEncryptionInner resume(String resourceGroupName, String serverName, @@ -994,7 +996,8 @@ public LogicalDatabaseTransparentDataEncryptionInner resume(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a logical database transparent data encryption scan state along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> suspendWithResponseAsync(String resourceGroupName, String serverName, @@ -1038,7 +1041,8 @@ public Mono>> suspendWithResponseAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a logical database transparent data encryption scan state along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> suspendWithResponseAsync(String resourceGroupName, String serverName, @@ -1080,7 +1084,7 @@ private Mono>> suspendWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -1106,7 +1110,7 @@ private Mono>> suspendWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private @@ -1132,7 +1136,7 @@ private Mono>> suspendWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -1153,7 +1157,7 @@ private Mono>> suspendWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -1173,7 +1177,7 @@ private Mono>> suspendWithResponseAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a logical database transparent data encryption scan state on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono suspendAsync(String resourceGroupName, String serverName, @@ -1193,7 +1197,7 @@ public Mono suspendAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a logical database transparent data encryption scan state on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono suspendAsync(String resourceGroupName, @@ -1212,7 +1216,7 @@ private Mono suspendAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.SINGLE) public LogicalDatabaseTransparentDataEncryptionInner suspend(String resourceGroupName, String serverName, @@ -1231,7 +1235,7 @@ public LogicalDatabaseTransparentDataEncryptionInner suspend(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a logical database transparent data encryption scan state. */ @ServiceMethod(returns = ReturnType.SINGLE) public LogicalDatabaseTransparentDataEncryptionInner suspend(String resourceGroupName, String serverName, diff --git a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/VirtualClustersClientImpl.java b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/VirtualClustersClientImpl.java index 0af81d3b7b05..8908ddcfcc36 100644 --- a/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/VirtualClustersClientImpl.java +++ b/sdk/sql/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/implementation/VirtualClustersClientImpl.java @@ -1201,7 +1201,7 @@ public PagedIterable list(Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a refresh DNS servers operation along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> updateDnsServersWithResponseAsync(String resourceGroupName, @@ -1238,7 +1238,7 @@ public Mono>> updateDnsServersWithResponseAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return a refresh DNS servers operation along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> updateDnsServersWithResponseAsync(String resourceGroupName, @@ -1273,7 +1273,7 @@ private Mono>> updateDnsServersWithResponseAsync(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a refresh DNS servers operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -1296,7 +1296,7 @@ private Mono>> updateDnsServersWithResponseAsync(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of a refresh DNS servers operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private @@ -1319,7 +1319,7 @@ private Mono>> updateDnsServersWithResponseAsync(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a refresh DNS servers operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -1337,7 +1337,7 @@ private Mono>> updateDnsServersWithResponseAsync(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of a refresh DNS servers operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public @@ -1354,7 +1354,7 @@ private Mono>> updateDnsServersWithResponseAsync(Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a refresh DNS servers operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono updateDnsServersAsync(String resourceGroupName, @@ -1372,7 +1372,7 @@ public Mono updateDnsServersAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return a refresh DNS servers operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono updateDnsServersAsync(String resourceGroupName, @@ -1389,7 +1389,7 @@ private Mono updateDnsServersAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a refresh DNS servers operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public UpdateVirtualClusterDnsServersOperationInner updateDnsServers(String resourceGroupName, @@ -1406,7 +1406,7 @@ public UpdateVirtualClusterDnsServersOperationInner updateDnsServers(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return a refresh DNS servers operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public UpdateVirtualClusterDnsServersOperationInner updateDnsServers(String resourceGroupName, diff --git a/sdk/storage/azure-resourcemanager-storage/src/main/java/com/azure/resourcemanager/storage/fluent/ConnectorsClient.java b/sdk/storage/azure-resourcemanager-storage/src/main/java/com/azure/resourcemanager/storage/fluent/ConnectorsClient.java index cc0e53f222cf..fc12877b0b98 100644 --- a/sdk/storage/azure-resourcemanager-storage/src/main/java/com/azure/resourcemanager/storage/fluent/ConnectorsClient.java +++ b/sdk/storage/azure-resourcemanager-storage/src/main/java/com/azure/resourcemanager/storage/fluent/ConnectorsClient.java @@ -522,7 +522,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return test connection response properties along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> testExistingConnectionWithResponseAsync(String resourceGroupName, @@ -547,7 +547,7 @@ Mono>> testExistingConnectionWithResponseAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of test connection response properties. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, TestConnectionResponseInner> beginTestExistingConnectionAsync( @@ -572,7 +572,7 @@ PollerFlux, TestConnectionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of test connection response properties. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, TestConnectionResponseInner> beginTestExistingConnection( @@ -598,7 +598,7 @@ SyncPoller, TestConnectionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of test connection response properties. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, TestConnectionResponseInner> beginTestExistingConnection( @@ -624,7 +624,7 @@ SyncPoller, TestConnectionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return test connection response properties on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono testExistingConnectionAsync(String resourceGroupName, String accountName, @@ -649,7 +649,7 @@ Mono testExistingConnectionAsync(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return test connection response properties. */ @ServiceMethod(returns = ReturnType.SINGLE) TestConnectionResponseInner testExistingConnection(String resourceGroupName, String accountName, @@ -675,7 +675,7 @@ TestConnectionResponseInner testExistingConnection(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return test connection response properties. */ @ServiceMethod(returns = ReturnType.SINGLE) TestConnectionResponseInner testExistingConnection(String resourceGroupName, String accountName, diff --git a/sdk/storage/azure-resourcemanager-storage/src/main/java/com/azure/resourcemanager/storage/implementation/ConnectorsClientImpl.java b/sdk/storage/azure-resourcemanager-storage/src/main/java/com/azure/resourcemanager/storage/implementation/ConnectorsClientImpl.java index 890d1c5f149c..91e3ab21fb7c 100644 --- a/sdk/storage/azure-resourcemanager-storage/src/main/java/com/azure/resourcemanager/storage/implementation/ConnectorsClientImpl.java +++ b/sdk/storage/azure-resourcemanager-storage/src/main/java/com/azure/resourcemanager/storage/implementation/ConnectorsClientImpl.java @@ -1228,7 +1228,7 @@ public PagedIterable listByStorageAccount(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return test connection response properties along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> testExistingConnectionWithResponseAsync(String resourceGroupName, @@ -1285,7 +1285,7 @@ public Mono>> testExistingConnectionWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return test connection response properties along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> testExistingConnectionWithResponseAsync(String resourceGroupName, @@ -1340,7 +1340,7 @@ private Mono>> testExistingConnectionWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of test connection response properties. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, TestConnectionResponseInner> @@ -1373,7 +1373,7 @@ private Mono>> testExistingConnectionWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of test connection response properties. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, TestConnectionResponseInner> @@ -1406,7 +1406,7 @@ private Mono>> testExistingConnectionWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of test connection response properties. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, TestConnectionResponseInner> beginTestExistingConnection( @@ -1435,7 +1435,7 @@ public SyncPoller, TestConnectionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of test connection response properties. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, TestConnectionResponseInner> beginTestExistingConnection( @@ -1464,7 +1464,7 @@ public SyncPoller, TestConnectionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return test connection response properties on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono testExistingConnectionAsync(String resourceGroupName, String accountName, @@ -1493,7 +1493,7 @@ public Mono testExistingConnectionAsync(String reso * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return test connection response properties on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono testExistingConnectionAsync(String resourceGroupName, String accountName, @@ -1521,7 +1521,7 @@ private Mono testExistingConnectionAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return test connection response properties. */ @ServiceMethod(returns = ReturnType.SINGLE) public TestConnectionResponseInner testExistingConnection(String resourceGroupName, String accountName, @@ -1549,7 +1549,7 @@ public TestConnectionResponseInner testExistingConnection(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return test connection response properties. */ @ServiceMethod(returns = ReturnType.SINGLE) public TestConnectionResponseInner testExistingConnection(String resourceGroupName, String accountName, diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/CHANGELOG.md b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/CHANGELOG.md index 2b4b34110ca6..d6454299182f 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/CHANGELOG.md +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/CHANGELOG.md @@ -1,9 +1,13 @@ # Release History -## 2.54.0-beta.1 (Unreleased) +## 2.54.0-beta.1 (2026-05-08) ### Other Changes +#### Dependency Updates + +- Updated `api-version` to `2024-04-01-preview`. + ## 2.53.8 (2026-05-05) ### Other Changes diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/pom.xml b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/pom.xml index 952bffb6b1c5..13a8fab6dea1 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/pom.xml +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/pom.xml @@ -45,6 +45,7 @@ --add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED + true diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/ProfileInner.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/ProfileInner.java index 87cc062da9cd..6710daac74c9 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/ProfileInner.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/ProfileInner.java @@ -13,6 +13,7 @@ import com.azure.resourcemanager.trafficmanager.models.DnsConfig; import com.azure.resourcemanager.trafficmanager.models.MonitorConfig; import com.azure.resourcemanager.trafficmanager.models.ProfileStatus; +import com.azure.resourcemanager.trafficmanager.models.RecordType; import com.azure.resourcemanager.trafficmanager.models.TrafficRoutingMethod; import com.azure.resourcemanager.trafficmanager.models.TrafficViewEnrollmentStatus; import java.io.IOException; @@ -329,6 +330,31 @@ public ProfileInner withMaxReturn(Long maxReturn) { return this; } + /** + * Get the recordType property: When record type is set, a traffic manager profile will allow only endpoints that + * match this type. + * + * @return the recordType value. + */ + public RecordType recordType() { + return this.innerProperties() == null ? null : this.innerProperties().recordType(); + } + + /** + * Set the recordType property: When record type is set, a traffic manager profile will allow only endpoints that + * match this type. + * + * @param recordType the recordType value to set. + * @return the ProfileInner object itself. + */ + public ProfileInner withRecordType(RecordType recordType) { + if (this.innerProperties() == null) { + this.innerProperties = new ProfileProperties(); + } + this.innerProperties().withRecordType(recordType); + return this; + } + /** * Validates the instance. * diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/ProfileProperties.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/ProfileProperties.java index f52a2ce7d717..403d4bb53e68 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/ProfileProperties.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/ProfileProperties.java @@ -13,6 +13,7 @@ import com.azure.resourcemanager.trafficmanager.models.DnsConfig; import com.azure.resourcemanager.trafficmanager.models.MonitorConfig; import com.azure.resourcemanager.trafficmanager.models.ProfileStatus; +import com.azure.resourcemanager.trafficmanager.models.RecordType; import com.azure.resourcemanager.trafficmanager.models.TrafficRoutingMethod; import com.azure.resourcemanager.trafficmanager.models.TrafficViewEnrollmentStatus; import java.io.IOException; @@ -64,6 +65,11 @@ public final class ProfileProperties implements JsonSerializable writer.writeString(element == null ? null : element.toString())); jsonWriter.writeNumberField("maxReturn", this.maxReturn); + jsonWriter.writeStringField("recordType", this.recordType == null ? null : this.recordType.toString()); return jsonWriter.writeEndObject(); } @@ -308,6 +337,8 @@ public static ProfileProperties fromJson(JsonReader jsonReader) throws IOExcepti deserializedProfileProperties.allowedEndpointRecordTypes = allowedEndpointRecordTypes; } else if ("maxReturn".equals(fieldName)) { deserializedProfileProperties.maxReturn = reader.getNullable(JsonReader::getLong); + } else if ("recordType".equals(fieldName)) { + deserializedProfileProperties.recordType = RecordType.fromString(reader.getString()); } else { reader.skipChildren(); } diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/implementation/TrafficManagerManagementClientImpl.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/implementation/TrafficManagerManagementClientImpl.java index 69e6f4b6090e..2b8d27c35658 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/implementation/TrafficManagerManagementClientImpl.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/implementation/TrafficManagerManagementClientImpl.java @@ -195,7 +195,7 @@ public TrafficManagerUserMetricsKeysClient getTrafficManagerUserMetricsKeys() { this.defaultPollInterval = defaultPollInterval; this.endpoint = endpoint; this.subscriptionId = subscriptionId; - this.apiVersion = "2022-04-01"; + this.apiVersion = "2024-04-01-preview"; this.endpoints = new EndpointsClientImpl(this); this.profiles = new ProfilesClientImpl(this); this.geographicHierarchies = new GeographicHierarchiesClientImpl(this); diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/models/RecordType.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/models/RecordType.java new file mode 100644 index 000000000000..820b1ffd1310 --- /dev/null +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/java/com/azure/resourcemanager/trafficmanager/models/RecordType.java @@ -0,0 +1,56 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) TypeSpec Code Generator. + +package com.azure.resourcemanager.trafficmanager.models; + +import com.azure.core.util.ExpandableStringEnum; +import java.util.Collection; + +/** + * When record type is set, a traffic manager profile will allow only endpoints that match this type. + */ +public final class RecordType extends ExpandableStringEnum { + /** + * A record type. + */ + public static final RecordType A = fromString("A"); + + /** + * AAAA record type. + */ + public static final RecordType AAAA = fromString("AAAA"); + + /** + * CNAME record type. + */ + public static final RecordType CNAME = fromString("CNAME"); + + /** + * Creates a new instance of RecordType value. + * + * @deprecated Use the {@link #fromString(String)} factory method. + */ + @Deprecated + public RecordType() { + } + + /** + * Creates or finds a RecordType from its string representation. + * + * @param name a name to look for. + * @return the corresponding RecordType. + */ + public static RecordType fromString(String name) { + return fromString(name, RecordType.class); + } + + /** + * Gets known RecordType values. + * + * @return known RecordType values. + */ + public static Collection values() { + return values(RecordType.class); + } +} diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/resources/META-INF/azure-resourcemanager-trafficmanager_metadata.json b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/resources/META-INF/azure-resourcemanager-trafficmanager_metadata.json index a54c226ed96c..8ad8b186c911 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/resources/META-INF/azure-resourcemanager-trafficmanager_metadata.json +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/main/resources/META-INF/azure-resourcemanager-trafficmanager_metadata.json @@ -1 +1 @@ -{"flavor":"azure","apiVersions":{"Microsoft.Network":"2022-04-01"},"generatedFiles":["src/main/java/com/azure/resourcemanager/trafficmanager/fluent/EndpointsClient.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/GeographicHierarchiesClient.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/HeatMapsClient.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/ProfilesClient.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/TrafficManagerManagementClient.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/TrafficManagerUserMetricsKeysClient.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/DeleteOperationResultInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/EndpointInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/EndpointProperties.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/GeographicHierarchyProperties.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/HeatMapModelInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/HeatMapProperties.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/ProfileInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/ProfileProperties.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/TrafficManagerGeographicHierarchyInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/TrafficManagerNameAvailabilityInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/UserMetricsModelInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/UserMetricsProperties.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/package-info.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/package-info.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/EndpointsClientImpl.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/GeographicHierarchiesClientImpl.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/HeatMapsClientImpl.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/ProfilesClientImpl.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/TrafficManagerManagementClientBuilder.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/TrafficManagerManagementClientImpl.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/TrafficManagerUserMetricsKeysClientImpl.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/models/ProfileListResult.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/AllowedEndpointRecordType.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/AlwaysServe.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/DnsConfig.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/EndpointMonitorStatus.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/EndpointPropertiesCustomHeadersItem.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/EndpointPropertiesSubnetsItem.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/EndpointStatus.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/EndpointTypes.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/HeatMapEndpoint.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/MonitorConfig.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/MonitorConfigCustomHeadersItem.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/MonitorConfigExpectedStatusCodeRangesItem.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/MonitorProtocol.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/ProfileMonitorStatus.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/ProfileStatus.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/QueryExperience.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/Region.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/TrafficFlow.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/TrafficRoutingMethod.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/TrafficViewEnrollmentStatus.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/package-info.java","src/main/java/com/azure/resourcemanager/trafficmanager/package-info.java"]} \ No newline at end of file +{"flavor":"azure","apiVersions":{"Microsoft.Network":"2024-04-01-preview"},"generatedFiles":["src/main/java/com/azure/resourcemanager/trafficmanager/fluent/EndpointsClient.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/GeographicHierarchiesClient.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/HeatMapsClient.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/ProfilesClient.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/TrafficManagerManagementClient.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/TrafficManagerUserMetricsKeysClient.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/DeleteOperationResultInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/EndpointInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/EndpointProperties.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/GeographicHierarchyProperties.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/HeatMapModelInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/HeatMapProperties.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/ProfileInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/ProfileProperties.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/TrafficManagerGeographicHierarchyInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/TrafficManagerNameAvailabilityInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/UserMetricsModelInner.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/UserMetricsProperties.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/models/package-info.java","src/main/java/com/azure/resourcemanager/trafficmanager/fluent/package-info.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/EndpointsClientImpl.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/GeographicHierarchiesClientImpl.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/HeatMapsClientImpl.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/ProfilesClientImpl.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/TrafficManagerManagementClientBuilder.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/TrafficManagerManagementClientImpl.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/TrafficManagerUserMetricsKeysClientImpl.java","src/main/java/com/azure/resourcemanager/trafficmanager/implementation/models/ProfileListResult.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/AllowedEndpointRecordType.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/AlwaysServe.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/DnsConfig.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/EndpointMonitorStatus.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/EndpointPropertiesCustomHeadersItem.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/EndpointPropertiesSubnetsItem.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/EndpointStatus.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/EndpointTypes.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/HeatMapEndpoint.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/MonitorConfig.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/MonitorConfigCustomHeadersItem.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/MonitorConfigExpectedStatusCodeRangesItem.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/MonitorProtocol.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/ProfileMonitorStatus.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/ProfileStatus.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/QueryExperience.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/RecordType.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/Region.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/TrafficFlow.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/TrafficRoutingMethod.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/TrafficViewEnrollmentStatus.java","src/main/java/com/azure/resourcemanager/trafficmanager/models/package-info.java","src/main/java/com/azure/resourcemanager/trafficmanager/package-info.java"]} \ No newline at end of file diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsCreateOrUpdateSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsCreateOrUpdateSamples.java index b6756fec9197..e477dba7a5ad 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsCreateOrUpdateSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsCreateOrUpdateSamples.java @@ -17,7 +17,7 @@ */ public final class EndpointsCreateOrUpdateSamples { /* - * x-ms-original-file: 2022-04-01/Endpoint-PUT-External-WithAlwaysServe.json + * x-ms-original-file: 2024-04-01-preview/Endpoint-PUT-External-WithAlwaysServe.json */ /** * Sample code: Endpoint-PUT-External-WithAlwaysServe. @@ -40,7 +40,7 @@ public final class EndpointsCreateOrUpdateSamples { } /* - * x-ms-original-file: 2022-04-01/Endpoint-PUT-External-WithSubnetMapping.json + * x-ms-original-file: 2024-04-01-preview/Endpoint-PUT-External-WithSubnetMapping.json */ /** * Sample code: Endpoint-PUT-External-WithSubnetMapping. @@ -64,7 +64,7 @@ public final class EndpointsCreateOrUpdateSamples { } /* - * x-ms-original-file: 2022-04-01/Endpoint-PUT-External-WithCustomHeaders.json + * x-ms-original-file: 2024-04-01-preview/Endpoint-PUT-External-WithCustomHeaders.json */ /** * Sample code: Endpoint-PUT-External-WithCustomHeaders. @@ -89,7 +89,7 @@ public final class EndpointsCreateOrUpdateSamples { } /* - * x-ms-original-file: 2022-04-01/Endpoint-PUT-External-WithLocation.json + * x-ms-original-file: 2024-04-01-preview/Endpoint-PUT-External-WithLocation.json */ /** * Sample code: Endpoint-PUT-External-WithLocation. @@ -111,7 +111,7 @@ public final class EndpointsCreateOrUpdateSamples { } /* - * x-ms-original-file: 2022-04-01/Endpoint-PUT-External-WithGeoMapping.json + * x-ms-original-file: 2024-04-01-preview/Endpoint-PUT-External-WithGeoMapping.json */ /** * Sample code: Endpoint-PUT-External-WithGeoMapping. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsDeleteSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsDeleteSamples.java index a1a3dc78ccf6..22b3594282f9 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsDeleteSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsDeleteSamples.java @@ -11,7 +11,7 @@ */ public final class EndpointsDeleteSamples { /* - * x-ms-original-file: 2022-04-01/Endpoint-DELETE-External.json + * x-ms-original-file: 2024-04-01-preview/Endpoint-DELETE-External.json */ /** * Sample code: Endpoint-DELETE-External. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsGetSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsGetSamples.java index a8da5d00be7a..8479d3b4bc6f 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsGetSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsGetSamples.java @@ -11,7 +11,7 @@ */ public final class EndpointsGetSamples { /* - * x-ms-original-file: 2022-04-01/Endpoint-GET-External-WithGeoMapping.json + * x-ms-original-file: 2024-04-01-preview/Endpoint-GET-External-WithGeoMapping.json */ /** * Sample code: Endpoint-GET-External-WithGeoMapping. @@ -27,7 +27,7 @@ public final class EndpointsGetSamples { } /* - * x-ms-original-file: 2022-04-01/Endpoint-GET-External-WithSubnetMapping.json + * x-ms-original-file: 2024-04-01-preview/Endpoint-GET-External-WithSubnetMapping.json */ /** * Sample code: Endpoint-GET-External-WithSubnetMapping. @@ -43,7 +43,7 @@ public final class EndpointsGetSamples { } /* - * x-ms-original-file: 2022-04-01/Endpoint-GET-External-WithLocation.json + * x-ms-original-file: 2024-04-01-preview/Endpoint-GET-External-WithLocation.json */ /** * Sample code: Endpoint-GET-External-WithLocation. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsUpdateSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsUpdateSamples.java index 28c5649665e7..d48c08955924 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsUpdateSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/EndpointsUpdateSamples.java @@ -12,7 +12,7 @@ */ public final class EndpointsUpdateSamples { /* - * x-ms-original-file: 2022-04-01/Endpoint-PATCH-External-Target.json + * x-ms-original-file: 2024-04-01-preview/Endpoint-PATCH-External-Target.json */ /** * Sample code: Endpoint-PATCH-External-Target. @@ -24,11 +24,6 @@ public static void endpointPATCHExternalTarget(com.azure.resourcemanager.traffic .getEndpoints() .updateWithResponse("azuresdkfornetautoresttrafficmanager1421", "azsmnet6386", EndpointTypes.EXTERNAL_ENDPOINTS, "azsmnet7187", - new EndpointInner().withId( - "/subscriptions/{subscription-id}/resourceGroups/azuresdkfornetautoresttrafficmanager1421/providers/Microsoft.Network/trafficManagerProfiles/azsmnet6386/externalEndpoints/azsmnet7187") - .withName("azsmnet7187") - .withType("Microsoft.Network/trafficManagerProfiles/externalEndpoints") - .withTarget("another.foobar.contoso.com"), - com.azure.core.util.Context.NONE); + new EndpointInner().withTarget("another.foobar.contoso.com"), com.azure.core.util.Context.NONE); } } diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/GeographicHierarchiesGetDefaultSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/GeographicHierarchiesGetDefaultSamples.java index 348d10e91593..1fd4e11ca46d 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/GeographicHierarchiesGetDefaultSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/GeographicHierarchiesGetDefaultSamples.java @@ -9,7 +9,7 @@ */ public final class GeographicHierarchiesGetDefaultSamples { /* - * x-ms-original-file: 2022-04-01/GeographicHierarchy-GET-default.json + * x-ms-original-file: 2024-04-01-preview/GeographicHierarchy-GET-default.json */ /** * Sample code: GeographicHierarchy-GET-default. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/HeatMapGetSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/HeatMapGetSamples.java index c21a8340c023..01dc11537a31 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/HeatMapGetSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/HeatMapGetSamples.java @@ -11,7 +11,7 @@ */ public final class HeatMapGetSamples { /* - * x-ms-original-file: 2022-04-01/HeatMap-GET-With-TopLeft-BotRight.json + * x-ms-original-file: 2024-04-01-preview/HeatMap-GET-With-TopLeft-BotRight.json */ /** * Sample code: HeatMap-GET-With-TopLeft-BotRight. @@ -26,7 +26,7 @@ public static void heatMapGETWithTopLeftBotRight(com.azure.resourcemanager.traff } /* - * x-ms-original-file: 2022-04-01/HeatMap-GET.json + * x-ms-original-file: 2024-04-01-preview/HeatMap-GET.json */ /** * Sample code: HeatMap-GET. @@ -41,7 +41,7 @@ public static void heatMapGET(com.azure.resourcemanager.trafficmanager.TrafficMa } /* - * x-ms-original-file: 2022-04-01/HeatMap-GET-With-Null-Values.json + * x-ms-original-file: 2024-04-01-preview/HeatMap-GET-With-Null-Values.json */ /** * Sample code: HeatMap-GET-With-Null-Values. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesCheckTrafficManagerNameAvailabilityV2Samples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesCheckTrafficManagerNameAvailabilityV2Samples.java index 836b6d850126..288a29647efb 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesCheckTrafficManagerNameAvailabilityV2Samples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesCheckTrafficManagerNameAvailabilityV2Samples.java @@ -11,7 +11,7 @@ */ public final class ProfilesCheckTrafficManagerNameAvailabilityV2Samples { /* - * x-ms-original-file: 2022-04-01/NameAvailabilityV2Test_NameNotAvailable-POST-example-23.json + * x-ms-original-file: 2024-04-01-preview/NameAvailabilityV2Test_NameNotAvailable-POST-example-23.json */ /** * Sample code: NameAvailabilityV2Test_NameNotAvailablePOST23. @@ -29,7 +29,7 @@ public final class ProfilesCheckTrafficManagerNameAvailabilityV2Samples { } /* - * x-ms-original-file: 2022-04-01/NameAvailabilityV2Test_NameAvailable-POST-example-21.json + * x-ms-original-file: 2024-04-01-preview/NameAvailabilityV2Test_NameAvailable-POST-example-21.json */ /** * Sample code: NameAvailabilityV2Test_NameAvailablePOST21. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesCheckTrafficManagerRelativeDnsNameAvailabilitySamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesCheckTrafficManagerRelativeDnsNameAvailabilitySamples.java index fbc18e48d810..6c816eb42c7a 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesCheckTrafficManagerRelativeDnsNameAvailabilitySamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesCheckTrafficManagerRelativeDnsNameAvailabilitySamples.java @@ -11,7 +11,7 @@ */ public final class ProfilesCheckTrafficManagerRelativeDnsNameAvailabilitySamples { /* - * x-ms-original-file: 2022-04-01/NameAvailabilityTest_NameNotAvailable-POST-example-23.json + * x-ms-original-file: 2024-04-01-preview/NameAvailabilityTest_NameNotAvailable-POST-example-23.json */ /** * Sample code: NameAvailabilityTest_NameNotAvailablePOST23. @@ -29,7 +29,7 @@ public final class ProfilesCheckTrafficManagerRelativeDnsNameAvailabilitySamples } /* - * x-ms-original-file: 2022-04-01/NameAvailabilityTest_NameAvailable-POST-example-21.json + * x-ms-original-file: 2024-04-01-preview/NameAvailabilityTest_NameAvailable-POST-example-21.json */ /** * Sample code: NameAvailabilityTest_NameAvailablePOST21. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesCreateOrUpdateSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesCreateOrUpdateSamples.java index 0a2787abd806..349b1f339a3c 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesCreateOrUpdateSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesCreateOrUpdateSamples.java @@ -15,6 +15,7 @@ import com.azure.resourcemanager.trafficmanager.models.MonitorConfigExpectedStatusCodeRangesItem; import com.azure.resourcemanager.trafficmanager.models.MonitorProtocol; import com.azure.resourcemanager.trafficmanager.models.ProfileStatus; +import com.azure.resourcemanager.trafficmanager.models.RecordType; import com.azure.resourcemanager.trafficmanager.models.TrafficRoutingMethod; import com.azure.resourcemanager.trafficmanager.models.TrafficViewEnrollmentStatus; import java.util.Arrays; @@ -24,7 +25,7 @@ */ public final class ProfilesCreateOrUpdateSamples { /* - * x-ms-original-file: 2022-04-01/Profile-PUT-MultiValue.json + * x-ms-original-file: 2024-04-01-preview/Profile-PUT-MultiValue.json */ /** * Sample code: Profile-PUT-MultiValue. @@ -47,7 +48,41 @@ public static void profilePUTMultiValue(com.azure.resourcemanager.trafficmanager } /* - * x-ms-original-file: 2022-04-01/Profile-PUT-WithCustomHeaders.json + * x-ms-original-file: 2024-04-01-preview/Profile-PUT-WithEndpointsAndRecordType.json + */ + /** + * Sample code: Profile-PUT-WithEndpointsAndRecordType. + * + * @param manager Entry point to TrafficManager. + */ + public static void + profilePUTWithEndpointsAndRecordType(com.azure.resourcemanager.trafficmanager.TrafficManager manager) { + manager.serviceClient() + .getProfiles() + .createOrUpdateWithResponse("azuresdkfornetautoresttrafficmanager2583", + "azuresdkfornetautoresttrafficmanager6192", + new ProfileInner().withLocation("global") + .withProfileStatus(ProfileStatus.ENABLED) + .withTrafficRoutingMethod(TrafficRoutingMethod.PERFORMANCE) + .withDnsConfig( + new DnsConfig().withRelativeName("azuresdkfornetautoresttrafficmanager6192").withTtl(35L)) + .withMonitorConfig(new MonitorConfig().withProtocol(MonitorProtocol.HTTP) + .withPort(80L) + .withPath("/testpath.aspx") + .withIntervalInSeconds(10L) + .withTimeoutInSeconds(5L) + .withToleratedNumberOfFailures(2L)) + .withEndpoints(Arrays.asList(new EndpointInner().withName("My external endpoint") + .withType("Microsoft.network/TrafficManagerProfiles/ExternalEndpoints") + .withTarget("foobar.contoso.com") + .withEndpointStatus(EndpointStatus.ENABLED) + .withEndpointLocation("North Europe"))) + .withRecordType(RecordType.CNAME), + com.azure.core.util.Context.NONE); + } + + /* + * x-ms-original-file: 2024-04-01-preview/Profile-PUT-WithCustomHeaders.json */ /** * Sample code: Profile-PUT-WithCustomHeaders. @@ -88,7 +123,7 @@ public static void profilePUTWithCustomHeaders(com.azure.resourcemanager.traffic } /* - * x-ms-original-file: 2022-04-01/Profile-PUT-NoEndpoints.json + * x-ms-original-file: 2024-04-01-preview/Profile-PUT-NoEndpoints.json */ /** * Sample code: Profile-PUT-NoEndpoints. @@ -110,7 +145,7 @@ public static void profilePUTNoEndpoints(com.azure.resourcemanager.trafficmanage } /* - * x-ms-original-file: 2022-04-01/Profile-PUT-WithAliasing.json + * x-ms-original-file: 2024-04-01-preview/Profile-PUT-WithAliasing.json */ /** * Sample code: Profile-PUT-WithAliasing. @@ -143,7 +178,7 @@ public static void profilePUTWithAliasing(com.azure.resourcemanager.trafficmanag } /* - * x-ms-original-file: 2022-04-01/Profile-PUT-WithEndpoints.json + * x-ms-original-file: 2024-04-01-preview/Profile-PUT-WithEndpoints.json */ /** * Sample code: Profile-PUT-WithEndpoints. @@ -175,7 +210,7 @@ public static void profilePUTWithEndpoints(com.azure.resourcemanager.trafficmana } /* - * x-ms-original-file: 2022-04-01/Profile-PUT-WithNestedEndpoints.json + * x-ms-original-file: 2024-04-01-preview/Profile-PUT-WithNestedEndpoints.json */ /** * Sample code: Profile-PUT-WithNestedEndpoints. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesDeleteSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesDeleteSamples.java index 63d97de135b1..b514b5f762f7 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesDeleteSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesDeleteSamples.java @@ -9,7 +9,7 @@ */ public final class ProfilesDeleteSamples { /* - * x-ms-original-file: 2022-04-01/Profile-DELETE.json + * x-ms-original-file: 2024-04-01-preview/Profile-DELETE.json */ /** * Sample code: Profile-DELETE. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesGetByResourceGroupSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesGetByResourceGroupSamples.java index cc7952838ad3..912c9c5db2a7 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesGetByResourceGroupSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesGetByResourceGroupSamples.java @@ -9,7 +9,7 @@ */ public final class ProfilesGetByResourceGroupSamples { /* - * x-ms-original-file: 2022-04-01/Profile-GET-WithTrafficViewEnabled.json + * x-ms-original-file: 2024-04-01-preview/Profile-GET-WithTrafficViewEnabled.json */ /** * Sample code: Profile-GET-WithTrafficViewEnabled. @@ -25,7 +25,7 @@ public final class ProfilesGetByResourceGroupSamples { } /* - * x-ms-original-file: 2022-04-01/Profile-GET-WithTrafficViewDisabled.json + * x-ms-original-file: 2024-04-01-preview/Profile-GET-WithTrafficViewDisabled.json */ /** * Sample code: Profile-GET-WithTrafficViewDisabled. @@ -41,7 +41,7 @@ public final class ProfilesGetByResourceGroupSamples { } /* - * x-ms-original-file: 2022-04-01/Profile-GET-WithEndpoints.json + * x-ms-original-file: 2024-04-01-preview/Profile-GET-WithEndpoints.json */ /** * Sample code: Profile-GET-WithEndpoints. @@ -54,4 +54,20 @@ public static void profileGETWithEndpoints(com.azure.resourcemanager.trafficmana .getByResourceGroupWithResponse("azuresdkfornetautoresttrafficmanager1323", "azuresdkfornetautoresttrafficmanager3880", com.azure.core.util.Context.NONE); } + + /* + * x-ms-original-file: 2024-04-01-preview/Profile-GET-WithEndpointsAndRecordType.json + */ + /** + * Sample code: Profile-GET-WithEndpointsAndRecordType. + * + * @param manager Entry point to TrafficManager. + */ + public static void + profileGETWithEndpointsAndRecordType(com.azure.resourcemanager.trafficmanager.TrafficManager manager) { + manager.serviceClient() + .getProfiles() + .getByResourceGroupWithResponse("azuresdkfornetautoresttrafficmanager1323", + "azuresdkfornetautoresttrafficmanager3880", com.azure.core.util.Context.NONE); + } } diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesListByResourceGroupSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesListByResourceGroupSamples.java index 434f6c7b7f44..e722ffe0f1b4 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesListByResourceGroupSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesListByResourceGroupSamples.java @@ -9,7 +9,7 @@ */ public final class ProfilesListByResourceGroupSamples { /* - * x-ms-original-file: 2022-04-01/Profile-GET-ByResourceGroup.json + * x-ms-original-file: 2024-04-01-preview/Profile-GET-ByResourceGroup.json */ /** * Sample code: ListProfilesByResourceGroup. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesListSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesListSamples.java index 132f0f9df2e9..923af9f64189 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesListSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesListSamples.java @@ -9,7 +9,7 @@ */ public final class ProfilesListSamples { /* - * x-ms-original-file: 2022-04-01/Profile-GET-BySubscription.json + * x-ms-original-file: 2024-04-01-preview/Profile-GET-BySubscription.json */ /** * Sample code: ListBySubscription. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesUpdateSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesUpdateSamples.java index f23b7ddb05ed..3e67a21d235b 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesUpdateSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/ProfilesUpdateSamples.java @@ -8,6 +8,7 @@ import com.azure.resourcemanager.trafficmanager.models.MonitorConfig; import com.azure.resourcemanager.trafficmanager.models.MonitorConfigCustomHeadersItem; import com.azure.resourcemanager.trafficmanager.models.MonitorProtocol; +import com.azure.resourcemanager.trafficmanager.models.RecordType; import java.util.Arrays; /** @@ -15,7 +16,7 @@ */ public final class ProfilesUpdateSamples { /* - * x-ms-original-file: 2022-04-01/Profile-PATCH-MonitorConfig.json + * x-ms-original-file: 2024-04-01-preview/Profile-PATCH-MonitorConfig.json */ /** * Sample code: Profile-PATCH-MonitorConfig. @@ -38,4 +39,19 @@ public static void profilePATCHMonitorConfig(com.azure.resourcemanager.trafficma new MonitorConfigCustomHeadersItem().withName("header-2").withValue("value-2")))), com.azure.core.util.Context.NONE); } + + /* + * x-ms-original-file: 2024-04-01-preview/Profile-PATCH-RecordType.json + */ + /** + * Sample code: Profile-PATCH-RecordType. + * + * @param manager Entry point to TrafficManager. + */ + public static void profilePATCHRecordType(com.azure.resourcemanager.trafficmanager.TrafficManager manager) { + manager.serviceClient() + .getProfiles() + .updateWithResponse("azuresdkfornetautoresttrafficmanager2583", "azuresdkfornetautoresttrafficmanager6192", + new ProfileInner().withRecordType(RecordType.CNAME), com.azure.core.util.Context.NONE); + } } diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/TrafficManagerUserMetricsKeysCreateOrUpdateSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/TrafficManagerUserMetricsKeysCreateOrUpdateSamples.java index 9c652c6e6cdc..1eb2ff18f74c 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/TrafficManagerUserMetricsKeysCreateOrUpdateSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/TrafficManagerUserMetricsKeysCreateOrUpdateSamples.java @@ -9,7 +9,7 @@ */ public final class TrafficManagerUserMetricsKeysCreateOrUpdateSamples { /* - * x-ms-original-file: 2022-04-01/TrafficManagerUserMetricsKeys-PUT.json + * x-ms-original-file: 2024-04-01-preview/TrafficManagerUserMetricsKeys-PUT.json */ /** * Sample code: TrafficManagerUserMetricsKeys-PUT. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/TrafficManagerUserMetricsKeysDeleteSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/TrafficManagerUserMetricsKeysDeleteSamples.java index b12a8fe5aa4b..ae75d8ce2fe3 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/TrafficManagerUserMetricsKeysDeleteSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/TrafficManagerUserMetricsKeysDeleteSamples.java @@ -9,7 +9,7 @@ */ public final class TrafficManagerUserMetricsKeysDeleteSamples { /* - * x-ms-original-file: 2022-04-01/TrafficManagerUserMetricsKeys-DELETE.json + * x-ms-original-file: 2024-04-01-preview/TrafficManagerUserMetricsKeys-DELETE.json */ /** * Sample code: TrafficManagerUserMetricsKeys-DELETE. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/TrafficManagerUserMetricsKeysGetSamples.java b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/TrafficManagerUserMetricsKeysGetSamples.java index 0c37bfcb2084..f9e97ea565c1 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/TrafficManagerUserMetricsKeysGetSamples.java +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/src/samples/java/com/azure/resourcemanager/trafficmanager/generated/TrafficManagerUserMetricsKeysGetSamples.java @@ -9,7 +9,7 @@ */ public final class TrafficManagerUserMetricsKeysGetSamples { /* - * x-ms-original-file: 2022-04-01/TrafficManagerUserMetricsKeys-GET.json + * x-ms-original-file: 2024-04-01-preview/TrafficManagerUserMetricsKeys-GET.json */ /** * Sample code: TrafficManagerUserMetricsKeys-GET. diff --git a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/tsp-location.yaml b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/tsp-location.yaml index 60f99798bea8..05ccb9970364 100644 --- a/sdk/trafficmanager/azure-resourcemanager-trafficmanager/tsp-location.yaml +++ b/sdk/trafficmanager/azure-resourcemanager-trafficmanager/tsp-location.yaml @@ -1,4 +1,4 @@ directory: specification/trafficmanager/resource-manager/Microsoft.Network/TrafficManager -commit: bf2f971b4319da9f5624da7f3c13d487be477897 +commit: 28e08376806422730d28d8dd90479d0ad68397ac repo: Azure/azure-rest-api-specs additionalDirectories: diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/ApprovalsClient.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/ApprovalsClient.java index 5081ab82e73b..f7c7cf0548f2 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/ApprovalsClient.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/ApprovalsClient.java @@ -255,7 +255,7 @@ ApprovalResourceInner update(String resourceUri, String approvalName, ApprovalPa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> @@ -271,7 +271,7 @@ ApprovalResourceInner update(String resourceUri, String approvalName, ApprovalPa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> @@ -286,7 +286,7 @@ ApprovalResourceInner update(String resourceUri, String approvalName, ApprovalPa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner notifyInitiator(String resourceUri, String approvalName, ApprovalActionRequest body); @@ -301,7 +301,7 @@ ApprovalResourceInner update(String resourceUri, String approvalName, ApprovalPa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner notifyInitiator(String resourceUri, String approvalName, ApprovalActionRequest body, diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/CommunityEndpointsClient.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/CommunityEndpointsClient.java index 2dfd13a9a37d..e2dd784065b3 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/CommunityEndpointsClient.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/CommunityEndpointsClient.java @@ -313,7 +313,7 @@ PagedIterable listByCommunityResource(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -330,7 +330,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -347,7 +347,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String communityName, @@ -364,7 +364,7 @@ ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String communityName, @@ -380,7 +380,7 @@ ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -398,7 +398,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -415,7 +415,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String communityName, @@ -432,7 +432,7 @@ ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String communityName, diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/EnclaveConnectionsClient.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/EnclaveConnectionsClient.java index 0620448f051b..519de93396dc 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/EnclaveConnectionsClient.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/EnclaveConnectionsClient.java @@ -288,7 +288,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -304,7 +304,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -319,7 +319,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String enclaveConnectionName, @@ -335,7 +335,7 @@ ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String enclaveConnectionName, @@ -350,7 +350,7 @@ ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -366,7 +366,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -381,7 +381,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String enclaveConnectionName, @@ -397,7 +397,7 @@ ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String enclaveConnectionName, diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/EnclaveEndpointsClient.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/EnclaveEndpointsClient.java index d3ad46b4e408..21c6230adf2d 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/EnclaveEndpointsClient.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/EnclaveEndpointsClient.java @@ -313,7 +313,7 @@ PagedIterable listByEnclaveResource(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -330,7 +330,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -347,7 +347,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String virtualEnclaveName, @@ -364,7 +364,7 @@ ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String virtualEnclaveName, @@ -380,7 +380,7 @@ ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -398,7 +398,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -415,7 +415,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String virtualEnclaveName, @@ -432,7 +432,7 @@ ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String virtualEnclaveName, diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/VirtualEnclavesClient.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/VirtualEnclavesClient.java index a6e6b44f211a..26cd11cdb458 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/VirtualEnclavesClient.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/fluent/VirtualEnclavesClient.java @@ -282,7 +282,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> @@ -298,7 +298,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -313,7 +313,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String virtualEnclaveName, @@ -329,7 +329,7 @@ ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String virtualEnclaveName, @@ -344,7 +344,7 @@ ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -360,7 +360,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -375,7 +375,7 @@ SyncPoller, ApprovalActionResponseInner> * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String virtualEnclaveName, @@ -391,7 +391,7 @@ ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String virtualEnclaveName, diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/ApprovalsClientImpl.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/ApprovalsClientImpl.java index 0932a3f7a006..ea150ddf26c5 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/ApprovalsClientImpl.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/ApprovalsClientImpl.java @@ -881,7 +881,8 @@ public void delete(String resourceUri, String approvalName, Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> notifyInitiatorWithResponseAsync(String resourceUri, String approvalName, @@ -903,7 +904,7 @@ private Mono>> notifyInitiatorWithResponseAsync(String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response notifyInitiatorWithResponse(String resourceUri, String approvalName, @@ -924,7 +925,7 @@ private Response notifyInitiatorWithResponse(String resourceUri, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response notifyInitiatorWithResponse(String resourceUri, String approvalName, @@ -944,7 +945,7 @@ private Response notifyInitiatorWithResponse(String resourceUri, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ApprovalActionResponseInner> @@ -964,7 +965,7 @@ private Response notifyInitiatorWithResponse(String resourceUri, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> @@ -984,7 +985,7 @@ private Response notifyInitiatorWithResponse(String resourceUri, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> @@ -1003,7 +1004,7 @@ private Response notifyInitiatorWithResponse(String resourceUri, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono notifyInitiatorAsync(String resourceUri, String approvalName, @@ -1021,7 +1022,7 @@ private Mono notifyInitiatorAsync(String resourceUr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner notifyInitiator(String resourceUri, String approvalName, @@ -1039,7 +1040,7 @@ public ApprovalActionResponseInner notifyInitiator(String resourceUri, String ap * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner notifyInitiator(String resourceUri, String approvalName, diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/CommunityEndpointsClientImpl.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/CommunityEndpointsClientImpl.java index 907e640ecc56..098fe4fade72 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/CommunityEndpointsClientImpl.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/CommunityEndpointsClientImpl.java @@ -1129,7 +1129,8 @@ public PagedIterable listBySubscription(String c * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> handleApprovalCreationWithResponseAsync(String resourceGroupName, @@ -1153,7 +1154,7 @@ private Mono>> handleApprovalCreationWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalCreationWithResponse(String resourceGroupName, String communityName, @@ -1176,7 +1177,7 @@ private Response handleApprovalCreationWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalCreationWithResponse(String resourceGroupName, String communityName, @@ -1198,7 +1199,7 @@ private Response handleApprovalCreationWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ApprovalActionResponseInner> @@ -1221,7 +1222,7 @@ private Response handleApprovalCreationWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -1243,7 +1244,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -1265,7 +1266,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono handleApprovalCreationAsync(String resourceGroupName, @@ -1284,7 +1285,7 @@ private Mono handleApprovalCreationAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String communityName, @@ -1304,7 +1305,7 @@ public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String communityName, @@ -1323,7 +1324,8 @@ public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> handleApprovalDeletionWithResponseAsync(String resourceGroupName, @@ -1347,7 +1349,7 @@ private Mono>> handleApprovalDeletionWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalDeletionWithResponse(String resourceGroupName, String communityName, @@ -1370,7 +1372,7 @@ private Response handleApprovalDeletionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalDeletionWithResponse(String resourceGroupName, String communityName, @@ -1392,7 +1394,7 @@ private Response handleApprovalDeletionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ApprovalActionResponseInner> @@ -1415,7 +1417,7 @@ private Response handleApprovalDeletionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -1438,7 +1440,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -1460,7 +1462,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono handleApprovalDeletionAsync(String resourceGroupName, @@ -1479,7 +1481,7 @@ private Mono handleApprovalDeletionAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String communityName, @@ -1499,7 +1501,7 @@ public ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String communityName, diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/EnclaveConnectionsClientImpl.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/EnclaveConnectionsClientImpl.java index 704d5d8496dc..8a68e01e7f81 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/EnclaveConnectionsClientImpl.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/EnclaveConnectionsClientImpl.java @@ -1059,7 +1059,8 @@ public PagedIterable list(Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> handleApprovalCreationWithResponseAsync(String resourceGroupName, @@ -1082,7 +1083,7 @@ private Mono>> handleApprovalCreationWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalCreationWithResponse(String resourceGroupName, @@ -1104,7 +1105,7 @@ private Response handleApprovalCreationWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalCreationWithResponse(String resourceGroupName, @@ -1125,7 +1126,7 @@ private Response handleApprovalCreationWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ApprovalActionResponseInner> @@ -1147,7 +1148,7 @@ private Response handleApprovalCreationWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -1168,7 +1169,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -1188,7 +1189,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono handleApprovalCreationAsync(String resourceGroupName, @@ -1206,7 +1207,7 @@ private Mono handleApprovalCreationAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String enclaveConnectionName, @@ -1224,7 +1225,7 @@ public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String enclaveConnectionName, @@ -1241,7 +1242,8 @@ public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> handleApprovalDeletionWithResponseAsync(String resourceGroupName, @@ -1264,7 +1266,7 @@ private Mono>> handleApprovalDeletionWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalDeletionWithResponse(String resourceGroupName, @@ -1286,7 +1288,7 @@ private Response handleApprovalDeletionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalDeletionWithResponse(String resourceGroupName, @@ -1307,7 +1309,7 @@ private Response handleApprovalDeletionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ApprovalActionResponseInner> @@ -1329,7 +1331,7 @@ private Response handleApprovalDeletionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -1350,7 +1352,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -1370,7 +1372,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono handleApprovalDeletionAsync(String resourceGroupName, @@ -1388,7 +1390,7 @@ private Mono handleApprovalDeletionAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String enclaveConnectionName, @@ -1406,7 +1408,7 @@ public ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String enclaveConnectionName, diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/EnclaveEndpointsClientImpl.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/EnclaveEndpointsClientImpl.java index b61d0cf51267..4c6977e1c0e2 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/EnclaveEndpointsClientImpl.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/EnclaveEndpointsClientImpl.java @@ -1148,7 +1148,8 @@ public PagedIterable listBySubscription(String vir * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> handleApprovalCreationWithResponseAsync(String resourceGroupName, @@ -1172,7 +1173,7 @@ private Mono>> handleApprovalCreationWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalCreationWithResponse(String resourceGroupName, String virtualEnclaveName, @@ -1195,7 +1196,7 @@ private Response handleApprovalCreationWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalCreationWithResponse(String resourceGroupName, String virtualEnclaveName, @@ -1217,7 +1218,7 @@ private Response handleApprovalCreationWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ApprovalActionResponseInner> @@ -1240,7 +1241,7 @@ private Response handleApprovalCreationWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -1262,7 +1263,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -1284,7 +1285,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono handleApprovalCreationAsync(String resourceGroupName, @@ -1303,7 +1304,7 @@ private Mono handleApprovalCreationAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String virtualEnclaveName, @@ -1323,7 +1324,7 @@ public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String virtualEnclaveName, @@ -1342,7 +1343,8 @@ public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> handleApprovalDeletionWithResponseAsync(String resourceGroupName, @@ -1366,7 +1368,7 @@ private Mono>> handleApprovalDeletionWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalDeletionWithResponse(String resourceGroupName, String virtualEnclaveName, @@ -1389,7 +1391,7 @@ private Response handleApprovalDeletionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalDeletionWithResponse(String resourceGroupName, String virtualEnclaveName, @@ -1411,7 +1413,7 @@ private Response handleApprovalDeletionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ApprovalActionResponseInner> @@ -1434,7 +1436,7 @@ private Response handleApprovalDeletionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -1457,7 +1459,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -1479,7 +1481,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono handleApprovalDeletionAsync(String resourceGroupName, @@ -1498,7 +1500,7 @@ private Mono handleApprovalDeletionAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String virtualEnclaveName, @@ -1518,7 +1520,7 @@ public ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String virtualEnclaveName, diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/VirtualEnclavesClientImpl.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/VirtualEnclavesClientImpl.java index 7897456ce8fe..1dc4e3e6da0e 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/VirtualEnclavesClientImpl.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/implementation/VirtualEnclavesClientImpl.java @@ -1045,7 +1045,8 @@ public PagedIterable list(Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> handleApprovalCreationWithResponseAsync(String resourceGroupName, @@ -1068,7 +1069,7 @@ private Mono>> handleApprovalCreationWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalCreationWithResponse(String resourceGroupName, String virtualEnclaveName, @@ -1090,7 +1091,7 @@ private Response handleApprovalCreationWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalCreationWithResponse(String resourceGroupName, String virtualEnclaveName, @@ -1110,7 +1111,7 @@ private Response handleApprovalCreationWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ApprovalActionResponseInner> @@ -1132,7 +1133,7 @@ private Response handleApprovalCreationWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> @@ -1152,7 +1153,7 @@ private Response handleApprovalCreationWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalCreation( @@ -1172,7 +1173,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono handleApprovalCreationAsync(String resourceGroupName, @@ -1190,7 +1191,7 @@ private Mono handleApprovalCreationAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String virtualEnclaveName, @@ -1208,7 +1209,7 @@ public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupName, String virtualEnclaveName, @@ -1225,7 +1226,8 @@ public ApprovalActionResponseInner handleApprovalCreation(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest along with {@link Response} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> handleApprovalDeletionWithResponseAsync(String resourceGroupName, @@ -1248,7 +1250,7 @@ private Mono>> handleApprovalDeletionWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalDeletionWithResponse(String resourceGroupName, String virtualEnclaveName, @@ -1270,7 +1272,7 @@ private Response handleApprovalDeletionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return response body after handling of approvalCallbackRequest along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response handleApprovalDeletionWithResponse(String resourceGroupName, String virtualEnclaveName, @@ -1290,7 +1292,7 @@ private Response handleApprovalDeletionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ApprovalActionResponseInner> @@ -1312,7 +1314,7 @@ private Response handleApprovalDeletionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -1332,7 +1334,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ApprovalActionResponseInner> beginHandleApprovalDeletion( @@ -1352,7 +1354,7 @@ public SyncPoller, ApprovalActionRespons * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return response body after handling of approvalCallbackRequest on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono handleApprovalDeletionAsync(String resourceGroupName, @@ -1370,7 +1372,7 @@ private Mono handleApprovalDeletionAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String virtualEnclaveName, @@ -1388,7 +1390,7 @@ public ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ @ServiceMethod(returns = ReturnType.SINGLE) public ApprovalActionResponseInner handleApprovalDeletion(String resourceGroupName, String virtualEnclaveName, diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/ApprovalResource.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/ApprovalResource.java index f5c9c94f3b75..da31653bb91b 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/ApprovalResource.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/ApprovalResource.java @@ -185,7 +185,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse notifyInitiator(ApprovalActionRequest body); @@ -197,7 +197,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse notifyInitiator(ApprovalActionRequest body, Context context); } diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/Approvals.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/Approvals.java index 97b58b0be574..ab12d1e77039 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/Approvals.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/Approvals.java @@ -92,7 +92,7 @@ public interface Approvals { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse notifyInitiator(String resourceUri, String approvalName, ApprovalActionRequest body); @@ -106,7 +106,7 @@ public interface Approvals { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse notifyInitiator(String resourceUri, String approvalName, ApprovalActionRequest body, Context context); diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/CommunityEndpointResource.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/CommunityEndpointResource.java index 9657364f29d4..ea10cc0f17c9 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/CommunityEndpointResource.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/CommunityEndpointResource.java @@ -271,7 +271,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(ApprovalCallbackRequest body); @@ -283,7 +283,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(ApprovalCallbackRequest body, Context context); @@ -294,7 +294,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(ApprovalDeletionCallbackRequest body); @@ -306,7 +306,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(ApprovalDeletionCallbackRequest body, Context context); } diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/CommunityEndpoints.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/CommunityEndpoints.java index d67707ee2c05..7ce13d0e5801 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/CommunityEndpoints.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/CommunityEndpoints.java @@ -128,7 +128,7 @@ PagedIterable listByCommunityResource(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String communityName, String communityEndpointName, ApprovalCallbackRequest body); @@ -144,7 +144,7 @@ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String c * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String communityName, String communityEndpointName, ApprovalCallbackRequest body, Context context); @@ -159,7 +159,7 @@ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String c * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(String resourceGroupName, String communityName, String communityEndpointName, ApprovalDeletionCallbackRequest body); @@ -175,7 +175,7 @@ ApprovalActionResponse handleApprovalDeletion(String resourceGroupName, String c * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(String resourceGroupName, String communityName, String communityEndpointName, ApprovalDeletionCallbackRequest body, Context context); diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveConnectionResource.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveConnectionResource.java index 7e5ee835d486..21d6ee0da074 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveConnectionResource.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveConnectionResource.java @@ -270,7 +270,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(ApprovalCallbackRequest body); @@ -282,7 +282,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(ApprovalCallbackRequest body, Context context); @@ -293,7 +293,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(ApprovalDeletionCallbackRequest body); @@ -305,7 +305,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(ApprovalDeletionCallbackRequest body, Context context); } diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveConnections.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveConnections.java index 06260ca71ee5..c0c0f740e218 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveConnections.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveConnections.java @@ -117,7 +117,7 @@ Response getByResourceGroupWithResponse(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String enclaveConnectionName, ApprovalCallbackRequest body); @@ -132,7 +132,7 @@ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String e * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String enclaveConnectionName, ApprovalCallbackRequest body, Context context); @@ -146,7 +146,7 @@ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String e * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(String resourceGroupName, String enclaveConnectionName, ApprovalDeletionCallbackRequest body); @@ -161,7 +161,7 @@ ApprovalActionResponse handleApprovalDeletion(String resourceGroupName, String e * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(String resourceGroupName, String enclaveConnectionName, ApprovalDeletionCallbackRequest body, Context context); diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveEndpointResource.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveEndpointResource.java index cf32b4ccba14..5ba9fcb1cff8 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveEndpointResource.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveEndpointResource.java @@ -271,7 +271,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(ApprovalCallbackRequest body); @@ -283,7 +283,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(ApprovalCallbackRequest body, Context context); @@ -294,7 +294,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(ApprovalDeletionCallbackRequest body); @@ -306,7 +306,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(ApprovalDeletionCallbackRequest body, Context context); } diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveEndpoints.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveEndpoints.java index 8acdba10004a..3ef31dff5136 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveEndpoints.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveEndpoints.java @@ -128,7 +128,7 @@ PagedIterable listByEnclaveResource(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String virtualEnclaveName, String enclaveEndpointName, ApprovalCallbackRequest body); @@ -144,7 +144,7 @@ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String v * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String virtualEnclaveName, String enclaveEndpointName, ApprovalCallbackRequest body, Context context); @@ -159,7 +159,7 @@ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String v * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(String resourceGroupName, String virtualEnclaveName, String enclaveEndpointName, ApprovalDeletionCallbackRequest body); @@ -175,7 +175,7 @@ ApprovalActionResponse handleApprovalDeletion(String resourceGroupName, String v * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(String resourceGroupName, String virtualEnclaveName, String enclaveEndpointName, ApprovalDeletionCallbackRequest body, Context context); diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveResource.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveResource.java index 5f2528b8df75..029a1ebc29b3 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveResource.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/EnclaveResource.java @@ -304,7 +304,7 @@ interface WithIdentity { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(ApprovalCallbackRequest body); @@ -316,7 +316,7 @@ interface WithIdentity { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(ApprovalCallbackRequest body, Context context); @@ -327,7 +327,7 @@ interface WithIdentity { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(ApprovalDeletionCallbackRequest body); @@ -339,7 +339,7 @@ interface WithIdentity { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(ApprovalDeletionCallbackRequest body, Context context); } diff --git a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/VirtualEnclaves.java b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/VirtualEnclaves.java index 43cd9dbf519b..0e94fa21d9b7 100644 --- a/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/VirtualEnclaves.java +++ b/sdk/virtualenclaves/azure-resourcemanager-virtualenclaves/src/main/java/com/azure/resourcemanager/virtualenclaves/models/VirtualEnclaves.java @@ -113,7 +113,7 @@ Response getByResourceGroupWithResponse(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String virtualEnclaveName, ApprovalCallbackRequest body); @@ -128,7 +128,7 @@ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String v * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String virtualEnclaveName, ApprovalCallbackRequest body, Context context); @@ -142,7 +142,7 @@ ApprovalActionResponse handleApprovalCreation(String resourceGroupName, String v * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(String resourceGroupName, String virtualEnclaveName, ApprovalDeletionCallbackRequest body); @@ -157,7 +157,7 @@ ApprovalActionResponse handleApprovalDeletion(String resourceGroupName, String v * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return response body after handling of approvalCallbackRequest. */ ApprovalActionResponse handleApprovalDeletion(String resourceGroupName, String virtualEnclaveName, ApprovalDeletionCallbackRequest body, Context context); diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/ConfigTemplatesClient.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/ConfigTemplatesClient.java index 40ab8935100d..1d91ef596d5a 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/ConfigTemplatesClient.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/ConfigTemplatesClient.java @@ -151,7 +151,7 @@ Response updateWithResponse(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of config Template Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ConfigTemplateVersionInner> beginCreateVersion( @@ -167,7 +167,7 @@ SyncPoller, ConfigTemplateVersionInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of config Template Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ConfigTemplateVersionInner> beginCreateVersion( @@ -183,7 +183,7 @@ SyncPoller, ConfigTemplateVersionInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return config Template Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) ConfigTemplateVersionInner createVersion(String resourceGroupName, String configTemplateName, @@ -199,7 +199,7 @@ ConfigTemplateVersionInner createVersion(String resourceGroupName, String config * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return config Template Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) ConfigTemplateVersionInner createVersion(String resourceGroupName, String configTemplateName, diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/SchemasClient.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/SchemasClient.java index 5188c2d6b862..4c3184331431 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/SchemasClient.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/SchemasClient.java @@ -200,7 +200,7 @@ Response updateWithResponse(String resourceGroupName, String schema * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of schema Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, SchemaVersionInner> beginCreateVersion(String resourceGroupName, @@ -216,7 +216,7 @@ SyncPoller, SchemaVersionInner> beginCreateVersio * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of schema Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, SchemaVersionInner> beginCreateVersion(String resourceGroupName, @@ -231,7 +231,7 @@ SyncPoller, SchemaVersionInner> beginCreateVersio * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return schema Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) SchemaVersionInner createVersion(String resourceGroupName, String schemaName, @@ -247,7 +247,7 @@ SchemaVersionInner createVersion(String resourceGroupName, String schemaName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return schema Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) SchemaVersionInner createVersion(String resourceGroupName, String schemaName, SchemaVersionWithUpdateTypeInner body, diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/SolutionTemplatesClient.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/SolutionTemplatesClient.java index ed42992eb0d9..6aa14813de1c 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/SolutionTemplatesClient.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/SolutionTemplatesClient.java @@ -151,7 +151,7 @@ SolutionTemplateInner update(String resourceGroupName, String solutionTemplateNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Template Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, SolutionTemplateVersionInner> beginCreateVersion( @@ -167,7 +167,7 @@ SyncPoller, SolutionTemplateVersionInne * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Template Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, SolutionTemplateVersionInner> beginCreateVersion( @@ -183,7 +183,7 @@ SyncPoller, SolutionTemplateVersionInne * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Template Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) SolutionTemplateVersionInner createVersion(String resourceGroupName, String solutionTemplateName, @@ -199,7 +199,7 @@ SolutionTemplateVersionInner createVersion(String resourceGroupName, String solu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Template Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) SolutionTemplateVersionInner createVersion(String resourceGroupName, String solutionTemplateName, diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/TargetsClient.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/TargetsClient.java index 4364c0b31c07..3d5ad3f9294d 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/TargetsClient.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/fluent/TargetsClient.java @@ -459,7 +459,7 @@ SyncPoller, Void> beginRemoveRevision(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of resolved Configuration. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ResolvedConfigurationInner> @@ -475,7 +475,7 @@ SyncPoller, Void> beginRemoveRevision(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of resolved Configuration. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, ResolvedConfigurationInner> beginResolveConfiguration( @@ -490,7 +490,7 @@ SyncPoller, ResolvedConfigurationInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return resolved Configuration. */ @ServiceMethod(returns = ReturnType.SINGLE) ResolvedConfigurationInner resolveConfiguration(String resourceGroupName, String targetName, @@ -506,7 +506,7 @@ ResolvedConfigurationInner resolveConfiguration(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return resolved Configuration. */ @ServiceMethod(returns = ReturnType.SINGLE) ResolvedConfigurationInner resolveConfiguration(String resourceGroupName, String targetName, @@ -521,7 +521,7 @@ ResolvedConfigurationInner resolveConfiguration(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, SolutionVersionInner> @@ -537,7 +537,7 @@ ResolvedConfigurationInner resolveConfiguration(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, SolutionVersionInner> beginReviewSolutionVersion( @@ -552,7 +552,7 @@ SyncPoller, SolutionVersionInner> beginReviewSo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) SolutionVersionInner reviewSolutionVersion(String resourceGroupName, String targetName, @@ -568,7 +568,7 @@ SolutionVersionInner reviewSolutionVersion(String resourceGroupName, String targ * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) SolutionVersionInner reviewSolutionVersion(String resourceGroupName, String targetName, @@ -583,7 +583,7 @@ SolutionVersionInner reviewSolutionVersion(String resourceGroupName, String targ * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, SolutionVersionInner> @@ -599,7 +599,7 @@ SolutionVersionInner reviewSolutionVersion(String resourceGroupName, String targ * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, SolutionVersionInner> beginPublishSolutionVersion( @@ -614,7 +614,7 @@ SyncPoller, SolutionVersionInner> beginPublishS * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) SolutionVersionInner publishSolutionVersion(String resourceGroupName, String targetName, @@ -630,7 +630,7 @@ SolutionVersionInner publishSolutionVersion(String resourceGroupName, String tar * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) SolutionVersionInner publishSolutionVersion(String resourceGroupName, String targetName, @@ -645,7 +645,7 @@ SolutionVersionInner publishSolutionVersion(String resourceGroupName, String tar * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, SolutionVersionInner> beginUpdateExternalValidationStatus( @@ -661,7 +661,7 @@ SyncPoller, SolutionVersionInner> beginUpdateEx * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, SolutionVersionInner> beginUpdateExternalValidationStatus( @@ -676,7 +676,7 @@ SyncPoller, SolutionVersionInner> beginUpdateEx * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) SolutionVersionInner updateExternalValidationStatus(String resourceGroupName, String targetName, @@ -692,7 +692,7 @@ SolutionVersionInner updateExternalValidationStatus(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) SolutionVersionInner updateExternalValidationStatus(String resourceGroupName, String targetName, diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/ConfigTemplatesClientImpl.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/ConfigTemplatesClientImpl.java index dc54c9c056aa..d287d2052d4a 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/ConfigTemplatesClientImpl.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/ConfigTemplatesClientImpl.java @@ -601,7 +601,7 @@ public ConfigTemplateInner update(String resourceGroupName, String configTemplat * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return config Template Version Resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> createVersionWithResponseAsync(String resourceGroupName, @@ -624,7 +624,7 @@ private Mono>> createVersionWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return config Template Version Resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response createVersionWithResponse(String resourceGroupName, String configTemplateName, @@ -646,7 +646,7 @@ private Response createVersionWithResponse(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return config Template Version Resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response createVersionWithResponse(String resourceGroupName, String configTemplateName, @@ -666,7 +666,7 @@ private Response createVersionWithResponse(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of config Template Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ConfigTemplateVersionInner> beginCreateVersionAsync( @@ -687,7 +687,7 @@ private PollerFlux, ConfigTemplateVersion * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of config Template Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ConfigTemplateVersionInner> beginCreateVersion( @@ -707,7 +707,7 @@ public SyncPoller, ConfigTemplateVersionI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of config Template Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ConfigTemplateVersionInner> beginCreateVersion( @@ -727,7 +727,7 @@ public SyncPoller, ConfigTemplateVersionI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return config Template Version Resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono createVersionAsync(String resourceGroupName, String configTemplateName, @@ -745,7 +745,7 @@ private Mono createVersionAsync(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return config Template Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public ConfigTemplateVersionInner createVersion(String resourceGroupName, String configTemplateName, @@ -763,7 +763,7 @@ public ConfigTemplateVersionInner createVersion(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return config Template Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public ConfigTemplateVersionInner createVersion(String resourceGroupName, String configTemplateName, diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/SchemasClientImpl.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/SchemasClientImpl.java index 23777c1b4ee4..b8d511d38fa3 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/SchemasClientImpl.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/SchemasClientImpl.java @@ -726,7 +726,7 @@ public void delete(String resourceGroupName, String schemaName, Context context) * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return schema Version Resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> createVersionWithResponseAsync(String resourceGroupName, String schemaName, @@ -748,7 +748,7 @@ private Mono>> createVersionWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return schema Version Resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response createVersionWithResponse(String resourceGroupName, String schemaName, @@ -769,7 +769,7 @@ private Response createVersionWithResponse(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return schema Version Resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response createVersionWithResponse(String resourceGroupName, String schemaName, @@ -789,7 +789,7 @@ private Response createVersionWithResponse(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of schema Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, SchemaVersionInner> @@ -808,7 +808,7 @@ private Response createVersionWithResponse(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of schema Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, SchemaVersionInner> beginCreateVersion(String resourceGroupName, @@ -828,7 +828,7 @@ public SyncPoller, SchemaVersionInner> beginCreat * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of schema Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, SchemaVersionInner> beginCreateVersion(String resourceGroupName, @@ -847,7 +847,7 @@ public SyncPoller, SchemaVersionInner> beginCreat * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return schema Version Resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono createVersionAsync(String resourceGroupName, String schemaName, @@ -865,7 +865,7 @@ private Mono createVersionAsync(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return schema Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public SchemaVersionInner createVersion(String resourceGroupName, String schemaName, @@ -883,7 +883,7 @@ public SchemaVersionInner createVersion(String resourceGroupName, String schemaN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return schema Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public SchemaVersionInner createVersion(String resourceGroupName, String schemaName, diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/SolutionTemplatesClientImpl.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/SolutionTemplatesClientImpl.java index 4558bf288a6b..7345ab6b2f46 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/SolutionTemplatesClientImpl.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/SolutionTemplatesClientImpl.java @@ -603,7 +603,7 @@ public SolutionTemplateInner update(String resourceGroupName, String solutionTem * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return solution Template Version Resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> createVersionWithResponseAsync(String resourceGroupName, @@ -626,7 +626,7 @@ private Mono>> createVersionWithResponseAsync(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return solution Template Version Resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response createVersionWithResponse(String resourceGroupName, String solutionTemplateName, @@ -648,7 +648,7 @@ private Response createVersionWithResponse(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return solution Template Version Resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response createVersionWithResponse(String resourceGroupName, String solutionTemplateName, @@ -669,7 +669,7 @@ private Response createVersionWithResponse(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of solution Template Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, SolutionTemplateVersionInner> beginCreateVersionAsync( @@ -690,7 +690,7 @@ private PollerFlux, SolutionTemplateVer * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Template Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, SolutionTemplateVersionInner> beginCreateVersion( @@ -710,7 +710,7 @@ public SyncPoller, SolutionTemplateVers * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Template Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, SolutionTemplateVersionInner> beginCreateVersion( @@ -731,7 +731,7 @@ public SyncPoller, SolutionTemplateVers * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return solution Template Version Resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono createVersionAsync(String resourceGroupName, String solutionTemplateName, @@ -749,7 +749,7 @@ private Mono createVersionAsync(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Template Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public SolutionTemplateVersionInner createVersion(String resourceGroupName, String solutionTemplateName, @@ -767,7 +767,7 @@ public SolutionTemplateVersionInner createVersion(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Template Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public SolutionTemplateVersionInner createVersion(String resourceGroupName, String solutionTemplateName, diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/TargetsClientImpl.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/TargetsClientImpl.java index 19c3559b71ca..110cc52a2df5 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/TargetsClientImpl.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/implementation/TargetsClientImpl.java @@ -1682,7 +1682,7 @@ public void removeRevision(String resourceGroupName, String targetName, RemoveRe * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return resolved Configuration along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> resolveConfigurationWithResponseAsync(String resourceGroupName, @@ -1704,7 +1704,7 @@ private Mono>> resolveConfigurationWithResponseAsync(S * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return resolved Configuration along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response resolveConfigurationWithResponse(String resourceGroupName, String targetName, @@ -1725,7 +1725,7 @@ private Response resolveConfigurationWithResponse(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return resolved Configuration along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response resolveConfigurationWithResponse(String resourceGroupName, String targetName, @@ -1745,7 +1745,7 @@ private Response resolveConfigurationWithResponse(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of resolved Configuration. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, ResolvedConfigurationInner> @@ -1766,7 +1766,7 @@ private Response resolveConfigurationWithResponse(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of resolved Configuration. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ResolvedConfigurationInner> @@ -1786,7 +1786,7 @@ private Response resolveConfigurationWithResponse(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of resolved Configuration. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, ResolvedConfigurationInner> beginResolveConfiguration( @@ -1805,7 +1805,7 @@ public SyncPoller, ResolvedConfigurationI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return resolved Configuration on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono resolveConfigurationAsync(String resourceGroupName, String targetName, @@ -1823,7 +1823,7 @@ private Mono resolveConfigurationAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return resolved Configuration. */ @ServiceMethod(returns = ReturnType.SINGLE) public ResolvedConfigurationInner resolveConfiguration(String resourceGroupName, String targetName, @@ -1841,7 +1841,7 @@ public ResolvedConfigurationInner resolveConfiguration(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return resolved Configuration. */ @ServiceMethod(returns = ReturnType.SINGLE) public ResolvedConfigurationInner resolveConfiguration(String resourceGroupName, String targetName, @@ -1858,7 +1858,7 @@ public ResolvedConfigurationInner resolveConfiguration(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return solution Version Resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> reviewSolutionVersionWithResponseAsync(String resourceGroupName, @@ -1881,7 +1881,7 @@ private Mono>> reviewSolutionVersionWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return solution Version Resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response reviewSolutionVersionWithResponse(String resourceGroupName, String targetName, @@ -1902,7 +1902,7 @@ private Response reviewSolutionVersionWithResponse(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return solution Version Resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response reviewSolutionVersionWithResponse(String resourceGroupName, String targetName, @@ -1922,7 +1922,7 @@ private Response reviewSolutionVersionWithResponse(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, SolutionVersionInner> @@ -1942,7 +1942,7 @@ private Response reviewSolutionVersionWithResponse(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, SolutionVersionInner> @@ -1962,7 +1962,7 @@ private Response reviewSolutionVersionWithResponse(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, SolutionVersionInner> beginReviewSolutionVersion( @@ -1981,7 +1981,7 @@ public SyncPoller, SolutionVersionInner> beginR * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return solution Version Resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono reviewSolutionVersionAsync(String resourceGroupName, String targetName, @@ -1999,7 +1999,7 @@ private Mono reviewSolutionVersionAsync(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public SolutionVersionInner reviewSolutionVersion(String resourceGroupName, String targetName, @@ -2017,7 +2017,7 @@ public SolutionVersionInner reviewSolutionVersion(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public SolutionVersionInner reviewSolutionVersion(String resourceGroupName, String targetName, @@ -2034,7 +2034,7 @@ public SolutionVersionInner reviewSolutionVersion(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return solution Version Resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> publishSolutionVersionWithResponseAsync(String resourceGroupName, @@ -2057,7 +2057,7 @@ private Mono>> publishSolutionVersionWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return solution Version Resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response publishSolutionVersionWithResponse(String resourceGroupName, String targetName, @@ -2078,7 +2078,7 @@ private Response publishSolutionVersionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return solution Version Resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response publishSolutionVersionWithResponse(String resourceGroupName, String targetName, @@ -2098,7 +2098,7 @@ private Response publishSolutionVersionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, SolutionVersionInner> @@ -2118,7 +2118,7 @@ private Response publishSolutionVersionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, SolutionVersionInner> @@ -2138,7 +2138,7 @@ private Response publishSolutionVersionWithResponse(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, SolutionVersionInner> beginPublishSolutionVersion( @@ -2158,7 +2158,7 @@ public SyncPoller, SolutionVersionInner> beginP * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return solution Version Resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono publishSolutionVersionAsync(String resourceGroupName, String targetName, @@ -2176,7 +2176,7 @@ private Mono publishSolutionVersionAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public SolutionVersionInner publishSolutionVersion(String resourceGroupName, String targetName, @@ -2194,7 +2194,7 @@ public SolutionVersionInner publishSolutionVersion(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public SolutionVersionInner publishSolutionVersion(String resourceGroupName, String targetName, @@ -2211,7 +2211,7 @@ public SolutionVersionInner publishSolutionVersion(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return solution Version Resource along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> updateExternalValidationStatusWithResponseAsync(String resourceGroupName, @@ -2234,7 +2234,7 @@ private Mono>> updateExternalValidationStatusWithRespo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return solution Version Resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response updateExternalValidationStatusWithResponse(String resourceGroupName, String targetName, @@ -2255,7 +2255,7 @@ private Response updateExternalValidationStatusWithResponse(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return solution Version Resource along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response updateExternalValidationStatusWithResponse(String resourceGroupName, String targetName, @@ -2275,7 +2275,7 @@ private Response updateExternalValidationStatusWithResponse(String r * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, SolutionVersionInner> beginUpdateExternalValidationStatusAsync( @@ -2295,7 +2295,7 @@ private PollerFlux, SolutionVersionInner> begin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, SolutionVersionInner> beginUpdateExternalValidationStatus( @@ -2315,7 +2315,7 @@ public SyncPoller, SolutionVersionInner> beginU * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of solution Version Resource. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, SolutionVersionInner> beginUpdateExternalValidationStatus( @@ -2335,7 +2335,7 @@ public SyncPoller, SolutionVersionInner> beginU * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return solution Version Resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono updateExternalValidationStatusAsync(String resourceGroupName, String targetName, @@ -2353,7 +2353,7 @@ private Mono updateExternalValidationStatusAsync(String re * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public SolutionVersionInner updateExternalValidationStatus(String resourceGroupName, String targetName, @@ -2371,7 +2371,7 @@ public SolutionVersionInner updateExternalValidationStatus(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ @ServiceMethod(returns = ReturnType.SINGLE) public SolutionVersionInner updateExternalValidationStatus(String resourceGroupName, String targetName, diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/ConfigTemplate.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/ConfigTemplate.java index 8daa293b1c71..13f6d758d6f6 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/ConfigTemplate.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/ConfigTemplate.java @@ -282,7 +282,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return config Template Version Resource. */ ConfigTemplateVersion createVersion(ConfigTemplateVersionWithUpdateTypeInner body); @@ -294,7 +294,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return config Template Version Resource. */ ConfigTemplateVersion createVersion(ConfigTemplateVersionWithUpdateTypeInner body, Context context); diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/ConfigTemplates.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/ConfigTemplates.java index a0e582a4fe4e..5d8aa7156e5d 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/ConfigTemplates.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/ConfigTemplates.java @@ -48,7 +48,7 @@ Response getByResourceGroupWithResponse(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return config Template Version Resource. */ ConfigTemplateVersion createVersion(String resourceGroupName, String configTemplateName, ConfigTemplateVersionWithUpdateTypeInner body); @@ -63,7 +63,7 @@ ConfigTemplateVersion createVersion(String resourceGroupName, String configTempl * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return config Template Version Resource. */ ConfigTemplateVersion createVersion(String resourceGroupName, String configTemplateName, ConfigTemplateVersionWithUpdateTypeInner body, Context context); diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Schema.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Schema.java index 47ce17b6468d..f16e5f1c28ed 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Schema.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Schema.java @@ -282,7 +282,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return schema Version Resource. */ SchemaVersion createVersion(SchemaVersionWithUpdateTypeInner body); @@ -294,7 +294,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return schema Version Resource. */ SchemaVersion createVersion(SchemaVersionWithUpdateTypeInner body, Context context); diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Schemas.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Schemas.java index e47c7dccf854..22e86b389052 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Schemas.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Schemas.java @@ -70,7 +70,7 @@ public interface Schemas { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return schema Version Resource. */ SchemaVersion createVersion(String resourceGroupName, String schemaName, SchemaVersionWithUpdateTypeInner body); @@ -84,7 +84,7 @@ public interface Schemas { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return schema Version Resource. */ SchemaVersion createVersion(String resourceGroupName, String schemaName, SchemaVersionWithUpdateTypeInner body, Context context); diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/SolutionTemplate.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/SolutionTemplate.java index 1d1089e3721a..5cf8cbe5734e 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/SolutionTemplate.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/SolutionTemplate.java @@ -281,7 +281,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Template Version Resource. */ SolutionTemplateVersion createVersion(SolutionTemplateVersionWithUpdateTypeInner body); @@ -293,7 +293,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Template Version Resource. */ SolutionTemplateVersion createVersion(SolutionTemplateVersionWithUpdateTypeInner body, Context context); diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/SolutionTemplates.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/SolutionTemplates.java index d8c1089630e3..eb45d38080ca 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/SolutionTemplates.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/SolutionTemplates.java @@ -48,7 +48,7 @@ Response getByResourceGroupWithResponse(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Template Version Resource. */ SolutionTemplateVersion createVersion(String resourceGroupName, String solutionTemplateName, SolutionTemplateVersionWithUpdateTypeInner body); @@ -63,7 +63,7 @@ SolutionTemplateVersion createVersion(String resourceGroupName, String solutionT * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Template Version Resource. */ SolutionTemplateVersion createVersion(String resourceGroupName, String solutionTemplateName, SolutionTemplateVersionWithUpdateTypeInner body, Context context); diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Target.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Target.java index 6b90328178fe..996a51944c13 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Target.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Target.java @@ -364,7 +364,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return resolved Configuration. */ ResolvedConfiguration resolveConfiguration(SolutionTemplateParameter body); @@ -376,7 +376,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return resolved Configuration. */ ResolvedConfiguration resolveConfiguration(SolutionTemplateParameter body, Context context); @@ -387,7 +387,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ SolutionVersion reviewSolutionVersion(SolutionTemplateParameter body); @@ -399,7 +399,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ SolutionVersion reviewSolutionVersion(SolutionTemplateParameter body, Context context); @@ -410,7 +410,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ SolutionVersion publishSolutionVersion(SolutionVersionParameter body); @@ -422,7 +422,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ SolutionVersion publishSolutionVersion(SolutionVersionParameter body, Context context); @@ -433,7 +433,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ SolutionVersion updateExternalValidationStatus(UpdateExternalValidationStatusParameter body); @@ -445,7 +445,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ SolutionVersion updateExternalValidationStatus(UpdateExternalValidationStatusParameter body, Context context); } diff --git a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Targets.java b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Targets.java index 28ef3866bdbd..9e03316afa17 100644 --- a/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Targets.java +++ b/sdk/workloadorchestration/azure-resourcemanager-workloadorchestration/src/main/java/com/azure/resourcemanager/workloadorchestration/models/Targets.java @@ -189,7 +189,7 @@ void uninstallSolution(String resourceGroupName, String targetName, UninstallSol * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return resolved Configuration. */ ResolvedConfiguration resolveConfiguration(String resourceGroupName, String targetName, SolutionTemplateParameter body); @@ -204,7 +204,7 @@ ResolvedConfiguration resolveConfiguration(String resourceGroupName, String targ * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return resolved Configuration. */ ResolvedConfiguration resolveConfiguration(String resourceGroupName, String targetName, SolutionTemplateParameter body, Context context); @@ -218,7 +218,7 @@ ResolvedConfiguration resolveConfiguration(String resourceGroupName, String targ * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ SolutionVersion reviewSolutionVersion(String resourceGroupName, String targetName, SolutionTemplateParameter body); @@ -232,7 +232,7 @@ ResolvedConfiguration resolveConfiguration(String resourceGroupName, String targ * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ SolutionVersion reviewSolutionVersion(String resourceGroupName, String targetName, SolutionTemplateParameter body, Context context); @@ -246,7 +246,7 @@ SolutionVersion reviewSolutionVersion(String resourceGroupName, String targetNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ SolutionVersion publishSolutionVersion(String resourceGroupName, String targetName, SolutionVersionParameter body); @@ -260,7 +260,7 @@ SolutionVersion reviewSolutionVersion(String resourceGroupName, String targetNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ SolutionVersion publishSolutionVersion(String resourceGroupName, String targetName, SolutionVersionParameter body, Context context); @@ -274,7 +274,7 @@ SolutionVersion publishSolutionVersion(String resourceGroupName, String targetNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ SolutionVersion updateExternalValidationStatus(String resourceGroupName, String targetName, UpdateExternalValidationStatusParameter body); @@ -289,7 +289,7 @@ SolutionVersion updateExternalValidationStatus(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return solution Version Resource. */ SolutionVersion updateExternalValidationStatus(String resourceGroupName, String targetName, UpdateExternalValidationStatusParameter body, Context context); diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapApplicationServerInstancesClient.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapApplicationServerInstancesClient.java index f8edbb083151..cba59f700595 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapApplicationServerInstancesClient.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapApplicationServerInstancesClient.java @@ -261,7 +261,7 @@ PagedIterable list(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStart(String resourceGroupName, @@ -278,7 +278,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStart(String resourceGroupName, @@ -293,7 +293,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, @@ -310,7 +310,7 @@ OperationStatusResultInner start(String resourceGroupName, String sapVirtualInst * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, @@ -325,7 +325,7 @@ OperationStatusResultInner start(String resourceGroupName, String sapVirtualInst * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStop(String resourceGroupName, @@ -342,7 +342,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStop(String resourceGroupName, @@ -357,7 +357,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, @@ -374,7 +374,7 @@ OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInsta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapCentralServerInstancesClient.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapCentralServerInstancesClient.java index 193ac50e7f70..b4387fff573f 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapCentralServerInstancesClient.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapCentralServerInstancesClient.java @@ -277,7 +277,7 @@ PagedIterable list(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStart(String resourceGroupName, @@ -295,7 +295,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStart(String resourceGroupName, @@ -311,7 +311,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, @@ -329,7 +329,7 @@ OperationStatusResultInner start(String resourceGroupName, String sapVirtualInst * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, @@ -345,7 +345,7 @@ OperationStatusResultInner start(String resourceGroupName, String sapVirtualInst * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStop(String resourceGroupName, @@ -363,7 +363,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStop(String resourceGroupName, @@ -379,7 +379,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, @@ -397,7 +397,7 @@ OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInsta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, String centralInstanceName, diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapDatabaseInstancesClient.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapDatabaseInstancesClient.java index 47265fa3466e..413c471f7ead 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapDatabaseInstancesClient.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapDatabaseInstancesClient.java @@ -274,7 +274,7 @@ PagedIterable list(String resourceGroupName, String sa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStart(String resourceGroupName, @@ -292,7 +292,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStart(String resourceGroupName, @@ -308,7 +308,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, @@ -326,7 +326,7 @@ OperationStatusResultInner start(String resourceGroupName, String sapVirtualInst * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, @@ -342,7 +342,7 @@ OperationStatusResultInner start(String resourceGroupName, String sapVirtualInst * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStop(String resourceGroupName, @@ -360,7 +360,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStop(String resourceGroupName, @@ -376,7 +376,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, @@ -394,7 +394,7 @@ OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInsta * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapVirtualInstancesClient.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapVirtualInstancesClient.java index d74278c0e5d2..25e0bb6856b5 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapVirtualInstancesClient.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/fluent/SapVirtualInstancesClient.java @@ -297,7 +297,7 @@ SyncPoller, Void> beginDelete(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStart(String resourceGroupName, @@ -313,7 +313,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStart(String resourceGroupName, @@ -327,7 +327,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName); @@ -342,7 +342,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, StartRequest body, @@ -356,7 +356,7 @@ OperationStatusResultInner start(String resourceGroupName, String sapVirtualInst * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStop(String resourceGroupName, @@ -372,7 +372,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, OperationStatusResultInner> beginStop(String resourceGroupName, @@ -386,7 +386,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName); @@ -401,7 +401,7 @@ SyncPoller, OperationStatusResultInner> b * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, StopRequest body, diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapApplicationServerInstancesClientImpl.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapApplicationServerInstancesClientImpl.java index 4a15b15f291b..d5757156519a 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapApplicationServerInstancesClientImpl.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapApplicationServerInstancesClientImpl.java @@ -926,7 +926,8 @@ public PagedIterable list(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the current status of an async operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> startWithResponseAsync(String resourceGroupName, @@ -949,7 +950,7 @@ private Mono>> startWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response startWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -971,7 +972,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response startWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -992,7 +993,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> beginStartAsync( @@ -1013,7 +1014,7 @@ private PollerFlux, OperationStatusResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -1036,7 +1037,7 @@ private PollerFlux, OperationStatusResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginStart( @@ -1056,7 +1057,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -1079,7 +1080,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginStart( @@ -1101,7 +1102,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono startAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1119,7 +1120,7 @@ private Mono startAsync(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono startAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1138,7 +1139,7 @@ private Mono startAsync(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, @@ -1158,7 +1159,7 @@ public OperationStatusResultInner start(String resourceGroupName, String sapVirt * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, @@ -1177,7 +1178,8 @@ public OperationStatusResultInner start(String resourceGroupName, String sapVirt * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the current status of an async operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> stopWithResponseAsync(String resourceGroupName, @@ -1200,7 +1202,7 @@ private Mono>> stopWithResponseAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response stopWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1221,7 +1223,7 @@ private Response stopWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response stopWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1241,7 +1243,7 @@ private Response stopWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> beginStopAsync( @@ -1262,7 +1264,7 @@ private PollerFlux, OperationStatusResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -1285,7 +1287,7 @@ private PollerFlux, OperationStatusResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginStop( @@ -1305,7 +1307,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -1328,7 +1330,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginStop( @@ -1350,7 +1352,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono stopAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1368,7 +1370,7 @@ private Mono stopAsync(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono stopAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1387,7 +1389,7 @@ private Mono stopAsync(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, @@ -1407,7 +1409,7 @@ public OperationStatusResultInner stop(String resourceGroupName, String sapVirtu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapCentralServerInstancesClientImpl.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapCentralServerInstancesClientImpl.java index 8e55bd1de562..d277b410bb39 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapCentralServerInstancesClientImpl.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapCentralServerInstancesClientImpl.java @@ -957,7 +957,8 @@ public PagedIterable list(String resourceGroupNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the current status of an async operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> startWithResponseAsync(String resourceGroupName, @@ -981,7 +982,7 @@ private Mono>> startWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response startWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1004,7 +1005,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response startWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1026,7 +1027,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> beginStartAsync( @@ -1048,7 +1049,7 @@ private PollerFlux, OperationStatusResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -1072,7 +1073,7 @@ private PollerFlux, OperationStatusResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginStart( @@ -1093,7 +1094,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -1117,7 +1118,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginStart( @@ -1140,7 +1141,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono startAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1159,7 +1160,7 @@ private Mono startAsync(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono startAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1179,7 +1180,7 @@ private Mono startAsync(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, @@ -1200,7 +1201,7 @@ public OperationStatusResultInner start(String resourceGroupName, String sapVirt * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, @@ -1220,7 +1221,8 @@ public OperationStatusResultInner start(String resourceGroupName, String sapVirt * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the current status of an async operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> stopWithResponseAsync(String resourceGroupName, @@ -1244,7 +1246,7 @@ private Mono>> stopWithResponseAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response stopWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1266,7 +1268,7 @@ private Response stopWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response stopWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1287,7 +1289,7 @@ private Response stopWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> beginStopAsync( @@ -1309,7 +1311,7 @@ private PollerFlux, OperationStatusResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -1333,7 +1335,7 @@ private PollerFlux, OperationStatusResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginStop( @@ -1354,7 +1356,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -1378,7 +1380,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginStop( @@ -1401,7 +1403,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono stopAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1420,7 +1422,7 @@ private Mono stopAsync(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono stopAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1440,7 +1442,7 @@ private Mono stopAsync(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, @@ -1461,7 +1463,7 @@ public OperationStatusResultInner stop(String resourceGroupName, String sapVirtu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapDatabaseInstancesClientImpl.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapDatabaseInstancesClientImpl.java index fd4bb8116eb9..6c584b27415e 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapDatabaseInstancesClientImpl.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapDatabaseInstancesClientImpl.java @@ -957,7 +957,8 @@ public PagedIterable list(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the current status of an async operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> startWithResponseAsync(String resourceGroupName, @@ -981,7 +982,7 @@ private Mono>> startWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response startWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1004,7 +1005,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response startWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1026,7 +1027,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> beginStartAsync( @@ -1048,7 +1049,7 @@ private PollerFlux, OperationStatusResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -1072,7 +1073,7 @@ private PollerFlux, OperationStatusResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginStart( @@ -1093,7 +1094,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -1117,7 +1118,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginStart( @@ -1140,7 +1141,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono startAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1159,7 +1160,7 @@ private Mono startAsync(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono startAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1179,7 +1180,7 @@ private Mono startAsync(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, @@ -1200,7 +1201,7 @@ public OperationStatusResultInner start(String resourceGroupName, String sapVirt * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, @@ -1220,7 +1221,8 @@ public OperationStatusResultInner start(String resourceGroupName, String sapVirt * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the current status of an async operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> stopWithResponseAsync(String resourceGroupName, @@ -1244,7 +1246,7 @@ private Mono>> stopWithResponseAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response stopWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1266,7 +1268,7 @@ private Response stopWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response stopWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1287,7 +1289,7 @@ private Response stopWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> beginStopAsync( @@ -1309,7 +1311,7 @@ private PollerFlux, OperationStatusResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -1333,7 +1335,7 @@ private PollerFlux, OperationStatusResult * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginStop( @@ -1354,7 +1356,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -1378,7 +1380,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> beginStop( @@ -1401,7 +1403,7 @@ public SyncPoller, OperationStatusResultI * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono stopAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1420,7 +1422,7 @@ private Mono stopAsync(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono stopAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1440,7 +1442,7 @@ private Mono stopAsync(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, @@ -1461,7 +1463,7 @@ public OperationStatusResultInner stop(String resourceGroupName, String sapVirtu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapVirtualInstancesClientImpl.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapVirtualInstancesClientImpl.java index 9c93f3953ab0..0edbae95501b 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapVirtualInstancesClientImpl.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/implementation/SapVirtualInstancesClientImpl.java @@ -1149,7 +1149,8 @@ public PagedIterable list(Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the current status of an async operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> startWithResponseAsync(String resourceGroupName, @@ -1170,7 +1171,7 @@ private Mono>> startWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response startWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1190,7 +1191,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response startWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1209,7 +1210,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -1228,7 +1229,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -1249,7 +1250,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -1267,7 +1268,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -1288,7 +1289,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -1307,7 +1308,7 @@ private Response startWithResponse(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono startAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1324,7 +1325,7 @@ private Mono startAsync(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono startAsync(String resourceGroupName, String sapVirtualInstanceName) { @@ -1341,7 +1342,7 @@ private Mono startAsync(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName) { @@ -1359,7 +1360,7 @@ public OperationStatusResultInner start(String resourceGroupName, String sapVirt * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner start(String resourceGroupName, String sapVirtualInstanceName, StartRequest body, @@ -1376,7 +1377,8 @@ public OperationStatusResultInner start(String resourceGroupName, String sapVirt * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response} on successful completion of {@link Mono}. + * @return the current status of an async operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> stopWithResponseAsync(String resourceGroupName, @@ -1397,7 +1399,7 @@ private Mono>> stopWithResponseAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response stopWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1417,7 +1419,7 @@ private Response stopWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body along with {@link Response}. + * @return the current status of an async operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Response stopWithResponse(String resourceGroupName, String sapVirtualInstanceName, @@ -1436,7 +1438,7 @@ private Response stopWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -1455,7 +1457,7 @@ private Response stopWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link PollerFlux} for polling of long-running operation. + * @return the {@link PollerFlux} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, OperationStatusResultInner> @@ -1476,7 +1478,7 @@ private Response stopWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -1494,7 +1496,7 @@ private Response stopWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -1515,7 +1517,7 @@ private Response stopWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the {@link SyncPoller} for polling of long-running operation. + * @return the {@link SyncPoller} for polling of the current status of an async operation. */ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, OperationStatusResultInner> @@ -1534,7 +1536,7 @@ private Response stopWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono stopAsync(String resourceGroupName, String sapVirtualInstanceName, @@ -1551,7 +1553,7 @@ private Mono stopAsync(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response body on successful completion of {@link Mono}. + * @return the current status of an async operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono stopAsync(String resourceGroupName, String sapVirtualInstanceName) { @@ -1568,7 +1570,7 @@ private Mono stopAsync(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName) { @@ -1586,7 +1588,7 @@ public OperationStatusResultInner stop(String resourceGroupName, String sapVirtu * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ @ServiceMethod(returns = ReturnType.SINGLE) public OperationStatusResultInner stop(String resourceGroupName, String sapVirtualInstanceName, StopRequest body, diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapApplicationServerInstance.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapApplicationServerInstance.java index e773d0824604..8743184067b4 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapApplicationServerInstance.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapApplicationServerInstance.java @@ -257,7 +257,7 @@ interface WithTags { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(); @@ -269,7 +269,7 @@ interface WithTags { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(StartRequest body, Context context); @@ -278,7 +278,7 @@ interface WithTags { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(); @@ -290,7 +290,7 @@ interface WithTags { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(StopRequest body, Context context); } diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapApplicationServerInstances.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapApplicationServerInstances.java index 02a807b38f63..f5dcb550fe57 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapApplicationServerInstances.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapApplicationServerInstances.java @@ -107,7 +107,7 @@ PagedIterable list(String resourceGroupName, Strin * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceName, String applicationInstanceName); @@ -123,7 +123,7 @@ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceName, String applicationInstanceName, StartRequest body, Context context); @@ -137,7 +137,7 @@ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(String resourceGroupName, String sapVirtualInstanceName, String applicationInstanceName); @@ -152,7 +152,7 @@ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(String resourceGroupName, String sapVirtualInstanceName, String applicationInstanceName, StopRequest body, Context context); diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapCentralServerInstance.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapCentralServerInstance.java index 1e8b058eaa6b..533591d04080 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapCentralServerInstance.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapCentralServerInstance.java @@ -257,7 +257,7 @@ interface WithTags { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(); @@ -269,7 +269,7 @@ interface WithTags { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(StartRequest body, Context context); @@ -278,7 +278,7 @@ interface WithTags { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(); @@ -290,7 +290,7 @@ interface WithTags { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(StopRequest body, Context context); } diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapCentralServerInstances.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapCentralServerInstances.java index 6448107cf7b2..21c0825a15f5 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapCentralServerInstances.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapCentralServerInstances.java @@ -111,7 +111,7 @@ PagedIterable list(String resourceGroupName, String sa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceName, String centralInstanceName); @@ -127,7 +127,7 @@ PagedIterable list(String resourceGroupName, String sa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceName, String centralInstanceName, StartRequest body, Context context); @@ -142,7 +142,7 @@ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(String resourceGroupName, String sapVirtualInstanceName, String centralInstanceName); @@ -158,7 +158,7 @@ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(String resourceGroupName, String sapVirtualInstanceName, String centralInstanceName, StopRequest body, Context context); diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapDatabaseInstance.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapDatabaseInstance.java index b431c822e092..6f1d2ca31bfb 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapDatabaseInstance.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapDatabaseInstance.java @@ -257,7 +257,7 @@ interface WithTags { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(); @@ -269,7 +269,7 @@ interface WithTags { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(StartRequest body, Context context); @@ -278,7 +278,7 @@ interface WithTags { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(); @@ -290,7 +290,7 @@ interface WithTags { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(StopRequest body, Context context); } diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapDatabaseInstances.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapDatabaseInstances.java index 3ff4b2a1da2a..6d370b52c840 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapDatabaseInstances.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapDatabaseInstances.java @@ -108,7 +108,7 @@ Response getWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceName, String databaseInstanceName); @@ -124,7 +124,7 @@ Response getWithResponse(String resourceGroupName, String s * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceName, String databaseInstanceName, StartRequest body, Context context); @@ -139,7 +139,7 @@ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(String resourceGroupName, String sapVirtualInstanceName, String databaseInstanceName); @@ -155,7 +155,7 @@ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(String resourceGroupName, String sapVirtualInstanceName, String databaseInstanceName, StopRequest body, Context context); diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapVirtualInstance.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapVirtualInstance.java index b301dca55e0e..84d4247d63fc 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapVirtualInstance.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapVirtualInstance.java @@ -303,7 +303,7 @@ interface WithProperties { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(); @@ -315,7 +315,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(StartRequest body, Context context); @@ -324,7 +324,7 @@ interface WithProperties { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(); @@ -336,7 +336,7 @@ interface WithProperties { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(StopRequest body, Context context); } diff --git a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapVirtualInstances.java b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapVirtualInstances.java index 2af06c0c6496..0d54803bed94 100644 --- a/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapVirtualInstances.java +++ b/sdk/workloadssapvirtualinstance/azure-resourcemanager-workloadssapvirtualinstance/src/main/java/com/azure/resourcemanager/workloadssapvirtualinstance/models/SapVirtualInstances.java @@ -118,7 +118,7 @@ Response getByResourceGroupWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceName); @@ -132,7 +132,7 @@ Response getByResourceGroupWithResponse(String resourceGroup * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceName, StartRequest body, Context context); @@ -145,7 +145,7 @@ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(String resourceGroupName, String sapVirtualInstanceName); @@ -159,7 +159,7 @@ OperationStatusResult start(String resourceGroupName, String sapVirtualInstanceN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the current status of an async operation. */ OperationStatusResult stop(String resourceGroupName, String sapVirtualInstanceName, StopRequest body, Context context);